Rewrite AndroidSyncSettings to be significantly simpler.
[chromium-blink-merge.git] / remoting / webapp / crd / js / crd_event_handlers.js
blobb730db429c0b4abc67e192712e090bd2a89a91c8
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 'use strict';
7 /** @suppress {duplicate} */
8 var remoting = remoting || {};
10 remoting.initElementEventHandlers = function() {
11   var goHome = function() {
12     remoting.setMode(remoting.AppMode.HOME);
13   };
14   var goEnterAccessCode = function() {
15     // We don't need a token until we authenticate, but asking for one here
16     // handles the token-expired case earlier, avoiding asking the user for
17     // the access code both before and after re-authentication.
18     remoting.identity.getToken().
19         then(function(token) {
20           remoting.setMode(remoting.AppMode.CLIENT_UNCONNECTED);
21         }).
22         catch(remoting.Error.handler(remoting.showErrorMessage));
23   };
24   var goFinishedIT2Me = function() {
25     if (remoting.currentMode == remoting.AppMode.CLIENT_CONNECT_FAILED_IT2ME) {
26       remoting.setMode(remoting.AppMode.CLIENT_UNCONNECTED);
27     } else {
28       goHome();
29     }
30   };
31   /** @param {Event} event The event. */
32   var sendAccessCode = function(event) {
33     remoting.connectIT2Me();
34     event.preventDefault();
35   };
36   var reconnect = function() {
37     remoting.setMode(remoting.AppMode.CLIENT_CONNECTING);
38     remoting.app.getSessionConnector().reconnect();
39   };
40   /** @param {Event} event The event. */
41   var stopDaemon = function(event) {
42     remoting.hostSetupDialog.showForStop();
43     event.stopPropagation();
44   };
45   var cancelAccessCode = function() {
46     remoting.setMode(remoting.AppMode.HOME);
47     document.getElementById('access-code-entry').value = '';
48   };
49   /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
50   var it2me_actions = [
51       { event: 'click', id: 'access-mode-button', fn: goEnterAccessCode },
52       { event: 'submit', id: 'access-code-form', fn: sendAccessCode },
53       { event: 'click', id: 'cancel-access-code-button', fn: cancelAccessCode},
54       { event: 'click', id: 'cancel-share-button', fn: remoting.cancelShare },
55       { event: 'click', id: 'client-finished-it2me-button', fn: goHome },
56       { event: 'click', id: 'get-started-it2me',
57         fn: remoting.showIT2MeUiAndSave },
58       { event: 'click', id: 'host-finished-button', fn: goHome },
59       { event: 'click', id: 'share-button', fn: remoting.tryShare }
60   ];
61   /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
62   var me2me_actions = [
63       { event: 'click', id: 'change-daemon-pin',
64         fn: function() { remoting.hostSetupDialog.showForPin(); } },
65       { event: 'click', id: 'client-finished-me2me-button', fn: goHome },
66       { event: 'click', id: 'client-reconnect-button', fn: reconnect },
67       { event: 'click', id: 'daemon-pin-cancel', fn: goHome },
68       { event: 'click', id: 'get-started-me2me',
69         fn: remoting.showMe2MeUiAndSave },
70       { event: 'click', id: 'start-daemon',
71         fn: function() { remoting.hostSetupDialog.showForStart(); } },
72       { event: 'click', id: 'stop-daemon', fn: stopDaemon }
73   ];
74   /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
75   var host_actions = [
76       { event: 'click', id: 'close-paired-client-manager-dialog', fn: goHome },
77       { event: 'click', id: 'host-config-done-dismiss', fn: goHome },
78       { event: 'click', id: 'host-config-error-dismiss', fn: goHome },
79       { event: 'click', id: 'open-paired-client-manager-dialog',
80         fn: remoting.setMode.bind(null,
81                                   remoting.AppMode.HOME_MANAGE_PAIRINGS) },
82       { event: 'click', id: 'stop-sharing-button', fn: remoting.cancelShare }
83   ];
84   /** @type {Array<{event: string, id: string, fn: function(Event):void}>} */
85   var auth_actions = [
86       { event: 'click', id: 'cancel-connect-button', fn: goHome },
87       { event: 'click', id: 'sign-out', fn:remoting.signOut },
88       { event: 'click', id: 'token-refresh-error-ok', fn: goHome },
89       { event: 'click', id: 'token-refresh-error-sign-in',
90         fn: remoting.handleAuthFailureAndRelaunch }
91   ];
92   registerEventListeners(it2me_actions);
93   registerEventListeners(me2me_actions);
94   registerEventListeners(host_actions);
95   registerEventListeners(auth_actions);