Houjie
2025-04-11 1bf977929dd324f3ac64b70debd8a79443c54392
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/**
 * @fileoverview
 * File for torch related UI components and handling.
 * 
 * @author mebjas <minhazav@gmail.com>
 * 
 * The word "QR Code" is registered trademark of DENSO WAVE INCORPORATED
 * http://www.denso-wave.com/qrcode/faqpatent-e.html
 */
 
import { BooleanCameraCapability } from "../../camera/core";
import { Html5QrcodeScannerStrings } from "../../strings";
import {
    BaseUiElementFactory,
    PublicUiElementIdAndClasses
} from "./base";
 
/**
 * Interface for callback that will be called in case of torch action failures.
 */
export type OnTorchActionFailureCallback = (failureMessage: string) => void;
 
/** Interface for controlling torch button. */
interface TorchButtonController {
    disable(): void;
    enable(): void;
    setText(text: string): void;
}
 
/** Controller class for handling torch / flash. */
class TorchController {
    private readonly torchCapability: BooleanCameraCapability;
    private readonly buttonController: TorchButtonController;
    private readonly onTorchActionFailureCallback: OnTorchActionFailureCallback;
    
    // Mutable states.
    private isTorchOn: boolean = false;
 
    constructor(
        torchCapability: BooleanCameraCapability,
        buttonController: TorchButtonController,
        onTorchActionFailureCallback: OnTorchActionFailureCallback) {
        this.torchCapability = torchCapability;
        this.buttonController = buttonController;
        this.onTorchActionFailureCallback = onTorchActionFailureCallback;
    }
 
    /** Returns {@code true} if torch is enabled. */
    public isTorchEnabled(): boolean {
        return this.isTorchOn;
    }
 
    /**
     * Flips the state of the torch.
     * 
     * <p> Turns torch On if current state is Off and vice-versa.
     * <p> Modifies the UI state accordingly.
     * 
     * @returns Promise that finishes when the async action is done.
     */
    public async flipState(): Promise<void> {
        this.buttonController.disable();
        let isTorchOnExpected = !this.isTorchOn;
        try {
            await this.torchCapability.apply(isTorchOnExpected);
            this.updateUiBasedOnLatestSettings(
                this.torchCapability.value()!, isTorchOnExpected);
        } catch (error) {
            this.propagateFailure(isTorchOnExpected, error);
            this.buttonController.enable();
        }
    }
 
    private updateUiBasedOnLatestSettings(
        isTorchOn: boolean,
        isTorchOnExpected: boolean) {
        if (isTorchOn === isTorchOnExpected) {
            // Action succeeded, flip the state.
            this.buttonController.setText(isTorchOnExpected
                    ? Html5QrcodeScannerStrings.torchOffButton()
                    : Html5QrcodeScannerStrings.torchOnButton());
            this.isTorchOn = isTorchOnExpected;
        } else {
            // Torch didn't get set as expected.
            // Show warning.
            this.propagateFailure(isTorchOnExpected);
        }
        this.buttonController.enable();
    }
 
    private propagateFailure(
        isTorchOnExpected: boolean, error?: any) {
        let errorMessage = isTorchOnExpected
            ? Html5QrcodeScannerStrings.torchOnFailedMessage()
            : Html5QrcodeScannerStrings.torchOffFailedMessage();
        if (error) {
            errorMessage += "; Error = " + error;
        }
        this.onTorchActionFailureCallback(errorMessage);
    }
 
    /**
     * Resets the state.
     * 
     * <p>Note: Doesn't turn off the torch implicitly.
     */
    public reset() {
        this.isTorchOn = false;
    }
}
 
/** Options for creating torch button. */
export interface TorchButtonOptions {
    display: string;
    marginLeft: string;
}
 
/** Helper class for creating Torch UI component. */
export class TorchButton implements TorchButtonController {
    private readonly torchButton: HTMLButtonElement;
    private readonly onTorchActionFailureCallback: OnTorchActionFailureCallback;
 
    private torchController: TorchController;
    
    private constructor(
        torchCapability: BooleanCameraCapability,
        onTorchActionFailureCallback: OnTorchActionFailureCallback) {
        this.onTorchActionFailureCallback = onTorchActionFailureCallback;
        this.torchButton
            = BaseUiElementFactory.createElement<HTMLButtonElement>(
            "button", PublicUiElementIdAndClasses.TORCH_BUTTON_ID);
 
        this.torchController = new TorchController(
            torchCapability,
            /* buttonController= */ this,
            onTorchActionFailureCallback);
    }
 
    private render(
        parentElement: HTMLElement, torchButtonOptions: TorchButtonOptions) {
        this.torchButton.innerText
            = Html5QrcodeScannerStrings.torchOnButton();
        this.torchButton.style.display = torchButtonOptions.display;
        this.torchButton.style.marginLeft = torchButtonOptions.marginLeft;
 
        let $this = this;
        this.torchButton.addEventListener("click", async (_) => {
            await $this.torchController.flipState();
            if ($this.torchController.isTorchEnabled()) {
                $this.torchButton.classList.remove(
                    PublicUiElementIdAndClasses.TORCH_BUTTON_CLASS_TORCH_OFF);
                $this.torchButton.classList.add(
                    PublicUiElementIdAndClasses.TORCH_BUTTON_CLASS_TORCH_ON);  
            } else {
                $this.torchButton.classList.remove(
                    PublicUiElementIdAndClasses.TORCH_BUTTON_CLASS_TORCH_ON);
                $this.torchButton.classList.add(
                    PublicUiElementIdAndClasses.TORCH_BUTTON_CLASS_TORCH_OFF);
            }
        });
 
        parentElement.appendChild(this.torchButton);
    }
 
    public updateTorchCapability(torchCapability: BooleanCameraCapability) {
        this.torchController = new TorchController(
            torchCapability,
            /* buttonController= */ this,
            this.onTorchActionFailureCallback);
    }
 
    /** Returns the torch button. */
    public getTorchButton(): HTMLButtonElement {
        return this.torchButton;
    }
 
    public hide() {
        this.torchButton.style.display = "none";
    }
 
    public show() {
        this.torchButton.style.display = "inline-block";
    }
 
    disable(): void {
        this.torchButton.disabled = true;
    }
 
    enable(): void {
        this.torchButton.disabled = false;
    }
 
    setText(text: string): void {
        this.torchButton.innerText = text;
    }
 
    /**
     * Resets the state.
     * 
     * <p>Note: Doesn't turn off the torch implicitly.
     */
    public reset() {
        this.torchButton.innerText = Html5QrcodeScannerStrings.torchOnButton();
        this.torchController.reset();
    }
 
    /**
     * Factory method for creating torch button.
     * 
     * @param parentElement parent HTML element to render torch button into
     * @param torchCapability torch capability of the camera
     * @param torchButtonOptions options for creating torch
     * @param onTorchActionFailureCallback callback to be called in case of
     *  torch action failure.
     */
     public static create(
        parentElement: HTMLElement,
        torchCapability: BooleanCameraCapability,
        torchButtonOptions: TorchButtonOptions,
        onTorchActionFailureCallback: OnTorchActionFailureCallback)
        : TorchButton {
        let button = new TorchButton(
            torchCapability, onTorchActionFailureCallback);
        button.render(parentElement, torchButtonOptions);
        return button;
    }
}