mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 22:41:48 +03:00
102 lines
3.6 KiB
JavaScript
102 lines
3.6 KiB
JavaScript
/*
|
|
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 PropTypes from 'prop-types';
|
|
import { _t } from "../../../languageHandler";
|
|
import * as sdk from "../../../index";
|
|
import LabelledToggleSwitch from "../elements/LabelledToggleSwitch";
|
|
import { Widget } from "matrix-widget-api";
|
|
import { OIDCState, WidgetPermissionStore } from "../../../stores/widgets/WidgetPermissionStore";
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|
|
|
@replaceableComponent("views.dialogs.WidgetOpenIDPermissionsDialog")
|
|
export default class WidgetOpenIDPermissionsDialog extends React.Component {
|
|
static propTypes = {
|
|
onFinished: PropTypes.func.isRequired,
|
|
widget: PropTypes.objectOf(Widget).isRequired,
|
|
widgetKind: PropTypes.string.isRequired, // WidgetKind from widget-api
|
|
inRoomId: PropTypes.string,
|
|
};
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
this.state = {
|
|
rememberSelection: false,
|
|
};
|
|
}
|
|
|
|
_onAllow = () => {
|
|
this._onPermissionSelection(true);
|
|
};
|
|
|
|
_onDeny = () => {
|
|
this._onPermissionSelection(false);
|
|
};
|
|
|
|
_onPermissionSelection(allowed) {
|
|
if (this.state.rememberSelection) {
|
|
console.log(`Remembering ${this.props.widgetId} 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);
|
|
}
|
|
|
|
_onRememberSelectionChange = (newVal) => {
|
|
this.setState({ rememberSelection: newVal });
|
|
};
|
|
|
|
render() {
|
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
|
|
|
return (
|
|
<BaseDialog
|
|
className='mx_WidgetOpenIDPermissionsDialog'
|
|
hasCancel={true}
|
|
onFinished={this.props.onFinished}
|
|
title={_t("Allow this widget to verify your identity")}
|
|
>
|
|
<div className='mx_WidgetOpenIDPermissionsDialog_content'>
|
|
<p>
|
|
{ _t("The widget will verify your user ID, but won't be able to perform actions for you:") }
|
|
</p>
|
|
<p className="text-muted">
|
|
{ /* cheap trim to just get the path */ }
|
|
{ this.props.widget.templateUrl.split("?")[0].split("#")[0] }
|
|
</p>
|
|
</div>
|
|
<DialogButtons
|
|
primaryButton={_t("Continue")}
|
|
onPrimaryButtonClick={this._onAllow}
|
|
onCancel={this._onDeny}
|
|
additive={
|
|
<LabelledToggleSwitch
|
|
value={this.state.rememberSelection}
|
|
toggleInFront={true}
|
|
onChange={this._onRememberSelectionChange}
|
|
label={_t("Remember this")} />}
|
|
/>
|
|
</BaseDialog>
|
|
);
|
|
}
|
|
}
|