bitwarden-estensione-browser/src/models/view/cipherView.ts

69 lines
1.8 KiB
TypeScript
Raw Normal View History

2018-02-19 18:33:32 +01:00
import { CipherType } from '../../enums';
2018-01-24 17:33:15 +01:00
2018-02-19 18:33:32 +01:00
import { Cipher } from '../domain';
2018-01-24 17:33:15 +01:00
import { AttachmentView } from './attachmentView';
import { CardView } from './cardView';
import { FieldView } from './fieldView';
import { IdentityView } from './identityView';
import { LoginView } from './loginView';
import { SecureNoteView } from './secureNoteView';
import { View } from './view';
export class CipherView implements View {
id: string;
organizationId: string;
folderId: string;
name: string;
notes: string;
type: CipherType;
favorite: boolean;
localData: any;
login: LoginView;
identity: IdentityView;
card: CardView;
secureNote: SecureNoteView;
attachments: AttachmentView[];
fields: FieldView[];
collectionIds: string[];
2018-01-24 19:27:32 +01:00
constructor(c?: Cipher) {
if (!c) {
return;
}
2018-01-24 17:33:15 +01:00
this.id = c.id;
this.organizationId = c.organizationId;
this.folderId = c.folderId;
this.favorite = c.favorite;
this.type = c.type;
this.localData = c.localData;
this.collectionIds = c.collectionIds;
}
get subTitle(): string {
2018-01-24 22:58:34 +01:00
switch (this.type) {
case CipherType.Login:
return this.login.subTitle;
case CipherType.SecureNote:
return this.secureNote.subTitle;
case CipherType.Card:
return this.card.subTitle;
case CipherType.Identity:
return this.identity.subTitle;
default:
break;
2018-01-24 17:33:15 +01:00
}
2018-01-24 22:58:34 +01:00
return null;
2018-01-24 17:33:15 +01:00
}
2018-01-25 05:27:04 +01:00
get hasAttachments(): boolean {
return this.attachments && this.attachments.length > 0;
}
get hasFields(): boolean {
return this.fields && this.fields.length > 0;
}
2018-01-24 17:33:15 +01:00
}