mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-03 20:36:57 +03:00
Save user widgets in accountData
This commit is contained in:
parent
adebf71a1d
commit
60e7646f92
1 changed files with 13 additions and 4 deletions
|
@ -333,18 +333,27 @@ function setWidget(event, roomId) {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (userWidget) {
|
if (userWidget) {
|
||||||
|
console.warn('Adding user widget');
|
||||||
const client = MatrixClientPeg.get();
|
const client = MatrixClientPeg.get();
|
||||||
let userWidgets = client.getAccountData('m.widgets');
|
let userWidgets = client.getAccountData('m.widgets') || {};
|
||||||
|
|
||||||
// Delete existing widget with ID
|
// Delete existing widget with ID
|
||||||
userWidgets = userWidgets.filter((widget) => widget.data.id === widgetId ? false : true);
|
delete userWidgets[widgetId];
|
||||||
|
|
||||||
// Add new widget / update
|
// Add new widget / update
|
||||||
if (widgetUrl !== null) {
|
if (widgetUrl !== null) {
|
||||||
userWidgets.push(content);
|
userWidgets[widgetId] = {
|
||||||
|
content: content,
|
||||||
|
sender: client.getUserId(),
|
||||||
|
stateKey: widgetId,
|
||||||
|
type: 'm.widget',
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
client.setAccountData('m.widgets', userWidgets);
|
client.setAccountData('m.widgets', {widgets: userWidgets});
|
||||||
|
sendResponse(event, {
|
||||||
|
success: true,
|
||||||
|
});
|
||||||
} else { // Room widget
|
} else { // Room widget
|
||||||
if (widgetUrl === null) { // widget is being deleted
|
if (widgetUrl === null) { // widget is being deleted
|
||||||
content = {};
|
content = {};
|
||||||
|
|
Loading…
Reference in a new issue