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

41 lines
885 B
TypeScript
Raw Normal View History

import { LoginUriView } from './loginUriView';
2018-01-24 17:33:15 +01:00
import { View } from './view';
import { Login } from '../domain/login';
2018-01-24 17:33:15 +01:00
export class LoginView implements View {
username: string;
2018-03-06 13:44:32 +01:00
password: string;
passwordRevisionDate?: Date;
2018-01-24 17:33:15 +01:00
totp: string;
uris: LoginUriView[];
2018-01-24 17:33:15 +01:00
constructor(l?: Login) {
if (!l) {
return;
}
this.passwordRevisionDate = l.passwordRevisionDate;
2018-01-24 17:33:15 +01:00
}
get uri(): string {
return this.hasUris ? this.uris[0].uri : null;
2018-01-24 17:33:15 +01:00
}
2018-01-24 22:58:34 +01:00
get maskedPassword(): string {
2018-03-06 13:44:32 +01:00
return this.password != null ? '••••••••' : null;
2018-01-24 22:58:34 +01:00
}
get subTitle(): string {
return this.username;
}
2018-01-25 05:27:04 +01:00
get canLaunch(): boolean {
return this.hasUris && this.uris[0].canLaunch;
2018-01-25 05:27:04 +01:00
}
get hasUris(): boolean {
return this.uris != null && this.uris.length > 0;
2018-01-25 05:27:04 +01:00
}
2018-01-24 17:33:15 +01:00
}