aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/DictationButton.tsx
blob: 0ce586df4e1d4037eaddac2aa7374dc8c106a12d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { IconButton, Type } from '@dash/components';
import { action, makeObservable, observable } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { BiMicrophone } from 'react-icons/bi';
import { DictationManager } from '../util/DictationManager';
import { SnappingManager } from '../util/SnappingManager';

export interface DictationButtonProps {
    setInput: (val: string) => void;
    inputRef?: HTMLInputElement | null | undefined;
}
@observer
export class DictationButton extends React.Component<DictationButtonProps> {
    @observable private _isRecording = false;
    constructor(props: DictationButtonProps) {
        super(props);
        makeObservable(this);
    }

    stopDictation = action(() => {
        this._isRecording = false;
        DictationManager.Controls.stop();
    });

    render() {
        return (
            <IconButton
                type={Type.TERT}
                color={this._isRecording ? '#2bcaff' : SnappingManager.userVariantColor}
                tooltip="Record"
                icon={<BiMicrophone size="16px" />}
                onClick={action(() => {
                    if (!this._isRecording) {
                        this._isRecording = true;
                        DictationManager.Controls.listen({
                            interimHandler: (value: string) => {
                                this.props.setInput(value);
                                if (this.props.inputRef) {
                                    this.props.inputRef.focus();
                                    this.props.inputRef.scrollLeft = 1000000;
                                }
                            },
                            continuous: { indefinite: false },
                        }).then(results => {
                            if (results && [DictationManager.Controls.Infringed].includes(results)) {
                                DictationManager.Controls.stop();
                            }
                        });
                    } else {
                        this.stopDictation();
                    }
                })}
            />
        );
    }
}