Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6090)

Unified Diff: chrome/browser/resources/chromeos/login/offline_ad_login.js

Issue 2433363004: Chromad: added AD Join ui, authpolicy_client (Closed)
Patch Set: Fixed nit Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/offline_ad_login.js
diff --git a/chrome/browser/resources/chromeos/login/offline_ad_login.js b/chrome/browser/resources/chromeos/login/offline_ad_login.js
new file mode 100644
index 0000000000000000000000000000000000000000..e084ffffdc17bfef71e036bea57480101337f60e
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/offline_ad_login.js
@@ -0,0 +1,82 @@
+// Copyright 2016 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.
+
Alexander Alekseev 2016/10/28 10:49:11 Document this file, please.
Roman Sorokin (ftl) 2016/10/28 12:35:28 Hmm, our polymer elements have documentation in th
Alexander Alekseev 2016/10/28 13:00:59 Chromium coding style (https://chromium.googlesour
+Polymer((function() {
+ return {
+ is: 'offline-ad-login',
+
+ properties: {
+ disabled: {
+ type: Boolean,
+ value: false,
+ observer: '_disabledChanged'
+ },
+ showMachineInput: {
+ type: Boolean,
+ value: false
+ },
+ realm: {
+ type: String,
+ observer: 'onRealmChanged_'
+ },
+ userRealm: String,
+ adWelcomeMessage: String
+ },
+
+ focus: function() {
+ if (this.showMachineInput && this.$.machineNameInput.value == '') {
+ this.$.machineNameInput.focus();
+ } else if (this.$.userInput.value == '') {
+ this.$.userInput.focus();
+ } else {
+ this.$.passwordInput.focus();
+ }
+ },
+
+ onRealmChanged_: function() {
+ this.$.welcomeMsg.textContent =
+ loadTimeData.getStringF('ADAuthWelcomeMessage', this.realm);
+ },
+
+ setUser: function(user, machineName) {
+ if (user) {
+ this.$.userInput.value = user;
+ this.$.passwordInput.isInvalid = true;
+ } else {
+ this.$.userInput.value = '';
+ this.$.passwordInput.isInvalid = false;
+ }
+ this.$.machineNameInput.value = machineName || '';
+ this.$.passwordInput.value = '';
+ this.focus();
+ },
+
+ isRTL_: function() {
+ return !!document.querySelector('html[dir=rtl]');
+ },
+
+ onSubmit_: function() {
+ if (this.showMachineInput && !this.$.machineNameInput.checkValidity())
+ return;
+ if (!this.$.passwordInput.checkValidity())
+ return;
+ var user = this.$.userInput.value;
+ if (user.indexOf('@') === -1) {
+ if (this.userRealm)
+ user = user + this.userRealm;
+ }
+ var msg = {
+ 'machinename': this.$.machineNameInput.value,
+ 'username': user,
+ 'password': this.$.passwordInput.value
+ };
+ this.$.passwordInput.value = '';
+ this.fire('authCompleted', msg);
+ },
+
+ _disabledChanged: function(newValue, oldValue) {
+ this.$.gaiaCard.classList.toggle('disabled', newValue);
+ }
+ };
+})());

Powered by Google App Engine
This is Rietveld 408576698