Files
ThreadNet-Web/src/components/views/elements/PersistentApp.tsx
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
2.3 KiB
TypeScript
Raw Normal View History

2018-07-12 18:43:49 +01:00
/*
Copyright 2018 New Vector Ltd
Copyright 2019-2022 The Matrix.org Foundation C.I.C.
2018-07-12 18:43:49 +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.
*/
import React, { ContextType, MutableRefObject } from "react";
import { Room } from "matrix-js-sdk/src/models/room";
2021-10-22 17:23:32 -05:00
2018-07-12 18:43:49 +01:00
import WidgetUtils from "../../../utils/WidgetUtils";
2021-09-16 18:46:18 +02:00
import AppTile from "./AppTile";
2022-09-16 11:12:27 -04:00
import WidgetStore from "../../../stores/WidgetStore";
import MatrixClientContext from "../../../contexts/MatrixClientContext";
2021-09-16 18:46:18 +02:00
interface IProps {
persistentWidgetId: string;
persistentRoomId: string;
pointerEvents?: string;
movePersistedElement: MutableRefObject<() => void>;
}
export default class PersistentApp extends React.Component<IProps> {
public static contextType = MatrixClientContext;
context: ContextType<typeof MatrixClientContext>;
private room: Room;
constructor(props: IProps, context: ContextType<typeof MatrixClientContext>) {
super(props, context);
2022-09-16 11:12:27 -04:00
this.room = context.getRoom(this.props.persistentRoomId)!;
}
2021-09-16 18:46:18 +02:00
2022-09-16 11:12:27 -04:00
public render(): JSX.Element | null {
const app = WidgetStore.instance.get(this.props.persistentWidgetId, this.props.persistentRoomId);
if (!app) return null;
2022-09-16 11:12:27 -04:00
return (
<AppTile
key={app.id}
app={app}
fullWidth={true}
room={this.room}
userId={this.context.credentials.userId}
creatorUserId={app.creatorUserId}
widgetPageTitle={WidgetUtils.getWidgetDataTitle(app)}
waitForIframeLoad={app.waitForIframeLoad}
miniMode={true}
showMenubar={false}
pointerEvents={this.props.pointerEvents}
movePersistedElement={this.props.movePersistedElement}
/>
);
2020-08-29 12:14:16 +01:00
}
}