initial commit
This commit is contained in:
91
dev/tekton/examples/example-bank/public/javascript/loyalty.js
Executable file
91
dev/tekton/examples/example-bank/public/javascript/loyalty.js
Executable file
@@ -0,0 +1,91 @@
|
||||
class Loyalty {
|
||||
|
||||
mobileview;
|
||||
|
||||
constructor() {
|
||||
|
||||
console.log('INITIALIZING LOYALTY APP');
|
||||
|
||||
var phoneview = document.getElementById("phoneview");
|
||||
this.mobileview = phoneview.getMobileView();
|
||||
|
||||
// if cookie exists - then user is logged in
|
||||
// navigate to account section
|
||||
|
||||
// if(this.mode=='INTEGRATED'){
|
||||
// if (this.getCookie('access_token') != "" && this.getCookie('id_token') != "") {
|
||||
// let id_object = this.parseJwt(this.getCookie('id_token'))
|
||||
// console.log(id_object)
|
||||
|
||||
// var accountinfo = {
|
||||
// firstname: id_object.given_name,
|
||||
// surname: id_object.family_name
|
||||
// }
|
||||
|
||||
// var fullname = accountinfo.firstname + ' ' + accountinfo.surname
|
||||
|
||||
// this.mobileview.innerHTML = "";
|
||||
|
||||
// let element = document.createElement('transactions-element')
|
||||
// element.setAttribute('name', fullname);
|
||||
// element.setAttribute('mode', this.mode);
|
||||
// this.mobileview.appendChild(element);
|
||||
|
||||
// localStorage.setItem("loyaltyname", fullname);
|
||||
// console.log(phoneview)
|
||||
// phoneview.showNavigation();
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
signup() {
|
||||
console.log('loyalty.signup');
|
||||
|
||||
// var phoneview = document.getElementById("phoneview");
|
||||
// var mobileview = phoneview.getMobileView();
|
||||
this.mobileview.innerHTML = "";
|
||||
|
||||
var element = document.createElement('login-element');
|
||||
getRandomUser((firstname, surname, password, email) => {
|
||||
element.setAttribute('firstname', firstname);
|
||||
element.setAttribute('surname', surname);
|
||||
element.setAttribute('password', password);
|
||||
element.setAttribute('email', email);
|
||||
element.setAttribute('username', firstname + surname);
|
||||
|
||||
this.mobileview.appendChild(element);
|
||||
})
|
||||
|
||||
/* same as mobileview.innerHTML =
|
||||
'<login-element firstname="John surname="Lennon" password="######" username="john@email.com"></login-element>' */
|
||||
}
|
||||
|
||||
parseJwt (token) {
|
||||
var base64Url = token.split('.')[1];
|
||||
var base64 = base64Url.replace('/-/g', '+').replace('/_/g', '/');
|
||||
var jsonPayload = decodeURIComponent(atob(base64).split('').map(function(c) {
|
||||
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
|
||||
}).join(''));
|
||||
|
||||
return JSON.parse(jsonPayload);
|
||||
};
|
||||
|
||||
getCookie(cname) {
|
||||
var name = cname + "=";
|
||||
var decodedCookie = decodeURIComponent(document.cookie);
|
||||
var ca = decodedCookie.split(';');
|
||||
for(var i = 0; i <ca.length; i++) {
|
||||
var c = ca[i];
|
||||
while (c.charAt(0) == ' ') {
|
||||
c = c.substring(1);
|
||||
}
|
||||
if (c.indexOf(name) == 0) {
|
||||
return c.substring(name.length, c.length);
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
// var loyalty = new Loyalty();
|
||||
var loyalty = new Loyalty();
|
||||
Reference in New Issue
Block a user