/* Copyright 2019 Travis Ralston 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 from 'react'; import { _t } from "../../../languageHandler"; import LabelledToggleSwitch from "../elements/LabelledToggleSwitch"; import { Widget, WidgetKind } from "matrix-widget-api"; import { OIDCState, WidgetPermissionStore } from "../../../stores/widgets/WidgetPermissionStore"; import { replaceableComponent } from "../../../utils/replaceableComponent"; import DialogButtons from "../elements/DialogButtons"; import BaseDialog from "./BaseDialog"; interface IProps { onFinished: (confirmed: boolean) => void; widget: Widget; widgetKind: WidgetKind; // WidgetKind from widget-api inRoomId?: string; } interface IState { rememberSelection: boolean; } @replaceableComponent("views.dialogs.WidgetOpenIDPermissionsDialog") export default class WidgetOpenIDPermissionsDialog extends React.Component { constructor(props: IProps) { super(props); this.state = { rememberSelection: false, }; } private onAllow = (): void => { this.onPermissionSelection(true); }; private onDeny = (): void => { this.onPermissionSelection(false); }; private onPermissionSelection(allowed: boolean): void { if (this.state.rememberSelection) { console.log(`Remembering ${this.props.widget.id} as allowed=${allowed} for OpenID`); WidgetPermissionStore.instance.setOIDCState( this.props.widget, this.props.widgetKind, this.props.inRoomId, allowed ? OIDCState.Allowed : OIDCState.Denied, ); } this.props.onFinished(allowed); } private onRememberSelectionChange = (newVal: boolean): void => { this.setState({ rememberSelection: newVal }); }; render() { return (

{ _t("The widget will verify your user ID, but won't be able to perform actions for you:") }

{ /* cheap trim to just get the path */ } { this.props.widget.templateUrl.split("?")[0].split("#")[0] }

} />
); } }