2016-05-06 15:19:56 +02:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
2020-07-09 19:20:57 +02:00
|
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
2016-05-06 15:19:56 +02: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.
|
|
|
|
*/
|
|
|
|
|
2019-12-12 22:37:32 +01:00
|
|
|
export interface ConfigOptions {
|
|
|
|
[key: string]: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const DEFAULTS: ConfigOptions = {
|
2020-07-09 19:20:57 +02:00
|
|
|
// Brand name of the app
|
2020-07-09 19:25:03 +02:00
|
|
|
brand: "Element",
|
2016-05-06 15:19:56 +02:00
|
|
|
// URL to a page we show in an iframe to configure integrations
|
|
|
|
integrations_ui_url: "https://scalar.vector.im/",
|
|
|
|
// Base URL to the REST interface of the integrations server
|
|
|
|
integrations_rest_url: "https://scalar.vector.im/api",
|
2017-01-25 15:43:47 +01:00
|
|
|
// Where to send bug reports. If not specified, bugs cannot be sent.
|
|
|
|
bug_report_endpoint_url: null,
|
2020-03-18 22:50:05 +01:00
|
|
|
// Jitsi conference options
|
|
|
|
jitsi: {
|
|
|
|
// Default conference domain
|
|
|
|
preferredDomain: "jitsi.riot.im",
|
|
|
|
},
|
2020-09-17 01:23:37 +02:00
|
|
|
desktopBuilds: {
|
|
|
|
available: true,
|
|
|
|
logo: require("../res/img/element-desktop-logo.svg"),
|
|
|
|
url: "https://element.io/get-started",
|
|
|
|
},
|
2016-05-06 15:19:56 +02:00
|
|
|
};
|
|
|
|
|
2019-12-12 22:37:32 +01:00
|
|
|
export default class SdkConfig {
|
|
|
|
private static instance: ConfigOptions;
|
|
|
|
|
|
|
|
private static setInstance(i: ConfigOptions) {
|
|
|
|
SdkConfig.instance = i;
|
|
|
|
|
|
|
|
// For debugging purposes
|
|
|
|
(<any>window).mxReactSdkConfig = i;
|
|
|
|
}
|
|
|
|
|
2016-05-06 15:19:56 +02:00
|
|
|
static get() {
|
2019-12-12 22:37:32 +01:00
|
|
|
return SdkConfig.instance || {};
|
2016-05-06 15:19:56 +02:00
|
|
|
}
|
|
|
|
|
2019-12-12 22:37:32 +01:00
|
|
|
static put(cfg: ConfigOptions) {
|
2017-07-01 15:13:32 +02:00
|
|
|
const defaultKeys = Object.keys(DEFAULTS);
|
|
|
|
for (let i = 0; i < defaultKeys.length; ++i) {
|
2016-05-06 15:19:56 +02:00
|
|
|
if (cfg[defaultKeys[i]] === undefined) {
|
|
|
|
cfg[defaultKeys[i]] = DEFAULTS[defaultKeys[i]];
|
|
|
|
}
|
|
|
|
}
|
2019-12-12 22:37:32 +01:00
|
|
|
SdkConfig.setInstance(cfg);
|
2016-05-06 15:19:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static unset() {
|
2019-12-12 22:37:32 +01:00
|
|
|
SdkConfig.setInstance({});
|
2016-05-06 15:19:56 +02:00
|
|
|
}
|
2019-04-15 22:46:00 +02:00
|
|
|
|
2019-12-12 22:37:32 +01:00
|
|
|
static add(cfg: ConfigOptions) {
|
2019-04-15 22:46:00 +02:00
|
|
|
const liveConfig = SdkConfig.get();
|
|
|
|
const newConfig = Object.assign({}, liveConfig, cfg);
|
|
|
|
SdkConfig.put(newConfig);
|
|
|
|
}
|
2016-05-06 15:19:56 +02:00
|
|
|
}
|