2016-11-02 17:45:35 +00:00
|
|
|
|
// @flow
|
|
|
|
|
|
|
|
|
|
/*
|
2016-11-03 11:51:41 +00:00
|
|
|
|
Copyright 2016 Aviral Dasgupta
|
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
2016-11-02 17:45:35 +00:00
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-05-13 12:37:13 +01:00
|
|
|
|
import BasePlatform from 'matrix-react-sdk/lib/BasePlatform';
|
2017-05-31 17:53:32 +01:00
|
|
|
|
import { _t } from 'matrix-react-sdk/lib/languageHandler';
|
2017-06-11 19:19:17 +01:00
|
|
|
|
import dis from 'matrix-react-sdk/lib/dispatcher';
|
2017-05-31 14:51:08 +01:00
|
|
|
|
|
2017-05-13 12:37:13 +01:00
|
|
|
|
import Favico from 'favico.js';
|
2016-11-02 17:45:35 +00:00
|
|
|
|
|
2017-06-11 19:19:17 +01:00
|
|
|
|
export const updateCheckStatusEnum = {
|
|
|
|
|
CHECKING: 'CHECKING',
|
2017-06-03 15:17:58 +01:00
|
|
|
|
ERROR: 'ERROR',
|
|
|
|
|
NOTAVAILABLE: 'NOTAVAILABLE',
|
|
|
|
|
DOWNLOADING: 'DOWNLOADING',
|
|
|
|
|
READY: 'READY',
|
2017-06-03 15:12:46 +01:00
|
|
|
|
};
|
|
|
|
|
|
2016-11-02 17:45:35 +00:00
|
|
|
|
/**
|
|
|
|
|
* Vector-specific extensions to the BasePlatform template
|
|
|
|
|
*/
|
|
|
|
|
export default class VectorBasePlatform extends BasePlatform {
|
2017-05-13 12:37:13 +01:00
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
|
|
|
|
|
// The 'animations' are really low framerate and look terrible.
|
2018-04-13 01:25:00 +01:00
|
|
|
|
// Also it re-starts the animation every time you set the badge,
|
2017-05-13 12:37:13 +01:00
|
|
|
|
// and we set the state each time, even if the value hasn't changed,
|
|
|
|
|
// so we'd need to fix that if enabling the animation.
|
|
|
|
|
this.favicon = new Favico({animation: 'none'});
|
2017-06-11 19:19:17 +01:00
|
|
|
|
this.showUpdateCheck = false;
|
2017-05-13 12:37:13 +01:00
|
|
|
|
this._updateFavicon();
|
2017-06-03 15:12:46 +01:00
|
|
|
|
this.updatable = true;
|
2017-06-11 19:19:17 +01:00
|
|
|
|
|
|
|
|
|
this.startUpdateCheck = this.startUpdateCheck.bind(this);
|
|
|
|
|
this.stopUpdateCheck = this.stopUpdateCheck.bind(this);
|
2017-05-13 12:37:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-29 20:03:21 +01:00
|
|
|
|
getHumanReadableName(): string {
|
2017-05-31 14:51:08 +01:00
|
|
|
|
return 'Vector Base Platform'; // no translation required: only used for analytics
|
2017-05-29 19:51:28 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-13 12:37:13 +01:00
|
|
|
|
_updateFavicon() {
|
|
|
|
|
try {
|
|
|
|
|
// This needs to be in in a try block as it will throw
|
|
|
|
|
// if there are more than 100 badge count changes in
|
|
|
|
|
// its internal queue
|
2018-11-22 18:17:09 +00:00
|
|
|
|
let bgColor = "#d00",
|
|
|
|
|
notif = this.notificationCount;
|
2017-05-13 12:37:13 +01:00
|
|
|
|
|
|
|
|
|
if (this.errorDidOccur) {
|
|
|
|
|
notif = notif || "×";
|
|
|
|
|
bgColor = "#f00";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.favicon.badge(notif, {
|
|
|
|
|
bgColor: bgColor,
|
|
|
|
|
});
|
|
|
|
|
} catch (e) {
|
|
|
|
|
console.warn(`Failed to set badge count: ${e.message}`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setNotificationCount(count: number) {
|
|
|
|
|
if (this.notificationCount === count) return;
|
|
|
|
|
super.setNotificationCount(count);
|
|
|
|
|
this._updateFavicon();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setErrorStatus(errorDidOccur: boolean) {
|
|
|
|
|
if (this.errorDidOccur === errorDidOccur) return;
|
|
|
|
|
super.setErrorStatus(errorDidOccur);
|
|
|
|
|
this._updateFavicon();
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-03 12:50:47 +01:00
|
|
|
|
/**
|
|
|
|
|
* Begin update polling, if applicable
|
|
|
|
|
*/
|
|
|
|
|
startUpdater() {
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-03 15:12:46 +01:00
|
|
|
|
/**
|
|
|
|
|
* Whether we can call checkForUpdate on this platform build
|
|
|
|
|
*/
|
|
|
|
|
canSelfUpdate(): boolean {
|
|
|
|
|
return this.updatable;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-11 19:19:17 +01:00
|
|
|
|
startUpdateCheck() {
|
|
|
|
|
this.showUpdateCheck = true;
|
|
|
|
|
dis.dispatch({
|
|
|
|
|
action: 'check_updates',
|
|
|
|
|
value: { status: updateCheckStatusEnum.CHECKING },
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stopUpdateCheck() {
|
|
|
|
|
this.showUpdateCheck = false;
|
|
|
|
|
dis.dispatch({
|
|
|
|
|
action: 'check_updates',
|
|
|
|
|
value: false,
|
2018-11-22 18:17:09 +00:00
|
|
|
|
})
|
2017-06-11 19:19:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 01:25:00 +01:00
|
|
|
|
getUpdateCheckStatusEnum() {
|
|
|
|
|
return updateCheckStatusEnum;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-02 17:45:35 +00:00
|
|
|
|
/**
|
|
|
|
|
* Update the currently running app to the latest available
|
|
|
|
|
* version and replace this instance of the app with the
|
|
|
|
|
* new version.
|
|
|
|
|
*/
|
|
|
|
|
installUpdate() {
|
|
|
|
|
}
|
2016-11-24 16:46:15 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a sensible default display name for the
|
|
|
|
|
* device Vector is running on
|
|
|
|
|
*/
|
2017-05-02 21:29:19 +01:00
|
|
|
|
getDefaultDeviceDisplayName(): string {
|
2017-05-31 14:51:08 +01:00
|
|
|
|
return _t("Unknown device");
|
2016-11-24 16:46:15 +00:00
|
|
|
|
}
|
2016-11-02 17:45:35 +00:00
|
|
|
|
}
|