2016-11-02 16:10:21 +01:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
/*
|
2016-11-03 12:47:57 +01:00
|
|
|
Copyright 2016 Aviral Dasgupta
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
2018-12-18 18:40:30 +01:00
|
|
|
Copyright 2018 New Vector Ltd
|
2016-11-02 16:10:21 +01: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-06-20 21:15:25 +02:00
|
|
|
import dis from './dispatcher';
|
2017-06-20 19:47:35 +02:00
|
|
|
|
2016-11-02 16:10:21 +01:00
|
|
|
/**
|
|
|
|
* Base class for classes that provide platform-specific functionality
|
|
|
|
* eg. Setting an application badge or displaying notifications
|
|
|
|
*
|
|
|
|
* Instances of this class are provided by the application.
|
|
|
|
*/
|
|
|
|
export default class BasePlatform {
|
|
|
|
constructor() {
|
|
|
|
this.notificationCount = 0;
|
|
|
|
this.errorDidOccur = false;
|
2017-06-20 19:47:35 +02:00
|
|
|
|
|
|
|
dis.register(this._onAction.bind(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
_onAction(payload: Object) {
|
|
|
|
switch (payload.action) {
|
|
|
|
case 'on_logged_out':
|
|
|
|
this.setNotificationCount(0);
|
|
|
|
break;
|
|
|
|
}
|
2016-11-02 16:10:21 +01:00
|
|
|
}
|
|
|
|
|
2017-05-29 20:50:04 +02:00
|
|
|
// Used primarily for Analytics
|
2017-05-29 21:02:46 +02:00
|
|
|
getHumanReadableName(): string {
|
2017-05-29 20:50:04 +02:00
|
|
|
return 'Base Platform';
|
|
|
|
}
|
|
|
|
|
2016-11-02 16:10:21 +01:00
|
|
|
setNotificationCount(count: number) {
|
|
|
|
this.notificationCount = count;
|
|
|
|
}
|
|
|
|
|
|
|
|
setErrorStatus(errorDidOccur: boolean) {
|
|
|
|
this.errorDidOccur = errorDidOccur;
|
|
|
|
}
|
|
|
|
|
2016-11-02 18:35:31 +01:00
|
|
|
/**
|
|
|
|
* Returns true if the platform supports displaying
|
|
|
|
* notifications, otherwise false.
|
2017-07-01 15:15:26 +02:00
|
|
|
* @returns {boolean} whether the platform supports displaying notifications
|
2016-11-02 18:35:31 +01:00
|
|
|
*/
|
2017-01-20 15:22:27 +01:00
|
|
|
supportsNotifications(): boolean {
|
2016-11-02 18:35:31 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the application currently has permission
|
|
|
|
* to display notifications. Otherwise false.
|
2017-07-01 15:15:26 +02:00
|
|
|
* @returns {boolean} whether the application has permission to display notifications
|
2016-11-02 18:35:31 +01:00
|
|
|
*/
|
2017-01-20 15:22:27 +01:00
|
|
|
maySendNotifications(): boolean {
|
2016-11-02 18:35:31 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Requests permission to send notifications. Returns
|
|
|
|
* a promise that is resolved when the user has responded
|
|
|
|
* to the request. The promise has a single string argument
|
|
|
|
* that is 'granted' if the user allowed the request or
|
|
|
|
* 'denied' otherwise.
|
|
|
|
*/
|
2017-01-20 15:22:27 +01:00
|
|
|
requestNotificationPermission(): Promise<string> {
|
2016-11-02 18:35:31 +01:00
|
|
|
}
|
|
|
|
|
2016-12-06 14:27:36 +01:00
|
|
|
displayNotification(title: string, msg: string, avatarUrl: string, room: Object) {
|
2016-11-02 16:10:21 +01:00
|
|
|
}
|
2016-11-08 11:45:19 +01:00
|
|
|
|
2017-06-01 00:49:55 +02:00
|
|
|
loudNotification(ev: Event, room: Object) {
|
|
|
|
}
|
|
|
|
|
2016-11-08 11:45:19 +01:00
|
|
|
/**
|
|
|
|
* Returns a promise that resolves to a string representing
|
|
|
|
* the current version of the application.
|
|
|
|
*/
|
2017-05-24 16:40:50 +02:00
|
|
|
getAppVersion(): Promise<string> {
|
2016-11-08 12:43:24 +01:00
|
|
|
throw new Error("getAppVersion not implemented!");
|
2016-11-08 11:45:19 +01:00
|
|
|
}
|
2017-01-10 19:37:57 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If it's not expected that capturing the screen will work
|
|
|
|
* with getUserMedia, return a string explaining why not.
|
|
|
|
* Otherwise, return null.
|
|
|
|
*/
|
2017-05-24 16:40:50 +02:00
|
|
|
screenCaptureErrorString(): string {
|
2017-01-10 19:37:57 +01:00
|
|
|
return "Not implemented";
|
|
|
|
}
|
2017-04-10 18:39:27 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Restarts the application, without neccessarily reloading
|
|
|
|
* any application code
|
|
|
|
*/
|
|
|
|
reload() {
|
|
|
|
throw new Error("reload not implemented!");
|
|
|
|
}
|
2019-02-24 02:06:53 +01:00
|
|
|
|
|
|
|
supportsAutoLaunch() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: Surely this should be a setting like any other?
|
|
|
|
async getAutoLaunchEnabled() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
async setAutoLaunchEnabled(enabled) {
|
|
|
|
throw new Error("Unimplemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
supportsMinimizeToTray() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
async getMinimizeToTrayEnabled() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
async setMinimizeToTrayEnabled() {
|
|
|
|
throw new Error("Unimplemented");
|
|
|
|
}
|
2016-11-02 16:10:21 +01:00
|
|
|
}
|