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
|
// Copyright 2013 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.
/**
* @fileoverview Desktop User Chooser UI control bar implementation.
*/
cr.define('login', function() {
/**
* Creates a header bar element.
* @constructor
* @extends {HTMLDivElement}
*/
var HeaderBar = cr.ui.define('div');
HeaderBar.prototype = {
__proto__: HTMLDivElement.prototype,
// Whether guest button should be shown when header bar is in normal mode.
showGuest_: true,
// Current UI state of the sign-in screen.
signinUIState_: SIGNIN_UI_STATE.ACCOUNT_PICKER,
// Whether to show kiosk apps menu.
hasApps_: false,
/** @override */
decorate: function() {
$('add-user-button').addEventListener('click',
this.handleAddUserClick_);
$('cancel-add-user-button').addEventListener('click',
this.handleCancelAddUserClick_);
$('guest-user-header-bar-item').addEventListener('click',
this.handleGuestClick_);
$('guest-user-button').addEventListener('click',
this.handleGuestClick_);
this.updateUI_();
},
/**
* Tab index value for all button elements.
* @type {number}
*/
set buttonsTabIndex(tabIndex) {
var buttons = this.getElementsByTagName('button');
for (var i = 0, button; button = buttons[i]; ++i) {
button.tabIndex = tabIndex;
}
},
/**
* Disables the header bar and all of its elements.
* @type {boolean}
*/
set disabled(value) {
var buttons = this.getElementsByTagName('button');
for (var i = 0, button; button = buttons[i]; ++i)
if (!button.classList.contains('button-restricted'))
button.disabled = value;
},
/**
* Add user button click handler.
* @private
*/
handleAddUserClick_: function(e) {
chrome.send('addUser');
// Prevent further propagation of click event. Otherwise, the click event
// handler of document object will set wallpaper to user's wallpaper when
// there is only one existing user. See http://crbug.com/166477
e.stopPropagation();
},
/**
* Cancel add user button click handler.
* @private
*/
handleCancelAddUserClick_: function(e) {
// Let screen handle cancel itself if that is capable of doing so.
if (Oobe.getInstance().currentScreen &&
Oobe.getInstance().currentScreen.cancel) {
Oobe.getInstance().currentScreen.cancel();
return;
}
Oobe.showScreen({id: SCREEN_ACCOUNT_PICKER});
Oobe.resetSigninUI(true);
},
/**
* Guest button click handler.
* @private
*/
handleGuestClick_: function(e) {
chrome.send('launchGuest');
e.stopPropagation();
},
/**
* If true then "Browse as Guest" button is shown.
* @type {boolean}
*/
set showGuestButton(value) {
this.showGuest_ = value;
this.updateUI_();
},
/**
* Update current header bar UI.
* @type {number} state Current state of the sign-in screen
* (see SIGNIN_UI_STATE).
*/
set signinUIState(state) {
this.signinUIState_ = state;
this.updateUI_();
},
/**
* Whether the Cancel button is enabled during Gaia sign-in.
* @type {boolean}
*/
set allowCancel(value) {
this.allowCancel_ = value;
this.updateUI_();
},
/**
* Updates visibility state of action buttons.
* @private
*/
updateUI_: function() {
$('add-user-button').hidden = false;
$('cancel-add-user-button').hidden = !this.allowCancel_;
$('guest-user-header-bar-item').hidden = false;
$('add-user-header-bar-item').hidden = false;
},
/**
* Animates Header bar to hide from the screen.
* @param {function()} callback will be called once animation is finished.
*/
animateOut: function(callback) {
var launcher = this;
launcher.addEventListener(
'webkitTransitionEnd', function f(e) {
launcher.removeEventListener('webkitTransitionEnd', f);
callback();
});
this.classList.remove('login-header-bar-animate-slow');
this.classList.add('login-header-bar-animate-fast');
this.classList.add('login-header-bar-hidden');
},
/**
* Animates Header bar to slowly appear on the screen.
*/
animateIn: function() {
this.classList.remove('login-header-bar-animate-fast');
this.classList.add('login-header-bar-animate-slow');
this.classList.remove('login-header-bar-hidden');
},
};
/**
* Convenience wrapper of animateOut.
*/
HeaderBar.animateOut = function(callback) {
$('login-header-bar').animateOut(callback);
};
/**
* Convenience wrapper of animateIn.
*/
HeaderBar.animateIn = function() {
$('login-header-bar').animateIn();
}
return {
HeaderBar: HeaderBar
};
});
|