mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-09 09:51:02 +01:00
remove static sorting functions
This commit is contained in:
parent
3e43dd7aac
commit
e160b97497
@ -41,46 +41,6 @@ const Keys = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export class CipherService implements CipherServiceAbstraction {
|
export class CipherService implements CipherServiceAbstraction {
|
||||||
static sortCiphersByLastUsed(a: any, b: any): number {
|
|
||||||
const aLastUsed = a.localData && a.localData.lastUsedDate ? a.localData.lastUsedDate as number : null;
|
|
||||||
const bLastUsed = b.localData && b.localData.lastUsedDate ? b.localData.lastUsedDate as number : null;
|
|
||||||
|
|
||||||
if (aLastUsed != null && bLastUsed != null && aLastUsed < bLastUsed) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
if (aLastUsed != null && bLastUsed == null) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bLastUsed != null && aLastUsed != null && aLastUsed > bLastUsed) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (bLastUsed != null && aLastUsed == null) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static sortCiphersByLastUsedThenName(a: any, b: any): number {
|
|
||||||
const result = CipherService.sortCiphersByLastUsed(a, b);
|
|
||||||
if (result !== 0) {
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
const nameA = (a.name + '_' + a.username).toUpperCase();
|
|
||||||
const nameB = (b.name + '_' + b.username).toUpperCase();
|
|
||||||
|
|
||||||
if (nameA < nameB) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (nameA > nameB) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
decryptedCipherCache: CipherView[];
|
decryptedCipherCache: CipherView[];
|
||||||
|
|
||||||
constructor(private cryptoService: CryptoService, private userService: UserService,
|
constructor(private cryptoService: CryptoService, private userService: UserService,
|
||||||
@ -252,7 +212,7 @@ export class CipherService implements CipherServiceAbstraction {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const sortedCiphers = ciphers.sort(CipherService.sortCiphersByLastUsed);
|
const sortedCiphers = ciphers.sort(this.sortCiphersByLastUsed);
|
||||||
return sortedCiphers[0];
|
return sortedCiphers[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -437,20 +397,60 @@ export class CipherService implements CipherServiceAbstraction {
|
|||||||
await this.deleteAttachment(id, attachmentId);
|
await this.deleteAttachment(id, attachmentId);
|
||||||
}
|
}
|
||||||
|
|
||||||
sortCiphersByLastUsed(a: any, b: any): number {
|
sortCiphersByLastUsed(a: CipherView, b: CipherView): number {
|
||||||
return CipherService.sortCiphersByLastUsed(a, b);
|
const aLastUsed = a.localData && a.localData.lastUsedDate ? a.localData.lastUsedDate as number : null;
|
||||||
|
const bLastUsed = b.localData && b.localData.lastUsedDate ? b.localData.lastUsedDate as number : null;
|
||||||
|
|
||||||
|
if (aLastUsed != null && bLastUsed != null && aLastUsed < bLastUsed) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (aLastUsed != null && bLastUsed == null) {
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
sortCiphersByLastUsedThenName(a: any, b: any): number {
|
if (bLastUsed != null && aLastUsed != null && aLastUsed > bLastUsed) {
|
||||||
return CipherService.sortCiphersByLastUsedThenName(a, b);
|
return -1;
|
||||||
|
}
|
||||||
|
if (bLastUsed != null && aLastUsed == null) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
sortCiphersByLastUsedThenName(a: CipherView, b: CipherView): number {
|
||||||
|
const result = this.sortCiphersByLastUsed(a, b);
|
||||||
|
if (result !== 0) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.getLocaleSortingFunction()(a, b);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Helpers
|
// Helpers
|
||||||
|
|
||||||
private getLocaleSortingFunction(): (a: CipherView, b: CipherView) => number {
|
private getLocaleSortingFunction(): (a: CipherView, b: CipherView) => number {
|
||||||
return (a, b) => {
|
return (a, b) => {
|
||||||
return this.i18nService.collator ? this.i18nService.collator.compare(a.name, b.name) :
|
let aName = a.name;
|
||||||
a.name.localeCompare(b.name);
|
let bName = b.name;
|
||||||
|
|
||||||
|
let result = this.i18nService.collator ? this.i18nService.collator.compare(aName, bName) :
|
||||||
|
aName.localeCompare(bName);
|
||||||
|
|
||||||
|
if (result !== 0 || a.type !== CipherType.Login || b.type !== CipherType.Login) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (a.login.username != null) {
|
||||||
|
aName += a.login.username;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (b.login.username != null) {
|
||||||
|
bName += b.login.username;
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.i18nService.collator ? this.i18nService.collator.compare(aName, bName) :
|
||||||
|
aName.localeCompare(bName);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user