2015-06-23 16:41:25 +01:00
|
|
|
/*
|
2016-01-07 04:06:39 +00:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-12-19 17:57:50 -07:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2015-06-23 16:41:25 +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.
|
|
|
|
|
*/
|
|
|
|
|
|
2021-09-27 14:44:43 +02:00
|
|
|
import Skinner, { ISkinObject } from './Skinner';
|
2015-09-15 13:34:36 +01:00
|
|
|
|
2021-10-22 17:23:32 -05:00
|
|
|
// Import the js-sdk so the proper `request` object can be set. This does some
|
|
|
|
|
// magic with the browser injection to make all subsequent imports work fine.
|
|
|
|
|
import "matrix-js-sdk";
|
|
|
|
|
|
2021-09-27 14:44:43 +02:00
|
|
|
export function loadSkin(skinObject: ISkinObject): void {
|
2015-09-15 13:34:36 +01:00
|
|
|
Skinner.load(skinObject);
|
2019-12-19 17:57:50 -07:00
|
|
|
}
|
2015-09-15 13:34:36 +01:00
|
|
|
|
2021-09-27 14:44:43 +02:00
|
|
|
export function resetSkin(): void {
|
2015-09-15 13:34:36 +01:00
|
|
|
Skinner.reset();
|
2019-12-19 17:57:50 -07:00
|
|
|
}
|
2015-09-15 13:34:36 +01:00
|
|
|
|
2021-09-27 14:44:43 +02:00
|
|
|
export function getComponent(componentName: string): any {
|
2015-09-15 13:34:36 +01:00
|
|
|
return Skinner.getComponent(componentName);
|
2019-12-19 17:57:50 -07:00
|
|
|
}
|
2021-03-18 21:24:02 -06:00
|
|
|
|