mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 16:41:33 +03:00
274 lines
9.3 KiB
JavaScript
274 lines
9.3 KiB
JavaScript
/*
|
|
Copyright 2017 Vector Creations Ltd
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
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 React, {useState} from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {MatrixClientPeg} from '../../../MatrixClientPeg';
|
|
import AppTile from '../elements/AppTile';
|
|
import Modal from '../../../Modal';
|
|
import dis from '../../../dispatcher/dispatcher';
|
|
import * as sdk from '../../../index';
|
|
import * as ScalarMessaging from '../../../ScalarMessaging';
|
|
import { _t } from '../../../languageHandler';
|
|
import WidgetUtils from '../../../utils/WidgetUtils';
|
|
import WidgetEchoStore from "../../../stores/WidgetEchoStore";
|
|
import AccessibleButton from '../elements/AccessibleButton';
|
|
import {IntegrationManagers} from "../../../integrations/IntegrationManagers";
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
|
import classNames from 'classnames';
|
|
import {Resizable} from "re-resizable";
|
|
import {useLocalStorageState} from "../../../hooks/useLocalStorageState";
|
|
import ResizeNotifier from "../../../utils/ResizeNotifier";
|
|
|
|
// The maximum number of widgets that can be added in a room
|
|
const MAX_WIDGETS = 2;
|
|
|
|
export default class AppsDrawer extends React.Component {
|
|
static propTypes = {
|
|
userId: PropTypes.string.isRequired,
|
|
room: PropTypes.object.isRequired,
|
|
resizeNotifier: PropTypes.instanceOf(ResizeNotifier).isRequired,
|
|
showApps: PropTypes.bool, // Should apps be rendered
|
|
hide: PropTypes.bool, // If rendered, should apps drawer be visible
|
|
};
|
|
|
|
static defaultProps = {
|
|
showApps: true,
|
|
hide: false,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
apps: this._getApps(),
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
ScalarMessaging.startListening();
|
|
MatrixClientPeg.get().on('RoomState.events', this.onRoomStateEvents);
|
|
WidgetEchoStore.on('update', this._updateApps);
|
|
this.dispatcherRef = dis.register(this.onAction);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
ScalarMessaging.stopListening();
|
|
if (MatrixClientPeg.get()) {
|
|
MatrixClientPeg.get().removeListener('RoomState.events', this.onRoomStateEvents);
|
|
}
|
|
WidgetEchoStore.removeListener('update', this._updateApps);
|
|
if (this.dispatcherRef) dis.unregister(this.dispatcherRef);
|
|
}
|
|
|
|
// TODO: [REACT-WARNING] Replace with appropriate lifecycle event
|
|
// eslint-disable-next-line camelcase
|
|
UNSAFE_componentWillReceiveProps(newProps) {
|
|
// Room has changed probably, update apps
|
|
this._updateApps();
|
|
}
|
|
|
|
onAction = (action) => {
|
|
const hideWidgetKey = this.props.room.roomId + '_hide_widget_drawer';
|
|
switch (action.action) {
|
|
case 'appsDrawer':
|
|
// Note: these booleans are awkward because localstorage is fundamentally
|
|
// string-based. We also do exact equality on the strings later on.
|
|
if (action.show) {
|
|
localStorage.setItem(hideWidgetKey, "false");
|
|
} else {
|
|
// Store hidden state of widget
|
|
// Don't show if previously hidden
|
|
localStorage.setItem(hideWidgetKey, "true");
|
|
}
|
|
|
|
break;
|
|
}
|
|
};
|
|
|
|
onRoomStateEvents = (ev, state) => {
|
|
if (ev.getRoomId() !== this.props.room.roomId || ev.getType() !== 'im.vector.modular.widgets') {
|
|
return;
|
|
}
|
|
this._updateApps();
|
|
};
|
|
|
|
_getApps() {
|
|
const widgets = WidgetEchoStore.getEchoedRoomWidgets(
|
|
this.props.room.roomId, WidgetUtils.getRoomWidgets(this.props.room),
|
|
);
|
|
return widgets.map((ev) => {
|
|
return WidgetUtils.makeAppConfig(
|
|
ev.getStateKey(), ev.getContent(), ev.getSender(), ev.getRoomId(), ev.getId(),
|
|
);
|
|
});
|
|
}
|
|
|
|
_updateApps = () => {
|
|
const apps = this._getApps();
|
|
this.setState({
|
|
apps: apps,
|
|
});
|
|
};
|
|
|
|
_canUserModify() {
|
|
try {
|
|
return WidgetUtils.canUserModifyWidgets(this.props.room.roomId);
|
|
} catch (err) {
|
|
console.error(err);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
_launchManageIntegrations() {
|
|
if (SettingsStore.getValue("feature_many_integration_managers")) {
|
|
IntegrationManagers.sharedInstance().openAll();
|
|
} else {
|
|
IntegrationManagers.sharedInstance().getPrimaryManager().open(this.props.room, 'add_integ');
|
|
}
|
|
}
|
|
|
|
onClickAddWidget = (e) => {
|
|
e.preventDefault();
|
|
// Display a warning dialog if the max number of widgets have already been added to the room
|
|
const apps = this._getApps();
|
|
if (apps && apps.length >= MAX_WIDGETS) {
|
|
const ErrorDialog = sdk.getComponent('dialogs.ErrorDialog');
|
|
const errorMsg = `The maximum number of ${MAX_WIDGETS} widgets have already been added to this room.`;
|
|
console.error(errorMsg);
|
|
Modal.createDialog(ErrorDialog, {
|
|
title: _t('Cannot add any more widgets'),
|
|
description: _t('The maximum permitted number of widgets have already been added to this room.'),
|
|
});
|
|
return;
|
|
}
|
|
this._launchManageIntegrations();
|
|
};
|
|
|
|
render() {
|
|
const apps = this.state.apps.map((app, index, arr) => {
|
|
const capWhitelist = WidgetUtils.getCapWhitelistForAppTypeInRoomId(app.type, this.props.room.roomId);
|
|
|
|
return (<AppTile
|
|
key={app.id}
|
|
app={app}
|
|
fullWidth={arr.length < 2}
|
|
room={this.props.room}
|
|
userId={this.props.userId}
|
|
show={this.props.showApps}
|
|
creatorUserId={app.creatorUserId}
|
|
widgetPageTitle={WidgetUtils.getWidgetDataTitle(app)}
|
|
waitForIframeLoad={app.waitForIframeLoad}
|
|
whitelistCapabilities={capWhitelist}
|
|
/>);
|
|
});
|
|
|
|
if (apps.length === 0) {
|
|
return <div />;
|
|
}
|
|
|
|
let addWidget;
|
|
if (this.props.showApps &&
|
|
this._canUserModify()
|
|
) {
|
|
addWidget = <AccessibleButton
|
|
onClick={this.onClickAddWidget}
|
|
className={this.state.apps.length<2 ?
|
|
'mx_AddWidget_button mx_AddWidget_button_full_width' :
|
|
'mx_AddWidget_button'
|
|
}
|
|
title={_t('Add a widget')}>
|
|
[+] { _t('Add a widget') }
|
|
</AccessibleButton>;
|
|
}
|
|
|
|
let spinner;
|
|
if (
|
|
apps.length === 0 && WidgetEchoStore.roomHasPendingWidgets(
|
|
this.props.room.roomId,
|
|
WidgetUtils.getRoomWidgets(this.props.room),
|
|
)
|
|
) {
|
|
const Loader = sdk.getComponent("elements.Spinner");
|
|
spinner = <Loader />;
|
|
}
|
|
|
|
const classes = classNames({
|
|
"mx_AppsDrawer": true,
|
|
"mx_AppsDrawer_hidden": this.props.hide,
|
|
"mx_AppsDrawer_fullWidth": apps.length < 2,
|
|
"mx_AppsDrawer_minimised": !this.props.showApps,
|
|
});
|
|
|
|
return (
|
|
<div className={classes}>
|
|
<PersistentVResizer
|
|
id={"apps-drawer_" + this.props.room.roomId}
|
|
minHeight={100}
|
|
maxHeight={this.props.maxHeight ? this.props.maxHeight - 50 : undefined}
|
|
handleClass="mx_AppsContainer_resizerHandle"
|
|
className="mx_AppsContainer"
|
|
resizeNotifier={this.props.resizeNotifier}
|
|
>
|
|
{ apps }
|
|
{ spinner }
|
|
</PersistentVResizer>
|
|
{ this._canUserModify() && addWidget }
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
const PersistentVResizer = ({
|
|
id,
|
|
minHeight,
|
|
maxHeight,
|
|
className,
|
|
handleWrapperClass,
|
|
handleClass,
|
|
resizeNotifier,
|
|
children,
|
|
}) => {
|
|
const [height, setHeight] = useLocalStorageState("pvr_" + id, 100);
|
|
const [resizing, setResizing] = useState(false);
|
|
|
|
return <Resizable
|
|
size={{height: Math.min(height, maxHeight)}}
|
|
minHeight={minHeight}
|
|
maxHeight={maxHeight}
|
|
onResizeStart={() => {
|
|
if (!resizing) setResizing(true);
|
|
resizeNotifier.startResizing();
|
|
}}
|
|
onResize={() => {
|
|
resizeNotifier.notifyTimelineHeightChanged();
|
|
}}
|
|
onResizeStop={(e, dir, ref, d) => {
|
|
setHeight(height + d.height);
|
|
if (resizing) setResizing(false);
|
|
resizeNotifier.stopResizing();
|
|
}}
|
|
handleWrapperClass={handleWrapperClass}
|
|
handleClasses={{bottom: handleClass}}
|
|
className={classNames(className, {
|
|
mx_AppsDrawer_resizing: resizing,
|
|
})}
|
|
enable={{bottom: true}}
|
|
>
|
|
{ children }
|
|
</Resizable>;
|
|
};
|