Conform to new typescript eslint rules

This commit is contained in:
Michael Telatynski 2021-07-19 22:47:32 +01:00
parent 9d56b56116
commit e136afe2eb
4 changed files with 52 additions and 51 deletions

View file

@ -49,6 +49,7 @@
"start:js": "webpack-dev-server --host=0.0.0.0 --output-filename=bundles/_dev_/[name].js --output-chunk-filename=bundles/_dev_/[name].js -w --progress --mode development --disable-host-check", "start:js": "webpack-dev-server --host=0.0.0.0 --output-filename=bundles/_dev_/[name].js --output-chunk-filename=bundles/_dev_/[name].js -w --progress --mode development --disable-host-check",
"lint": "yarn lint:types && yarn lint:js && yarn lint:style", "lint": "yarn lint:types && yarn lint:js && yarn lint:style",
"lint:js": "eslint src", "lint:js": "eslint src",
"lint:js-fix": "eslint --fix src",
"lint:types": "tsc --noEmit --jsx react", "lint:types": "tsc --noEmit --jsx react",
"lint:style": "stylelint 'res/css/**/*.scss'", "lint:style": "stylelint 'res/css/**/*.scss'",
"test": "jest" "test": "jest"

View file

@ -110,10 +110,10 @@ class SeshatIndexManager extends BaseEventIndexManager {
constructor() { constructor() {
super(); super();
electron.on('seshatReply', this._onIpcReply); electron.on('seshatReply', this.onIpcReply);
} }
async _ipcCall(name: string, ...args: any[]): Promise<any> { private async ipcCall(name: string, ...args: any[]): Promise<any> {
// TODO this should be moved into the preload.js file. // TODO this should be moved into the preload.js file.
const ipcCallId = ++this.nextIpcCallId; const ipcCallId = ++this.nextIpcCallId;
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
@ -122,7 +122,7 @@ class SeshatIndexManager extends BaseEventIndexManager {
}); });
} }
_onIpcReply = (ev: {}, payload: IPCPayload) => { private onIpcReply = (ev: {}, payload: IPCPayload) => {
if (payload.id === undefined) { if (payload.id === undefined) {
console.warn("Ignoring IPC reply with no ID"); console.warn("Ignoring IPC reply with no ID");
return; return;
@ -143,35 +143,35 @@ class SeshatIndexManager extends BaseEventIndexManager {
}; };
async supportsEventIndexing(): Promise<boolean> { async supportsEventIndexing(): Promise<boolean> {
return this._ipcCall('supportsEventIndexing'); return this.ipcCall('supportsEventIndexing');
} }
async initEventIndex(userId: string, deviceId: string): Promise<void> { async initEventIndex(userId: string, deviceId: string): Promise<void> {
return this._ipcCall('initEventIndex', userId, deviceId); return this.ipcCall('initEventIndex', userId, deviceId);
} }
async addEventToIndex(ev: IMatrixEvent, profile: IMatrixProfile): Promise<void> { async addEventToIndex(ev: IMatrixEvent, profile: IMatrixProfile): Promise<void> {
return this._ipcCall('addEventToIndex', ev, profile); return this.ipcCall('addEventToIndex', ev, profile);
} }
async deleteEvent(eventId: string): Promise<boolean> { async deleteEvent(eventId: string): Promise<boolean> {
return this._ipcCall('deleteEvent', eventId); return this.ipcCall('deleteEvent', eventId);
} }
async isEventIndexEmpty(): Promise<boolean> { async isEventIndexEmpty(): Promise<boolean> {
return this._ipcCall('isEventIndexEmpty'); return this.ipcCall('isEventIndexEmpty');
} }
async isRoomIndexed(roomId: string): Promise<boolean> { async isRoomIndexed(roomId: string): Promise<boolean> {
return this._ipcCall('isRoomIndexed', roomId); return this.ipcCall('isRoomIndexed', roomId);
} }
async commitLiveEvents(): Promise<void> { async commitLiveEvents(): Promise<void> {
return this._ipcCall('commitLiveEvents'); return this.ipcCall('commitLiveEvents');
} }
async searchEventIndex(searchConfig: ISearchArgs): Promise<IResultRoomEvents> { async searchEventIndex(searchConfig: ISearchArgs): Promise<IResultRoomEvents> {
return this._ipcCall('searchEventIndex', searchConfig); return this.ipcCall('searchEventIndex', searchConfig);
} }
async addHistoricEvents( async addHistoricEvents(
@ -179,43 +179,43 @@ class SeshatIndexManager extends BaseEventIndexManager {
checkpoint: ICrawlerCheckpoint | null, checkpoint: ICrawlerCheckpoint | null,
oldCheckpoint: ICrawlerCheckpoint | null, oldCheckpoint: ICrawlerCheckpoint | null,
): Promise<boolean> { ): Promise<boolean> {
return this._ipcCall('addHistoricEvents', events, checkpoint, oldCheckpoint); return this.ipcCall('addHistoricEvents', events, checkpoint, oldCheckpoint);
} }
async addCrawlerCheckpoint(checkpoint: ICrawlerCheckpoint): Promise<void> { async addCrawlerCheckpoint(checkpoint: ICrawlerCheckpoint): Promise<void> {
return this._ipcCall('addCrawlerCheckpoint', checkpoint); return this.ipcCall('addCrawlerCheckpoint', checkpoint);
} }
async removeCrawlerCheckpoint(checkpoint: ICrawlerCheckpoint): Promise<void> { async removeCrawlerCheckpoint(checkpoint: ICrawlerCheckpoint): Promise<void> {
return this._ipcCall('removeCrawlerCheckpoint', checkpoint); return this.ipcCall('removeCrawlerCheckpoint', checkpoint);
} }
async loadFileEvents(args): Promise<IEventAndProfile[]> { async loadFileEvents(args): Promise<IEventAndProfile[]> {
return this._ipcCall('loadFileEvents', args); return this.ipcCall('loadFileEvents', args);
} }
async loadCheckpoints(): Promise<ICrawlerCheckpoint[]> { async loadCheckpoints(): Promise<ICrawlerCheckpoint[]> {
return this._ipcCall('loadCheckpoints'); return this.ipcCall('loadCheckpoints');
} }
async closeEventIndex(): Promise<void> { async closeEventIndex(): Promise<void> {
return this._ipcCall('closeEventIndex'); return this.ipcCall('closeEventIndex');
} }
async getStats(): Promise<IIndexStats> { async getStats(): Promise<IIndexStats> {
return this._ipcCall('getStats'); return this.ipcCall('getStats');
} }
async getUserVersion(): Promise<number> { async getUserVersion(): Promise<number> {
return this._ipcCall('getUserVersion'); return this.ipcCall('getUserVersion');
} }
async setUserVersion(version: number): Promise<void> { async setUserVersion(version: number): Promise<void> {
return this._ipcCall('setUserVersion', version); return this.ipcCall('setUserVersion', version);
} }
async deleteEventIndex(): Promise<void> { async deleteEventIndex(): Promise<void> {
return this._ipcCall('deleteEventIndex'); return this.ipcCall('deleteEventIndex');
} }
} }
@ -249,7 +249,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
rageshake.flush(); rageshake.flush();
}); });
electron.on('ipcReply', this._onIpcReply); electron.on('ipcReply', this.onIpcReply);
electron.on('update-downloaded', this.onUpdateDownloaded); electron.on('update-downloaded', this.onUpdateDownloaded);
electron.on('preferences', () => { electron.on('preferences', () => {
@ -317,11 +317,11 @@ export default class ElectronPlatform extends VectorBasePlatform {
}); });
} }
this._ipcCall("startSSOFlow", this.ssoID); this.ipcCall("startSSOFlow", this.ssoID);
} }
async getConfig(): Promise<{}> { async getConfig(): Promise<{}> {
return this._ipcCall('getConfig'); return this.ipcCall('getConfig');
} }
onUpdateDownloaded = async (ev, { releaseNotes, releaseName }) => { onUpdateDownloaded = async (ev, { releaseNotes, releaseName }) => {
@ -388,7 +388,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
room_id: room.roomId, room_id: room.roomId,
}); });
window.focus(); window.focus();
this._ipcCall('focusWindow'); this.ipcCall('focusWindow');
}; };
return notification; return notification;
@ -399,7 +399,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
} }
async getAppVersion(): Promise<string> { async getAppVersion(): Promise<string> {
return this._ipcCall('getAppVersion'); return this.ipcCall('getAppVersion');
} }
supportsAutoLaunch(): boolean { supportsAutoLaunch(): boolean {
@ -407,11 +407,11 @@ export default class ElectronPlatform extends VectorBasePlatform {
} }
async getAutoLaunchEnabled(): Promise<boolean> { async getAutoLaunchEnabled(): Promise<boolean> {
return this._ipcCall('getAutoLaunchEnabled'); return this.ipcCall('getAutoLaunchEnabled');
} }
async setAutoLaunchEnabled(enabled: boolean): Promise<void> { async setAutoLaunchEnabled(enabled: boolean): Promise<void> {
return this._ipcCall('setAutoLaunchEnabled', enabled); return this.ipcCall('setAutoLaunchEnabled', enabled);
} }
supportsWarnBeforeExit(): boolean { supportsWarnBeforeExit(): boolean {
@ -419,11 +419,11 @@ export default class ElectronPlatform extends VectorBasePlatform {
} }
async shouldWarnBeforeExit(): Promise<boolean> { async shouldWarnBeforeExit(): Promise<boolean> {
return this._ipcCall('shouldWarnBeforeExit'); return this.ipcCall('shouldWarnBeforeExit');
} }
async setWarnBeforeExit(enabled: boolean): Promise<void> { async setWarnBeforeExit(enabled: boolean): Promise<void> {
return this._ipcCall('setWarnBeforeExit', enabled); return this.ipcCall('setWarnBeforeExit', enabled);
} }
supportsAutoHideMenuBar(): boolean { supportsAutoHideMenuBar(): boolean {
@ -432,11 +432,11 @@ export default class ElectronPlatform extends VectorBasePlatform {
} }
async getAutoHideMenuBarEnabled(): Promise<boolean> { async getAutoHideMenuBarEnabled(): Promise<boolean> {
return this._ipcCall('getAutoHideMenuBarEnabled'); return this.ipcCall('getAutoHideMenuBarEnabled');
} }
async setAutoHideMenuBarEnabled(enabled: boolean): Promise<void> { async setAutoHideMenuBarEnabled(enabled: boolean): Promise<void> {
return this._ipcCall('setAutoHideMenuBarEnabled', enabled); return this.ipcCall('setAutoHideMenuBarEnabled', enabled);
} }
supportsMinimizeToTray(): boolean { supportsMinimizeToTray(): boolean {
@ -445,15 +445,15 @@ export default class ElectronPlatform extends VectorBasePlatform {
} }
async getMinimizeToTrayEnabled(): Promise<boolean> { async getMinimizeToTrayEnabled(): Promise<boolean> {
return this._ipcCall('getMinimizeToTrayEnabled'); return this.ipcCall('getMinimizeToTrayEnabled');
} }
async setMinimizeToTrayEnabled(enabled: boolean): Promise<void> { async setMinimizeToTrayEnabled(enabled: boolean): Promise<void> {
return this._ipcCall('setMinimizeToTrayEnabled', enabled); return this.ipcCall('setMinimizeToTrayEnabled', enabled);
} }
async canSelfUpdate(): Promise<boolean> { async canSelfUpdate(): Promise<boolean> {
const feedUrl = await this._ipcCall('getUpdateFeedUrl'); const feedUrl = await this.ipcCall('getUpdateFeedUrl');
return Boolean(feedUrl); return Boolean(feedUrl);
} }
@ -492,7 +492,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
window.location.reload(false); window.location.reload(false);
} }
async _ipcCall(name: string, ...args: any[]): Promise<any> { private async ipcCall(name: string, ...args: any[]): Promise<any> {
const ipcCallId = ++this.nextIpcCallId; const ipcCallId = ++this.nextIpcCallId;
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
this.pendingIpcCalls[ipcCallId] = { resolve, reject }; this.pendingIpcCalls[ipcCallId] = { resolve, reject };
@ -501,7 +501,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
}); });
} }
_onIpcReply = (ev, payload) => { private onIpcReply = (ev, payload) => {
if (payload.id === undefined) { if (payload.id === undefined) {
console.warn("Ignoring IPC reply with no ID"); console.warn("Ignoring IPC reply with no ID");
return; return;
@ -526,22 +526,22 @@ export default class ElectronPlatform extends VectorBasePlatform {
} }
async setLanguage(preferredLangs: string[]) { async setLanguage(preferredLangs: string[]) {
return this._ipcCall('setLanguage', preferredLangs); return this.ipcCall('setLanguage', preferredLangs);
} }
setSpellCheckLanguages(preferredLangs: string[]) { setSpellCheckLanguages(preferredLangs: string[]) {
this._ipcCall('setSpellCheckLanguages', preferredLangs).catch(error => { this.ipcCall('setSpellCheckLanguages', preferredLangs).catch(error => {
console.log("Failed to send setSpellCheckLanguages IPC to Electron"); console.log("Failed to send setSpellCheckLanguages IPC to Electron");
console.error(error); console.error(error);
}); });
} }
async getSpellCheckLanguages(): Promise<string[]> { async getSpellCheckLanguages(): Promise<string[]> {
return this._ipcCall('getSpellCheckLanguages'); return this.ipcCall('getSpellCheckLanguages');
} }
async getAvailableSpellCheckLanguages(): Promise<string[]> { async getAvailableSpellCheckLanguages(): Promise<string[]> {
return this._ipcCall('getAvailableSpellCheckLanguages'); return this.ipcCall('getAvailableSpellCheckLanguages');
} }
getSSOCallbackUrl(fragmentAfterLogin: string): URL { getSSOCallbackUrl(fragmentAfterLogin: string): URL {
@ -561,7 +561,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
} }
private navigateForwardBack(back: boolean) { private navigateForwardBack(back: boolean) {
this._ipcCall(back ? "navigateBack" : "navigateForward"); this.ipcCall(back ? "navigateBack" : "navigateForward");
} }
private navigateToSpace(num: number) { private navigateToSpace(num: number) {
dis.dispatch<SwitchSpacePayload>({ dis.dispatch<SwitchSpacePayload>({
@ -608,7 +608,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
async getPickleKey(userId: string, deviceId: string): Promise<string | null> { async getPickleKey(userId: string, deviceId: string): Promise<string | null> {
try { try {
return await this._ipcCall('getPickleKey', userId, deviceId); return await this.ipcCall('getPickleKey', userId, deviceId);
} catch (e) { } catch (e) {
// if we can't connect to the password storage, assume there's no // if we can't connect to the password storage, assume there's no
// pickle key // pickle key
@ -618,7 +618,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
async createPickleKey(userId: string, deviceId: string): Promise<string | null> { async createPickleKey(userId: string, deviceId: string): Promise<string | null> {
try { try {
return await this._ipcCall('createPickleKey', userId, deviceId); return await this.ipcCall('createPickleKey', userId, deviceId);
} catch (e) { } catch (e) {
// if we can't connect to the password storage, assume there's no // if we can't connect to the password storage, assume there's no
// pickle key // pickle key
@ -628,7 +628,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
async destroyPickleKey(userId: string, deviceId: string): Promise<void> { async destroyPickleKey(userId: string, deviceId: string): Promise<void> {
try { try {
await this._ipcCall('destroyPickleKey', userId, deviceId); await this.ipcCall('destroyPickleKey', userId, deviceId);
} catch (e) {} } catch (e) {}
} }
} }

View file

@ -49,7 +49,7 @@ export default abstract class VectorBasePlatform extends BasePlatform {
return this._favicon = new Favicon(); return this._favicon = new Favicon();
} }
_updateFavicon() { private updateFavicon() {
let bgColor = "#d00"; let bgColor = "#d00";
let notif: string | number = this.notificationCount; let notif: string | number = this.notificationCount;
@ -64,13 +64,13 @@ export default abstract class VectorBasePlatform extends BasePlatform {
setNotificationCount(count: number) { setNotificationCount(count: number) {
if (this.notificationCount === count) return; if (this.notificationCount === count) return;
super.setNotificationCount(count); super.setNotificationCount(count);
this._updateFavicon(); this.updateFavicon();
} }
setErrorStatus(errorDidOccur: boolean) { setErrorStatus(errorDidOccur: boolean) {
if (this.errorDidOccur === errorDidOccur) return; if (this.errorDidOccur === errorDidOccur) return;
super.setErrorStatus(errorDidOccur); super.setErrorStatus(errorDidOccur);
this._updateFavicon(); this.updateFavicon();
} }
/** /**

View file

@ -100,7 +100,7 @@ export default class WebPlatform extends VectorBasePlatform {
return notification; return notification;
} }
_getVersion(): Promise<string> { private getVersion(): Promise<string> {
// We add a cachebuster to the request to make sure that we know about // We add a cachebuster to the request to make sure that we know about
// the most recent version on the origin server. That might not // the most recent version on the origin server. That might not
// actually be the version we'd get on a reload (particularly in the // actually be the version we'd get on a reload (particularly in the
@ -132,7 +132,7 @@ export default class WebPlatform extends VectorBasePlatform {
if (this.runningVersion !== null) { if (this.runningVersion !== null) {
return Promise.resolve(this.runningVersion); return Promise.resolve(this.runningVersion);
} }
return this._getVersion(); return this.getVersion();
} }
startUpdater() { startUpdater() {
@ -145,7 +145,7 @@ export default class WebPlatform extends VectorBasePlatform {
} }
pollForUpdate = () => { pollForUpdate = () => {
return this._getVersion().then((ver) => { return this.getVersion().then((ver) => {
if (this.runningVersion === null) { if (this.runningVersion === null) {
this.runningVersion = ver; this.runningVersion = ver;
} else if (this.runningVersion !== ver) { } else if (this.runningVersion !== ver) {