Newer
Older
import { ChangeDetectorRef, Component, OnInit, NgZone, ViewChild } from '@angular/core';
import { MediaMatcher } from '@angular/cdk/layout';
import { HttpClient } from '@angular/common/http';
import { LANG } from './translate.component';
import { NotificationService } from './notification.service';

Alex ORLUC
committed
import { debounceTime, switchMap, distinctUntilChanged, filter } from 'rxjs/operators';
import { MatPaginator, MatTableDataSource, MatSort, MatDialog, MatDialogRef, MatSidenav } from '@angular/material';
import { AutoCompletePlugin } from '../plugins/autocomplete.plugin';

Alex ORLUC
committed
import { SelectionModel } from '@angular/cdk/collections';
import { FormControl } from '@angular/forms';

Alex ORLUC
committed
declare function $j(selector: any): any;

Alex ORLUC
committed
declare var tinymce: any;
declare var angularGlobals: any;

Damien
committed

Alex ORLUC
committed
templateUrl: "../../../Views/profile.component.html",
styleUrls: ['../../../css/profile.component.css'],
providers: [NotificationService]
export class ProfileComponent extends AutoCompletePlugin implements OnInit {

Alex ORLUC
committed
private _mobileQueryListener: () => void;
mobileQuery: MediaQueryList;
dialogRef: MatDialogRef<any>;

Alex ORLUC
committed
coreUrl: string;
lang: any = LANG;

Alex ORLUC
committed
user: any = {
baskets: []

Alex ORLUC
committed
histories: any[] = [];
passwordModel: any = {
currentPassword: "",
newPassword: "",
reNewPassword: "",

Alex ORLUC
committed
signatureModel: any = {
base64: "",
base64ForJs: "",
name: "",
type: "",
size: 0,
label: "",

Alex ORLUC
committed
mailSignatureModel: any = {
selected: -1,
htmlBody: "",
title: "",

Damien
committed
};

Alex ORLUC
committed
userAbsenceModel: any[] = [];
basketsToRedirect: string[] = [];
showPassword: boolean = false;
selectedSignature: number = -1;
selectedSignatureLabel: string = "";
loading: boolean = false;
selectedIndex: number = 0;
@ViewChild('snav2') sidenav: MatSidenav;
//Redirect Baskets
selectionBaskets = new SelectionModel<Element>(true, []);
masterToggleBaskets(event: any) {
if (event.checked) {
this.user.baskets.forEach((basket: any) => {
this.selectionBaskets.select(basket.basket_id);
});
} else {
this.selectionBaskets.clear();
}
}

Alex ORLUC
committed
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
//Groups contacts
contactsGroups: any[] = [];
displayedColumnsGroupsList: string[] = ['label', 'description', 'actions'];
dataSourceGroupsList: any;
@ViewChild('paginatorGroupsList') paginatorGroupsList: MatPaginator;
@ViewChild('tableGroupsListSort') sortGroupsList: MatSort;
applyFilterGroupsList(filterValue: string) {
filterValue = filterValue.trim(); // Remove whitespace
filterValue = filterValue.toLowerCase(); // MatTableDataSource defaults to lowercase matches
this.dataSourceGroupsList.filter = filterValue;
}
//Group contacts
contactsGroup: any = { public: false };
//Group contacts List Autocomplete
contactTypeSearch: string = "all";
initAutoCompleteContact = true;
searchTerm: FormControl = new FormControl();
searchResult: any = [];
contactTypes: string[] = [];
displayedColumnsContactsListAutocomplete: string[] = ['select', 'contact', 'address'];
dataSourceContactsListAutocomplete: any;
@ViewChild('paginatorGroupsListAutocomplete') paginatorGroupsListAutocomplete: MatPaginator;
selection = new SelectionModel<Element>(true, []);
masterToggle(event: any) {
if (event.checked) {
this.dataSourceContactsListAutocomplete.data.forEach((row: any) => {
if (!$j("#check_" + row.addressId + '-input').is(":disabled")) {
this.selection.select(row.addressId);
}
});
} else {
this.selection.clear();
}
}
//Group contacts List
contactsListMode: boolean = false;
contactsList: any[] = [];
displayedColumnsContactsList: string[] = ['contact', 'address', 'actions'];
dataSourceContactsList: any;
@ViewChild('paginatorContactsList') paginatorContactsList: MatPaginator;
@ViewChild('tableContactsListSort') sortContactsList: MatSort;
applyFilterContactsList(filterValue: string) {
filterValue = filterValue.trim(); // Remove whitespace
filterValue = filterValue.toLowerCase(); // MatTableDataSource defaults to lowercase matches
this.dataSourceContactsList.filter = filterValue;
}

Alex ORLUC
committed
//History
displayedColumns = ['event_date', 'info'];
dataSource: any;
@ViewChild('paginatorHistory') paginatorHistory: MatPaginator;
@ViewChild('tableHistorySort') sortHistory: MatSort;
applyFilter(filterValue: string) {
filterValue = filterValue.trim(); // Remove whitespace
filterValue = filterValue.toLowerCase(); // MatTableDataSource defaults to lowercase matches
this.dataSource.filter = filterValue;
}
constructor(changeDetectorRef: ChangeDetectorRef, media: MediaMatcher, public http: HttpClient, private zone: NgZone, private notify: NotificationService, public dialog: MatDialog) {
super(http, ['users']);
$j("link[href='merged_css.php']").remove();
this.mobileQuery = media.matchMedia('(max-width: 768px)');
this._mobileQueryListener = () => changeDetectorRef.detectChanges();
this.mobileQuery.addListener(this._mobileQueryListener);
window['angularProfileComponent'] = {

Damien
committed
componentAfterUpload: (base64Content: any) => this.processAfterUpload(base64Content),

Alex ORLUC
committed
this.searchTerm.valueChanges.pipe(
debounceTime(500),
filter(value => value.length > 2),
distinctUntilChanged(),
switchMap(data => this.http.get(this.coreUrl + 'rest/autocomplete/contacts', { params: { "search": data, "type": this.contactTypeSearch } }))
).subscribe((response: any) => {
this.searchResult = response;
this.dataSourceContactsListAutocomplete = new MatTableDataSource(this.searchResult);
this.dataSourceContactsListAutocomplete.paginator = this.paginatorGroupsListAutocomplete;
//this.dataSource.sort = this.sortContactList;
});
}
prepareProfile() {
$j('#inner_content').remove();
$j('#menunav').hide();
$j('#magicContactsTable').remove();
$j('#manageBasketsOrderTable').remove();
if ($j('#content h1')[0] && $j('#content h1')[0] != $j('my-app h1')[0]) {
$j('#content h1')[0].remove();
}

Alex ORLUC
committed
initComponents(event: any) {
if (event.index == 2) {
this.sidenav.open();
//if (this.histories.length == 0) {
this.http.get(this.coreUrl + 'rest/histories/users/' + this.user.id)

Alex ORLUC
committed
.subscribe((data: any) => {
this.histories = data.histories;
setTimeout(() => {
this.dataSource = new MatTableDataSource(this.histories);

Alex ORLUC
committed
this.dataSource.paginator = this.paginatorHistory;
this.dataSource.sort = this.sortHistory;
}, 0);
}, (err) => {
this.notify.error(err.error.errors);
});

Alex ORLUC
committed
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
//}
} else if(event.index == 1) {
this.sidenav.close();
} else {
this.sidenav.open();
}
}
initMce() {
tinymce.remove('textarea');
//LOAD EDITOR TINYMCE for MAIL SIGN
tinymce.baseURL = "../../node_modules/tinymce";
tinymce.suffix = '.min';
tinymce.init({
selector: "textarea#emailSignature",
statusbar: false,
language: "fr_FR",
language_url: "tools/tinymce/langs/fr_FR.js",
height: "200",
plugins: [
"textcolor"
],
external_plugins: {
'bdesk_photo': "../../apps/maarch_entreprise/tools/tinymce/bdesk_photo/plugin.min.js"
},
menubar: false,
toolbar: "undo | bold italic underline | alignleft aligncenter alignright | bdesk_photo | forecolor",
theme_buttons1_add: "fontselect,fontsizeselect",
theme_buttons2_add_before: "cut,copy,paste,pastetext,pasteword,separator,search,replace,separator",
theme_buttons2_add: "separator,insertdate,inserttime,preview,separator,forecolor,backcolor",
theme_buttons3_add_before: "tablecontrols,separator",
theme_buttons3_add: "separator,print,separator,ltr,rtl,separator,fullscreen,separator,insertlayer,moveforward,movebackward,absolut",
theme_toolbar_align: "left",
theme_advanced_toolbar_location: "top",
theme_styles: "Header 1=header1;Header 2=header2;Header 3=header3;Table Row=tableRow1"
});
}
initGroupsContact() {
this.contactsListMode = false;
this.http.get(this.coreUrl + 'rest/contactsGroups')
.subscribe((data) => {
this.contactsGroups = [];

Alex ORLUC
committed
let i = 0;
data['contactsGroups'].forEach((ct: any) => {
if (ct.owner == angularGlobals.user.id) {
ct.position = i;
this.contactsGroups.push(ct);
i++;
}
});
setTimeout(() => {
this.dataSourceGroupsList = new MatTableDataSource(this.contactsGroups);
this.dataSourceGroupsList.paginator = this.paginatorGroupsList;
this.dataSourceGroupsList.sort = this.sortGroupsList;
}, 0);
}, (err) => {
console.log(err);
location.href = "index.php";
});
}
contactsGroupSubmit() {

Alex ORLUC
committed
this.http.post(this.coreUrl + 'rest/contactsGroups', this.contactsGroup)
.subscribe((data: any) => {
this.initGroupsContact();
this.notify.success(this.lang.contactsGroupAdded);
}, (err) => {
this.notify.error(err.error.errors);
});
}
updateGroupSubmit() {
this.http.put(this.coreUrl + 'rest/contactsGroups/' + this.contactsGroup.id, this.contactsGroup)
.subscribe(() => {
this.notify.success(this.lang.contactsGroupUpdated);
}, (err) => {
this.notify.error(err.error.errors);

Alex ORLUC
committed
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
}
deleteContactsGroup(row: any) {
var contactsGroup = this.contactsGroups[row];
let r = confirm(this.lang.confirmAction + ' ' + this.lang.delete + ' « ' + contactsGroup.label + ' »');
if (r) {
this.http.delete(this.coreUrl + 'rest/contactsGroups/' + contactsGroup.id)
.subscribe(() => {
var lastElement = this.contactsGroups.length - 1;
this.contactsGroups[row] = this.contactsGroups[lastElement];
this.contactsGroups[row].position = row;
this.contactsGroups.splice(lastElement, 1);
this.dataSourceGroupsList = new MatTableDataSource(this.contactsGroups);
this.dataSourceGroupsList.paginator = this.paginatorGroupsList;
this.notify.success(this.lang.contactsGroupDeleted);
}, (err) => {
this.notify.error(err.error.errors);
});
}
}
loadContactsGroup(contactsGroup: any) {
this.contactsListMode = true;
this.http.get(this.coreUrl + 'rest/contactsTypes')
.subscribe((data: any) => {
this.contactTypes = data.contactsTypes;
});
this.http.get(this.coreUrl + 'rest/contactsGroups/' + contactsGroup.id)
.subscribe((data: any) => {
this.contactsGroup = data.contactsGroup;
setTimeout(() => {
this.dataSourceContactsList = new MatTableDataSource(this.contactsGroup.contacts);
this.dataSourceContactsList.paginator = this.paginatorContactsList;
this.dataSourceContactsList.sort = this.sortContactsList;
}, 0);
});
}
saveContactsList(elem: any): void {
elem.textContent = this.lang.loading + '...';
elem.disabled = true;
this.http.post(this.coreUrl + 'rest/contactsGroups/' + this.contactsGroup.id + '/contacts', { 'contacts': this.selection.selected })
.subscribe((data: any) => {
this.notify.success(this.lang.contactAdded);
this.selection.clear();
elem.textContent = this.lang.add;
this.contactsGroup = data.contactsGroup;
setTimeout(() => {
this.dataSourceContactsList = new MatTableDataSource(this.contactsGroup.contacts);
this.dataSourceContactsList.paginator = this.paginatorContactsList;
this.dataSourceContactsList.sort = this.sortContactsList;
}, 0);
}, (err) => {
this.notify.error(err.error.errors);
});
}
preDelete(index: number) {
let r = confirm(this.lang.reallyWantToDeleteContactFromGroup);
if (r) {
this.removeContact(this.contactsGroup.contacts[index], index);
}
}
removeContact(contact: any, row: any) {
this.http.delete(this.coreUrl + "rest/contactsGroups/" + this.contactsGroup.id + "/contacts/" + contact['addressId'])
.subscribe(() => {
var lastElement = this.contactsGroup.contacts.length - 1;
this.contactsGroup.contacts[row] = this.contactsGroup.contacts[lastElement];
this.contactsGroup.contacts[row].position = row;
this.contactsGroup.contacts.splice(lastElement, 1);
this.dataSourceContactsList = new MatTableDataSource(this.contactsGroup.contacts);
this.dataSourceContactsList.paginator = this.paginatorContactsList;
this.dataSourceContactsList.sort = this.sortContactsList;
this.notify.success(this.lang.contactDeletedFromGroup);
}, (err) => {
this.notify.error(err.error.errors);
});
}
launchLoading() {
if (this.searchTerm.value.length > 2) {
this.dataSourceContactsListAutocomplete = null;
this.initAutoCompleteContact = false;
}
}
isInGrp(address: any): boolean {
let isInGrp = false;
this.contactsGroup.contacts.forEach((row: any) => {
if (row.addressId == address.addressId) {
isInGrp = true;
}
});
return isInGrp;
}
selectAddress(addressId: any) {
if (!$j("#check_" + addressId + '-input').is(":disabled")) {
this.selection.toggle(addressId);
ngOnInit(): void {
this.prepareProfile();

Damien
committed
this.coreUrl = angularGlobals.coreUrl;
this.http.get('../../rest/currentUser/profile')

Alex ORLUC
committed
.subscribe((data: any) => {

Damien
committed
this.user = data;
this.user.baskets.forEach((value: any, index: number) => {
this.user.baskets[index]['disabled'] = false;
this.user.redirectedBaskets.forEach((value2: any) => {
if (value.basket_id == value2.basket_id && value.basket_owner == value2.basket_owner) {
this.user.baskets[index]['disabled'] = true;
}
});
});

Damien
committed
this.loading = false;

Damien
committed
processAfterUpload(b64Content: any) {
this.zone.run(() => this.resfreshUpload(b64Content));

Damien
committed
resfreshUpload(b64Content: any) {
if (this.signatureModel.size <= 2000000) {
this.signatureModel.base64 = b64Content.replace(/^data:.*?;base64,/, "");
this.signatureModel.base64ForJs = b64Content;
} else {
this.signatureModel.name = "";
this.signatureModel.size = 0;
this.signatureModel.type = "";
this.signatureModel.base64 = "";
this.signatureModel.base64ForJs = "";
this.notify.error("Taille maximum de fichier dépassée (2 MB)");
displayPassword() {
this.showPassword = !this.showPassword;
}

Damien
committed
clickOnUploader(id: string) {
$j('#' + id).click();
}
uploadSignatureTrigger(fileInput: any) {
if (fileInput.target.files && fileInput.target.files[0]) {
var reader = new FileReader();
this.signatureModel.name = fileInput.target.files[0].name;
this.signatureModel.size = fileInput.target.files[0].size;
this.signatureModel.type = fileInput.target.files[0].type;
if (this.signatureModel.label == "") {
this.signatureModel.label = this.signatureModel.name;
}
reader.readAsDataURL(fileInput.target.files[0]);

Alex ORLUC
committed
reader.onload = (value: any) => {
window['angularProfileComponent'].componentAfterUpload(value.target.result);

Alex ORLUC
committed
this.submitSignature();

Alex ORLUC
committed
dndUploadSignature(event:any) {
if (event.mouseEvent.dataTransfer.files && event.mouseEvent.dataTransfer.files[0]) {
var reader = new FileReader();
this.signatureModel.name = event.mouseEvent.dataTransfer.files[0].name;
this.signatureModel.size = event.mouseEvent.dataTransfer.files[0].size;
this.signatureModel.type = event.mouseEvent.dataTransfer.files[0].type;
if (this.signatureModel.label == "") {
this.signatureModel.label = this.signatureModel.name;
}
reader.readAsDataURL(event.mouseEvent.dataTransfer.files[0]);
reader.onload = (value: any) => {
window['angularProfileComponent'].componentAfterUpload(value.target.result);
this.submitSignature();
};
}
}
displaySignatureEditionForm(index: number) {
this.selectedSignature = index;
this.selectedSignatureLabel = this.user.signatures[index].signature_label;
}

Alex ORLUC
committed
changeEmailSignature(i: any) {
this.mailSignatureModel.selected = i;
tinymce.get('emailSignature').setContent(this.user.emailSignatures[i].html_body);
this.mailSignatureModel.title = this.user.emailSignatures[i].title;
resetEmailSignature() {
this.mailSignatureModel.selected = -1;
tinymce.get('emailSignature').setContent("");
this.mailSignatureModel.title = "";

Alex ORLUC
committed
addBasketRedirection(newUser: any) {
let basketsRedirect:any[] = [];
this.user.baskets.forEach((elem: any) => {
if (this.selectionBaskets.selected.indexOf(elem.basket_id) != -1) {
basketsRedirect.push({newUser: newUser,basketId:elem.basket_id,basketOwner:this.user.user_id,virtual:elem.is_virtual})
}
});
let r = confirm(this.lang.confirmAction + ' ' + this.lang.redirectBasket);
if (r) {
this.http.post(this.coreUrl + "rest/users/" + this.user.id + "/redirectedBaskets", basketsRedirect)
.subscribe((data: any) => {
this.userCtrl.setValue('');
this.user.baskets = data["baskets"];
this.selectionBaskets.clear();
this.notify.success(this.lang.basketUpdated);
}, (err) => {
this.notify.error(err.error.errors);
delBasketRedirection(basket: any) {
let r = confirm(this.lang.confirmAction);
if (r) {

Alex ORLUC
committed
this.http.request('DELETE', this.coreUrl + "rest/users/" + this.user.id + "/redirectedBaskets/" + basket.basket_id, { body: { "basketOwner": basket.basket_owner } })
.subscribe((data: any) => {
this.userCtrl.setValue('');
this.user.baskets = data["baskets"];
this.notify.success(this.lang.basketUpdated);
}, (err) => {
this.notify.error(err.error.errors);

Alex ORLUC
committed
reassignBasketRedirection(newUser: any, basket: any) {
let r = confirm(this.lang.confirmAction + ' ' + this.lang.redirectBasket);
if (r) {

Alex ORLUC
committed
this.http.post(this.coreUrl + "rest/users/" + this.user.id + "/redirectedBaskets", [{ "newUser": newUser, "basketId": basket.basket_id, "basketOwner": basket.basket_owner, "virtual": basket.is_virtual }])
.subscribe((data: any) => {
this.userCtrl.setValue('');
this.user.baskets = data["baskets"];
this.notify.success(this.lang.basketUpdated);
}, (err) => {
this.notify.error(err.error.errors);
});
}

Alex ORLUC
committed
this.http.put(this.coreUrl + "rest/currentUser/groups/" + this.user.regroupedBaskets[i].groupId + "/baskets/" + this.user.regroupedBaskets[i].baskets[y].basket_id, { "color": this.user.regroupedBaskets[i].baskets[y].color })
this.user.regroupedBaskets = data.userBaskets;
this.notify.success(this.lang.modificationSaved);
this.notify.error(err.error.errors);
let r = confirm('Voulez-vous vraiment activer votre absence ? Vous serez automatiquement déconnecté.');
if (r) {

Alex ORLUC
committed
this.http.put(this.coreUrl + 'rest/users/' + this.user.id + '/status', { "status": "ABS" })
.subscribe(() => {
location.hash = "";
location.search = "?display=true&page=logout&abs_mode";
}, (err) => {
this.notify.error(err.error.errors);
});
}
}
askRedirectBasket() {
let r = confirm('Voulez-vous rediriger vos bannettes avant de vous mettre en absence ?');
if (r) {
$j('#redirectBasketCard').click();
} else {
this.activateAbsence();
}
this.http.put(this.coreUrl + 'rest/currentUser/password', this.passwordModel)

Alex ORLUC
committed
.subscribe((data: any) => {
this.showPassword = false;
this.passwordModel = {

Alex ORLUC
committed
currentPassword: "",
newPassword: "",
reNewPassword: "",
this.notify.success(this.lang.passwordUpdated);
}, (err) => {
submitEmailSignature() {

Damien
committed
this.mailSignatureModel.htmlBody = tinymce.get('emailSignature').getContent();
this.http.post(this.coreUrl + 'rest/currentUser/emailSignature', this.mailSignatureModel)

Alex ORLUC
committed
.subscribe((data: any) => {

Damien
committed
if (data.errors) {

Damien
committed
} else {
this.user.emailSignatures = data.emailSignatures;

Alex ORLUC
committed
this.mailSignatureModel = {
selected: -1,
htmlBody: "",
title: "",
};
tinymce.get('emailSignature').setContent("");
this.notify.success(this.lang.emailSignatureAdded);

Damien
committed
}
});
}
updateEmailSignature() {

Damien
committed
this.mailSignatureModel.htmlBody = tinymce.get('emailSignature').getContent();
var id = this.user.emailSignatures[this.mailSignatureModel.selected].id;

Damien
committed
this.http.put(this.coreUrl + 'rest/currentUser/emailSignature/' + id, this.mailSignatureModel)

Alex ORLUC
committed
.subscribe((data: any) => {

Damien
committed
if (data.errors) {

Damien
committed
} else {
this.user.emailSignatures[this.mailSignatureModel.selected].title = data.emailSignature.title;
this.user.emailSignatures[this.mailSignatureModel.selected].html_body = data.emailSignature.html_body;
this.notify.success(this.lang.emailSignatureUpdated);

Damien
committed
}
});
}
deleteEmailSignature() {
let r = confirm('Voulez-vous vraiment supprimer la signature de mail ?');
if (r) {
var id = this.user.emailSignatures[this.mailSignatureModel.selected].id;
this.http.delete(this.coreUrl + 'rest/currentUser/emailSignature/' + id)

Alex ORLUC
committed
.subscribe((data: any) => {
} else {
this.user.emailSignatures = data.emailSignatures;

Alex ORLUC
committed
this.mailSignatureModel = {
selected: -1,
htmlBody: "",
title: "",
};
tinymce.get('emailSignature').setContent("");
this.notify.success(this.lang.emailSignatureDeleted);

Damien
committed
}
this.http.post(this.coreUrl + "rest/users/" + this.user.id + "/signatures", this.signatureModel)

Alex ORLUC
committed
.subscribe((data: any) => {
this.user.signatures = data.signatures;

Alex ORLUC
committed
this.signatureModel = {
base64: "",
base64ForJs: "",
name: "",
type: "",
size: 0,
label: "",
this.notify.success(this.lang.signatureAdded);

Alex ORLUC
committed
updateSignature(signature: any) {
this.http.put(this.coreUrl + "rest/users/" + this.user.id + "/signatures/" + signature.id, { "label": signature.signature_label })
.subscribe((data: any) => {
this.notify.success(this.lang.signatureUpdated);
deleteSignature(id: number) {
let r = confirm('Voulez-vous vraiment supprimer la signature ?');
if (r) {
this.http.delete(this.coreUrl + "rest/users/" + this.user.id + "/signatures/" + id)

Alex ORLUC
committed
.subscribe((data: any) => {
this.user.signatures = data.signatures;
this.notify.success(this.lang.signatureDeleted);
});
}
}
this.http.put(this.coreUrl + 'rest/currentUser/profile', this.user)
.subscribe(() => {
this.notify.success(this.lang.modificationSaved);
}, (err) => {
this.notify.error(err.error.errors);
changePasswd() {
this.selectedIndex = 0;

Alex ORLUC
committed
this.showPassword = true;
showActions(basket:any){
$j('#'+basket).show();
}
hideActions(basket:any){
$j('#'+basket).hide();
}