Build pass 1
							parent
							
								
									5b2dacd99e
								
							
						
					
					
						commit
						c9883f346c
					
				|  | @ -40,6 +40,7 @@ import { | |||
|     UploadStartedPayload, | ||||
| } from "./dispatcher/payloads/UploadPayload"; | ||||
| import {IUpload} from "./models/IUpload"; | ||||
| import { IImageInfo } from "matrix-js-sdk/src/@types/partials"; | ||||
| 
 | ||||
| const MAX_WIDTH = 800; | ||||
| const MAX_HEIGHT = 600; | ||||
|  | @ -208,12 +209,12 @@ function infoForImageFile(matrixClient, roomId, imageFile) { | |||
|     } | ||||
| 
 | ||||
|     let imageInfo; | ||||
|     return loadImageElement(imageFile).then(function(r) { | ||||
|     return loadImageElement(imageFile).then((r) => { | ||||
|         return createThumbnail(r.img, r.width, r.height, thumbnailType); | ||||
|     }).then(function(result) { | ||||
|     }).then((result) => { | ||||
|         imageInfo = result.info; | ||||
|         return uploadFile(matrixClient, roomId, result.thumbnail); | ||||
|     }).then(function(result) { | ||||
|     }).then((result) => { | ||||
|         imageInfo.thumbnail_url = result.url; | ||||
|         imageInfo.thumbnail_file = result.file; | ||||
|         return imageInfo; | ||||
|  | @ -264,12 +265,12 @@ function infoForVideoFile(matrixClient, roomId, videoFile) { | |||
|     const thumbnailType = "image/jpeg"; | ||||
| 
 | ||||
|     let videoInfo; | ||||
|     return loadVideoElement(videoFile).then(function(video) { | ||||
|     return loadVideoElement(videoFile).then((video) => { | ||||
|         return createThumbnail(video, video.videoWidth, video.videoHeight, thumbnailType); | ||||
|     }).then(function(result) { | ||||
|     }).then((result) => { | ||||
|         videoInfo = result.info; | ||||
|         return uploadFile(matrixClient, roomId, result.thumbnail); | ||||
|     }).then(function(result) { | ||||
|     }).then((result) => { | ||||
|         videoInfo.thumbnail_url = result.url; | ||||
|         videoInfo.thumbnail_file = result.file; | ||||
|         return videoInfo; | ||||
|  | @ -308,7 +309,12 @@ function readFileAsArrayBuffer(file: File | Blob): Promise<ArrayBuffer> { | |||
|  *  If the file is unencrypted then the object will have a "url" key. | ||||
|  *  If the file is encrypted then the object will have a "file" key. | ||||
|  */ | ||||
| function uploadFile(matrixClient: MatrixClient, roomId: string, file: File | Blob, progressHandler?: any) { | ||||
| function uploadFile( | ||||
|     matrixClient: MatrixClient, | ||||
|     roomId: string, | ||||
|     file: File | Blob, | ||||
|     progressHandler?: any, // TODO: Types
 | ||||
| ): Promise<{url?: string, file?: any}> { // TODO: Types
 | ||||
|     let canceled = false; | ||||
|     if (matrixClient.isRoomEncrypted(roomId)) { | ||||
|         // If the room is encrypted then encrypt the file before uploading it.
 | ||||
|  | @ -355,7 +361,7 @@ function uploadFile(matrixClient: MatrixClient, roomId: string, file: File | Blo | |||
|             // If the attachment isn't encrypted then include the URL directly.
 | ||||
|             return {"url": url}; | ||||
|         }); | ||||
|         promise1.abort = () => { | ||||
|         (promise1 as any).abort = () => { | ||||
|             canceled = true; | ||||
|             MatrixClientPeg.get().cancelUpload(basePromise); | ||||
|         }; | ||||
|  | @ -367,7 +373,7 @@ export default class ContentMessages { | |||
|     private inprogress: IUpload[] = []; | ||||
|     private mediaConfig: IMediaConfig = null; | ||||
| 
 | ||||
|     sendStickerContentToRoom(url: string, roomId: string, info: string, text: string, matrixClient: MatrixClient) { | ||||
|     sendStickerContentToRoom(url: string, roomId: string, info: IImageInfo, text: string, matrixClient: MatrixClient) { | ||||
|         const startTime = CountlyAnalytics.getTimestamp(); | ||||
|         const prom = MatrixClientPeg.get().sendStickerMessage(roomId, url, info, text).catch((e) => { | ||||
|             console.warn(`Failed to send content with URL ${url} to room ${roomId}`, e); | ||||
|  | @ -441,7 +447,7 @@ export default class ContentMessages { | |||
|         let uploadAll = false; | ||||
|         // Promise to complete before sending next file into room, used for synchronisation of file-sending
 | ||||
|         // to match the order the files were specified in
 | ||||
|         let promBefore = Promise.resolve(); | ||||
|         let promBefore: Promise<any> = Promise.resolve(); | ||||
|         for (let i = 0; i < okFiles.length; ++i) { | ||||
|             const file = okFiles[i]; | ||||
|             if (!uploadAll) { | ||||
|  |  | |||
|  | @ -98,7 +98,7 @@ class Presence { | |||
|         } | ||||
| 
 | ||||
|         try { | ||||
|             await MatrixClientPeg.get().setPresence(this.state); | ||||
|             await MatrixClientPeg.get().setPresence({presence: this.state}); | ||||
|             console.info("Presence:", newState); | ||||
|         } catch (err) { | ||||
|             console.error("Failed to set presence:", err); | ||||
|  |  | |||
|  | @ -103,7 +103,7 @@ export async function startTermsFlow( | |||
| 
 | ||||
|     // fetch the set of agreed policy URLs from account data
 | ||||
|     const currentAcceptedTerms = await MatrixClientPeg.get().getAccountData('m.accepted_terms'); | ||||
|     let agreedUrlSet; | ||||
|     let agreedUrlSet: Set<string>; | ||||
|     if (!currentAcceptedTerms || !currentAcceptedTerms.getContent() || !currentAcceptedTerms.getContent().accepted) { | ||||
|         agreedUrlSet = new Set(); | ||||
|     } else { | ||||
|  |  | |||
|  | @ -358,7 +358,7 @@ class LoggedInView extends React.Component<IProps, IState> { | |||
| 
 | ||||
|             const pinnedEventIds = pinStateEvent.getContent().pinned.slice(0, MAX_PINNED_NOTICES_PER_ROOM); | ||||
|             for (const eventId of pinnedEventIds) { | ||||
|                 const timeline = await this._matrixClient.getEventTimeline(room.getUnfilteredTimelineSet(), eventId, 0); | ||||
|                 const timeline = await this._matrixClient.getEventTimeline(room.getUnfilteredTimelineSet(), eventId); | ||||
|                 const event = timeline.getEvents().find(ev => ev.getId() === eventId); | ||||
|                 if (event) events.push(event); | ||||
|             } | ||||
|  |  | |||
|  | @ -378,7 +378,7 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> { | |||
|             this.onLoggedIn(); | ||||
|         } | ||||
| 
 | ||||
|         const promisesList = [this.firstSyncPromise.promise]; | ||||
|         const promisesList: Promise<any>[] = [this.firstSyncPromise.promise]; | ||||
|         if (cryptoEnabled) { | ||||
|             // wait for the client to finish downloading cross-signing keys for us so we
 | ||||
|             // know whether or not we have keys set up on this account
 | ||||
|  |  | |||
|  | @ -61,7 +61,7 @@ interface IProps { | |||
|         is_url?: string; | ||||
|         session_id: string; | ||||
|         /* eslint-enable camelcase */ | ||||
|     }): void; | ||||
|     }): string; | ||||
|     // registration shouldn't know or care how login is done.
 | ||||
|     onLoginClick(): void; | ||||
|     onServerConfigChange(config: ValidatedServerConfig): void; | ||||
|  |  | |||
|  | @ -227,7 +227,7 @@ export default class HelpUserSettingsTab extends React.Component<IProps, IState> | |||
| 
 | ||||
|         const appVersion = this.state.appVersion || 'unknown'; | ||||
| 
 | ||||
|         let olmVersion = MatrixClientPeg.get().olmVersion; | ||||
|         let olmVersion: string = MatrixClientPeg.get().olmVersion?.toString(); | ||||
|         olmVersion = olmVersion ? `${olmVersion[0]}.${olmVersion[1]}.${olmVersion[2]}` : '<not-enabled>'; | ||||
| 
 | ||||
|         let updateButton = null; | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Travis Ralston
						Travis Ralston