X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=www%2Fjssrc%2Fblerg%2FAccountCenter.js;fp=www%2Fjssrc%2Fblerg%2FAccountCenter.js;h=981fcb11dbf5bd4528e0dd76288e9e8c3ef8eb28;hb=4210d2d20df6635e19c20f5b303d498f4657968b;hp=766e9b2cdc99a78e375f4c0c81368c986cc5769e;hpb=f1c5b259b364aa5480bfd3939a46cf301fce3c8b;p=blerg.git diff --git a/www/jssrc/blerg/AccountCenter.js b/www/jssrc/blerg/AccountCenter.js index 766e9b2..981fcb1 100644 --- a/www/jssrc/blerg/AccountCenter.js +++ b/www/jssrc/blerg/AccountCenter.js @@ -1,20 +1,5 @@ enyo.kind({ name: "blerg.AccountCenter", - components: [ - {tag: 'h2', content: "Change Password"}, - {kind: "blerg.PasswdForm"}, - {tag: 'h2', content: "Email"}, - {kind: 'blerg.EmailForm'}, - {tag: 'h2', content: "Generate recovery link"}, - {content: "A recovery link is a URL that will allow you to reset the password on your account at a later time. Whoever has this link will be able to gain control of your account. This link should be kept in a safe place like an encrypted password manager or a physical piece of paper locked in a safe. The link will expire after one year or the next password change (either via a recovery link or by changing it manually above). To indicate that you understand this, please copy blërg into the textbox below.", tag: 'p', allowHtml: true}, - {tag: 'form', onsubmit: 'generateRecoveryLink', components: [ - {kind: 'onyx.InputDecorator', classes: "recovery", components: [ - {kind: 'onyx.Input', name: "recoveryVerifier"} - ]}, - {kind: 'onyx.Button', content: "Generate", classes: "recovery", onclick: "generateRecoveryLink"} - ]}, - {tag: 'p', name: 'recoveryLinkOutput', classes: 'recovery'} - ], statics: { locationDetect: function(l) { var m = l.hash.match(/^#\/account$/); @@ -25,9 +10,32 @@ enyo.kind({ } } }, + handlers: { + onLogin: "loginStatusChange", + onLogout: "loginStatusChange" + }, + components: [ + {name: 'accountCenterContent', showing: false, components: [ + {tag: 'h2', content: "Change Password"}, + {kind: "blerg.PasswdForm"}, + {tag: 'h2', content: "Email"}, + {kind: 'blerg.EmailForm'}, + {tag: 'h2', content: "Generate recovery link"}, + {content: "A recovery link is a URL that will allow you to reset the password on your account at a later time. Whoever has this link will be able to gain control of your account. This link should be kept in a safe place like an encrypted password manager or a physical piece of paper locked in a safe. The link will expire after one year or the next password change (either via a recovery link or by changing it manually above). To indicate that you understand this, please copy blërg into the textbox below.", tag: 'p', allowHtml: true}, + {tag: 'form', onsubmit: 'generateRecoveryLink', components: [ + {kind: 'onyx.InputDecorator', classes: "recovery", components: [ + {kind: 'onyx.Input', name: "recoveryVerifier"} + ]}, + {kind: 'onyx.Button', content: "Generate", classes: "recovery", onclick: "generateRecoveryLink"} + ]}, + {tag: 'p', name: 'recoveryLinkOutput', classes: 'recovery'} + ]}, + {name: 'pleaseLogIn', content: 'Please log in above to use the Account Center.'} + ], create: function() { this.inherited(arguments); this.bubble('onSetTitle', {section: 'Account Center'}); + this.loginStatusChange(); }, generateRecoveryLink: function(inSender, inEvent) { if (this.$.recoveryVerifier.getValue() != 'blërg') { @@ -49,5 +57,9 @@ enyo.kind({ }); req.go(); + }, + loginStatusChange: function(inSender, inEvent) { + this.$.pleaseLogIn.setShowing(!blerg.API.loggedIn); + this.$.accountCenterContent.setShowing(blerg.API.loggedIn); } });