summaryrefslogtreecommitdiff
path: root/chromium/ui/webui/resources/cr_components/chromeos/multidevice_setup/multidevice_setup.js
blob: 8545122a83ae1bedf2f7a3a213f656c0ffbca7df (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
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

cr.exportPath('multidevice_setup');

/** @enum {string} */
multidevice_setup.PageName = {
  PASSWORD: 'password-page',
  SUCCESS: 'setup-succeeded-page',
  START: 'start-setup-page',
};

cr.define('multidevice_setup', function() {
  const PageName = multidevice_setup.PageName;

  const MultiDeviceSetup = Polymer({
    is: 'multidevice-setup',

    behaviors: [WebUIListenerBehavior],

    properties: {
      /**
       * Delegate object which performs differently in OOBE vs. non-OOBE mode.
       * @type {!multidevice_setup.MultiDeviceSetupDelegate}
       */
      delegate: Object,

      /**
       * ID of loadTimeData string to be shown on the forward navigation button.
       * @type {string|undefined}
       */
      forwardButtonTextId: {
        type: String,
        computed: 'getForwardButtonTextId_(visiblePage_)',
        notify: true,
      },

      /** Whether the forward button should be disabled. */
      forwardButtonDisabled: {
        type: Boolean,
        computed: 'shouldForwardButtonBeDisabled_(' +
            'passwordPageForwardButtonDisabled_, visiblePageName)',
        notify: true
      },

      /**
       * ID of loadTimeData string to be shown on the cancel button.
       * @type {string|undefined}
       */
      cancelButtonTextId: {
        type: String,
        computed: 'getCancelButtonTextId_(visiblePage_)',
        notify: true,
      },

      /**
       * ID of loadTimeData string to be shown on the backward navigation
       * button.
       * @type {string|undefined}
       */
      backwardButtonTextId: {
        type: String,
        computed: 'getBackwardButtonTextId_(visiblePage_)',
        notify: true,
      },

      /**
       * Element name of the currently visible page.
       *
       * @type {!multidevice_setup.PageName}
       */
      visiblePageName: {
        type: String,
        value: PageName.START,
        notify: true,
      },

      /**
       * DOM Element corresponding to the visible page.
       *
       * @private {!PasswordPageElement|!StartSetupPageElement|
       *           !SetupSucceededPageElement}
       */
      visiblePage_: Object,

      /**
       * Authentication token, which is generated by the password page.
       * @private {string}
       */
      authToken_: {
        type: String,
      },

      /**
       * Array of objects representing all potential MultiDevice hosts.
       *
       * @private {!Array<!chromeos.multidevice.mojom.RemoteDevice>}
       */
      devices_: Array,

      /**
       * Unique identifier for the currently selected host device.
       *
       * Undefined if the no list of potential hosts has been received from mojo
       * service.
       *
       * @private {string|undefined}
       */
      selectedDeviceId_: String,

      /**
       * Whether the password page reports that the forward button should be
       * disabled. This field is only relevant when the password page is
       * visible.
       * @private {boolean}
       */
      passwordPageForwardButtonDisabled_: Boolean,

      /**
       * Provider of an interface to the MultiDeviceSetup Mojo service.
       * @private {!multidevice_setup.MojoInterfaceProvider}
       */
      mojoInterfaceProvider_: Object
    },

    listeners: {
      'backward-navigation-requested': 'onBackwardNavigationRequested_',
      'cancel-requested': 'onCancelRequested_',
      'forward-navigation-requested': 'onForwardNavigationRequested_',
    },

    /** @override */
    created: function() {
      this.mojoInterfaceProvider_ =
          multidevice_setup.MojoInterfaceProviderImpl.getInstance();
    },

    /** @override */
    ready: function() {
      this.addWebUIListener(
          'multidevice_setup.initializeSetupFlow',
          this.initializeSetupFlow.bind(this));
    },

    updateLocalizedContent: function() {
      this.$.ironPages.querySelectorAll('.ui-page')
          .forEach(page => page.i18nUpdateLocale());
    },

    initializeSetupFlow: function() {
      this.mojoInterfaceProvider_.getMojoServiceProxy()
          .getEligibleHostDevices()
          .then((responseParams) => {
            if (responseParams.eligibleHostDevices.length == 0) {
              console.warn('Potential host list is empty.');
              return;
            }

            this.devices_ = responseParams.eligibleHostDevices;
            this.fire('forward-button-focus-requested');
          })
          .catch((error) => {
            console.warn('Mojo service failure: ' + error);
          });
    },

    /** @private */
    onCancelRequested_: function() {
      this.exitSetupFlow_(false /* didUserCompleteSetup */);
    },

    /** @private */
    onBackwardNavigationRequested_: function() {
      // The back button is only visible on the password page.
      assert(this.visiblePageName == PageName.PASSWORD);

      this.$$('password-page').clearPasswordTextInput();
      this.visiblePageName = PageName.START;
      this.fire('forward-button-focus-requested');
    },

    /** @private */
    onForwardNavigationRequested_: function() {
      if (this.forwardButtonDisabled) {
        return;
      }

      this.visiblePage_.getCanNavigateToNextPage().then((canNavigate) => {
        if (!canNavigate) {
          return;
        }
        this.navigateForward_();
      });
    },

    /** @private */
    navigateForward_: function() {
      switch (this.visiblePageName) {
        case PageName.PASSWORD:
          this.$$('password-page').clearPasswordTextInput();
          this.setHostDevice_();
          return;
        case PageName.SUCCESS:
          this.exitSetupFlow_(true /* didUserCompleteSetup */);
          return;
        case PageName.START:
          if (this.delegate.isPasswordRequiredToSetHost()) {
            this.visiblePageName = PageName.PASSWORD;
          } else {
            this.setHostDevice_();
          }
          return;
      }
    },

    /** @private */
    setHostDevice_: function() {
      // An authentication token must be set if a password is required.
      assert(this.delegate.isPasswordRequiredToSetHost() == !!this.authToken_);

      const deviceId = /** @type {string} */ (this.selectedDeviceId_);
      this.delegate.setHostDevice(deviceId, this.authToken_)
          .then((responseParams) => {
            if (!responseParams.success) {
              console.warn('Failure setting host with device ID: ' + deviceId);
              return;
            }

            if (this.delegate.shouldExitSetupFlowAfterSettingHost()) {
              this.exitSetupFlow_(true /* didUserCompleteSetup */);
              return;
            }

            this.visiblePageName = PageName.SUCCESS;
            this.fire('forward-button-focus-requested');
          })
          .catch((error) => {
            console.warn('Mojo service failure: ' + error);
          });
    },

    /** @private */
    onUserSubmittedPassword_: function() {
      this.onForwardNavigationRequested_();
    },

    /**
     * @return {string|undefined} The ID of loadTimeData string for the
     *     forward button text, which is undefined if no button should be
     *     displayed.
     * @private
     */
    getForwardButtonTextId_: function() {
      if (!this.visiblePage_) {
        return undefined;
      }
      return this.visiblePage_.forwardButtonTextId;
    },

    /**
     * @return {boolean} Whether the forward button should be disabled.
     * @private
     */
    shouldForwardButtonBeDisabled_: function() {
      return (this.visiblePageName == PageName.PASSWORD) &&
          this.passwordPageForwardButtonDisabled_;
    },

    /**
     * @return {string|undefined} The ID of loadTimeData string for the
     *     cancel button text, which is undefined if no button should be
     *     displayed.
     * @private
     */
    getCancelButtonTextId_: function() {
      if (!this.visiblePage_) {
        return undefined;
      }
      return this.visiblePage_.cancelButtonTextId;
    },

    /**
     * @return {string|undefined} The ID of loadTimeData string for the
     *     backward button text, which is undefined if no button should be
     *     displayed.
     * @private
     */
    getBackwardButtonTextId_: function() {
      if (!this.visiblePage_) {
        return undefined;
      }
      return this.visiblePage_.backwardButtonTextId;
    },

    /**
     * @return {boolean}
     * @private
     */
    shouldPasswordPageBeIncluded_: function() {
      return this.delegate.isPasswordRequiredToSetHost();
    },

    /**
     * @return {boolean}
     * @private
     */
    shouldSetupSucceededPageBeIncluded_: function() {
      return !this.delegate.shouldExitSetupFlowAfterSettingHost();
    },

    /**
     * Notifies observers that the setup flow has completed.
     * @param {boolean} didUserCompleteSetup
     * @private
     */
    exitSetupFlow_: function(didUserCompleteSetup) {
      this.fire('setup-exited', {didUserCompleteSetup: didUserCompleteSetup});
    },
  });

  return {
    MultiDeviceSetup: MultiDeviceSetup,
  };
});