mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 16:12:12 +03:00
120 lines
3.6 KiB
TypeScript
120 lines
3.6 KiB
TypeScript
/*
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
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 * as React from "react";
|
|
import AccessibleButton from "../elements/AccessibleButton";
|
|
import Field from "../elements/Field";
|
|
import DialPad from './DialPad';
|
|
import dis from '../../../dispatcher/dispatcher';
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|
import { DialNumberPayload } from "../../../dispatcher/payloads/DialNumberPayload";
|
|
import { Action } from "../../../dispatcher/actions";
|
|
import DialPadBackspaceButton from "../elements/DialPadBackspaceButton";
|
|
|
|
interface IProps {
|
|
onFinished: (boolean) => void;
|
|
}
|
|
|
|
interface IState {
|
|
value: string;
|
|
}
|
|
|
|
@replaceableComponent("views.voip.DialPadModal")
|
|
export default class DialpadModal extends React.PureComponent<IProps, IState> {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
value: '',
|
|
};
|
|
}
|
|
|
|
onCancelClick = () => {
|
|
this.props.onFinished(false);
|
|
};
|
|
|
|
onChange = (ev) => {
|
|
this.setState({ value: ev.target.value });
|
|
};
|
|
|
|
onFormSubmit = (ev) => {
|
|
ev.preventDefault();
|
|
this.onDialPress();
|
|
};
|
|
|
|
onDigitPress = (digit) => {
|
|
this.setState({ value: this.state.value + digit });
|
|
};
|
|
|
|
onDeletePress = () => {
|
|
if (this.state.value.length === 0) return;
|
|
this.setState({ value: this.state.value.slice(0, -1) });
|
|
};
|
|
|
|
onDialPress = async () => {
|
|
const payload: DialNumberPayload = {
|
|
action: Action.DialNumber,
|
|
number: this.state.value,
|
|
};
|
|
dis.dispatch(payload);
|
|
|
|
this.props.onFinished(true);
|
|
};
|
|
|
|
render() {
|
|
const backspaceButton = (
|
|
<DialPadBackspaceButton onBackspacePress={this.onDeletePress} />
|
|
);
|
|
|
|
// Only show the backspace button if the field has content
|
|
let dialPadField;
|
|
if (this.state.value.length !== 0) {
|
|
dialPadField = <Field
|
|
className="mx_DialPadModal_field"
|
|
id="dialpad_number"
|
|
value={this.state.value}
|
|
autoFocus={true}
|
|
onChange={this.onChange}
|
|
postfixComponent={backspaceButton}
|
|
/>;
|
|
} else {
|
|
dialPadField = <Field
|
|
className="mx_DialPadModal_field"
|
|
id="dialpad_number"
|
|
value={this.state.value}
|
|
autoFocus={true}
|
|
onChange={this.onChange}
|
|
/>;
|
|
}
|
|
|
|
return <div className="mx_DialPadModal">
|
|
<div>
|
|
<AccessibleButton className="mx_DialPadModal_cancel" onClick={this.onCancelClick} />
|
|
</div>
|
|
<div className="mx_DialPadModal_header">
|
|
<form onSubmit={this.onFormSubmit}>
|
|
{ dialPadField }
|
|
</form>
|
|
</div>
|
|
<div className="mx_DialPadModal_dialPad">
|
|
<DialPad hasDial={true}
|
|
onDigitPress={this.onDigitPress}
|
|
onDeletePress={this.onDeletePress}
|
|
onDialPress={this.onDialPress}
|
|
/>
|
|
</div>
|
|
</div>;
|
|
}
|
|
}
|