-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expand support for MSC2873 (changing theme/language) (#117)
MSC2873 specifies some actions for updating the widget's theme/language after it's loaded, and I'd like to make use of them.
- Loading branch information
Showing
6 changed files
with
99 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Copyright 2024 The Matrix.org Foundation C.I.C. | ||
* | ||
* 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. | ||
*/ | ||
|
||
import { IWidgetApiRequest, IWidgetApiRequestData } from "./IWidgetApiRequest"; | ||
import { WidgetApiToWidgetAction } from "./WidgetApiAction"; | ||
import { IWidgetApiAcknowledgeResponseData } from "./IWidgetApiResponse"; | ||
|
||
export interface ILanguageChangeActionRequestData extends IWidgetApiRequestData { | ||
/** | ||
* The BCP 47 identifier for the client's current language. | ||
*/ | ||
lang: string; | ||
} | ||
|
||
export interface ILanguageChangeActionRequest extends IWidgetApiRequest { | ||
action: WidgetApiToWidgetAction.LanguageChange; | ||
data: ILanguageChangeActionRequestData; | ||
} | ||
|
||
export interface ILanguageChangeActionResponse extends ILanguageChangeActionRequest { | ||
response: IWidgetApiAcknowledgeResponseData; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright 2024 The Matrix.org Foundation C.I.C. | ||
* | ||
* 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. | ||
*/ | ||
|
||
import { IWidgetApiRequest, IWidgetApiRequestData } from "./IWidgetApiRequest"; | ||
import { WidgetApiToWidgetAction } from "./WidgetApiAction"; | ||
import { IWidgetApiAcknowledgeResponseData } from "./IWidgetApiResponse"; | ||
|
||
export interface IThemeChangeActionRequestData extends IWidgetApiRequestData { | ||
// The format of a theme is deliberately unstandardized | ||
} | ||
|
||
export interface IThemeChangeActionRequest extends IWidgetApiRequest { | ||
action: WidgetApiToWidgetAction.ThemeChange; | ||
data: IThemeChangeActionRequestData; | ||
} | ||
|
||
export interface IThemeChangeActionResponse extends IThemeChangeActionRequest { | ||
response: IWidgetApiAcknowledgeResponseData; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters