mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
Update HTML and TS scripts for UI scaling
This commit is contained in:
parent
eb5ad7c6dc
commit
674c583881
@ -1,4 +1,4 @@
|
|||||||
<div class="container page-content">
|
<div class="container page-content" [ngClass]="{'full-width': this.scaleUIWidth}">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<div class="card" *ngIf="organization">
|
<div class="card" *ngIf="organization">
|
||||||
|
@ -5,6 +5,7 @@ import {
|
|||||||
import { ActivatedRoute } from '@angular/router';
|
import { ActivatedRoute } from '@angular/router';
|
||||||
|
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||||
|
|
||||||
import { Organization } from 'jslib/models/domain/organization';
|
import { Organization } from 'jslib/models/domain/organization';
|
||||||
|
|
||||||
@ -17,11 +18,13 @@ export class ManageComponent implements OnInit {
|
|||||||
accessPolicies = false;
|
accessPolicies = false;
|
||||||
accessGroups = false;
|
accessGroups = false;
|
||||||
accessEvents = false;
|
accessEvents = false;
|
||||||
|
scaleUIWidth: boolean = false;
|
||||||
|
|
||||||
constructor(private route: ActivatedRoute, private userService: UserService) { }
|
constructor(private route: ActivatedRoute, private userService: UserService, private storageService: StorageService) { }
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.route.parent.params.subscribe(async (params) => {
|
this.route.parent.params.subscribe(async (params) => {
|
||||||
|
this.scaleUIWidth = await this.storageService.get<boolean>('enableUIScaling');
|
||||||
this.organization = await this.userService.getOrganization(params.organizationId);
|
this.organization = await this.userService.getOrganization(params.organizationId);
|
||||||
this.accessPolicies = this.organization.usePolicies;
|
this.accessPolicies = this.organization.usePolicies;
|
||||||
this.accessEvents = this.organization.useEvents;
|
this.accessEvents = this.organization.useEvents;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="container page-content">
|
<div class="container page-content" [ngClass]="{'full-width': this.scaleUIWidth}">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
@ -3,6 +3,7 @@ import { ActivatedRoute } from '@angular/router';
|
|||||||
|
|
||||||
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-org-settings',
|
selector: 'app-org-settings',
|
||||||
@ -11,12 +12,14 @@ import { UserService } from 'jslib/abstractions/user.service';
|
|||||||
export class SettingsComponent {
|
export class SettingsComponent {
|
||||||
access2fa = false;
|
access2fa = false;
|
||||||
selfHosted: boolean;
|
selfHosted: boolean;
|
||||||
|
scaleUIWidth: boolean = false;
|
||||||
|
|
||||||
constructor(private route: ActivatedRoute, private userService: UserService,
|
constructor(private route: ActivatedRoute, private userService: UserService,
|
||||||
private platformUtilsService: PlatformUtilsService) { }
|
private platformUtilsService: PlatformUtilsService, private storageService: StorageService) { }
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.route.parent.params.subscribe(async (params) => {
|
this.route.parent.params.subscribe(async (params) => {
|
||||||
|
this.scaleUIWidth = await this.storageService.get<boolean>('enableUIScaling');
|
||||||
this.selfHosted = await this.platformUtilsService.isSelfHost();
|
this.selfHosted = await this.platformUtilsService.isSelfHost();
|
||||||
const organization = await this.userService.getOrganization(params.organizationId);
|
const organization = await this.userService.getOrganization(params.organizationId);
|
||||||
this.access2fa = organization.use2fa;
|
this.access2fa = organization.use2fa;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="container page-content">
|
<div class="container page-content" [ngClass]="{'full-width': this.scaleUIWidth}">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<div class="card mb-4">
|
<div class="card mb-4">
|
||||||
|
@ -5,6 +5,7 @@ import { Organization } from 'jslib/models/domain/organization';
|
|||||||
|
|
||||||
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-org-tools',
|
selector: 'app-org-tools',
|
||||||
@ -13,12 +14,14 @@ import { UserService } from 'jslib/abstractions/user.service';
|
|||||||
export class ToolsComponent {
|
export class ToolsComponent {
|
||||||
organization: Organization;
|
organization: Organization;
|
||||||
accessReports = false;
|
accessReports = false;
|
||||||
|
scaleUIWidth: boolean = false;
|
||||||
|
|
||||||
constructor(private route: ActivatedRoute, private userService: UserService,
|
constructor(private route: ActivatedRoute, private userService: UserService,
|
||||||
private messagingService: MessagingService) { }
|
private messagingService: MessagingService, private storageService: StorageService) { }
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.route.parent.params.subscribe(async (params) => {
|
this.route.parent.params.subscribe(async (params) => {
|
||||||
|
this.scaleUIWidth = await this.storageService.get<boolean>('enableUIScaling');
|
||||||
this.organization = await this.userService.getOrganization(params.organizationId);
|
this.organization = await this.userService.getOrganization(params.organizationId);
|
||||||
// TODO: Maybe we want to just make sure they are not on a free plan? Just compare useTotp for now
|
// TODO: Maybe we want to just make sure they are not on a free plan? Just compare useTotp for now
|
||||||
// since all paid plans include useTotp
|
// since all paid plans include useTotp
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="container page-content">
|
<div class="container page-content" [ngClass]="{'full-width': this.scaleUIWidth}">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<app-org-vault-groupings [showFolders]="false" [showFavorites]="false" [showTrash]="true"
|
<app-org-vault-groupings [showFolders]="false" [showFavorites]="false" [showTrash]="true"
|
||||||
|
@ -19,6 +19,7 @@ import { SyncService } from 'jslib/abstractions/sync.service';
|
|||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
|
||||||
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
|
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
|
||||||
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||||
|
|
||||||
import { Organization } from 'jslib/models/domain/organization';
|
import { Organization } from 'jslib/models/domain/organization';
|
||||||
import { CipherView } from 'jslib/models/view/cipherView';
|
import { CipherView } from 'jslib/models/view/cipherView';
|
||||||
@ -52,6 +53,7 @@ export class VaultComponent implements OnInit, OnDestroy {
|
|||||||
collectionId: string = null;
|
collectionId: string = null;
|
||||||
type: CipherType = null;
|
type: CipherType = null;
|
||||||
deleted: boolean = false;
|
deleted: boolean = false;
|
||||||
|
scaleUIWidth: boolean = false;
|
||||||
|
|
||||||
private modal: ModalComponent = null;
|
private modal: ModalComponent = null;
|
||||||
|
|
||||||
@ -59,10 +61,11 @@ export class VaultComponent implements OnInit, OnDestroy {
|
|||||||
private router: Router, private changeDetectorRef: ChangeDetectorRef,
|
private router: Router, private changeDetectorRef: ChangeDetectorRef,
|
||||||
private syncService: SyncService, private i18nService: I18nService,
|
private syncService: SyncService, private i18nService: I18nService,
|
||||||
private componentFactoryResolver: ComponentFactoryResolver, private messagingService: MessagingService,
|
private componentFactoryResolver: ComponentFactoryResolver, private messagingService: MessagingService,
|
||||||
private broadcasterService: BroadcasterService, private ngZone: NgZone) { }
|
private broadcasterService: BroadcasterService, private storageService: StorageService, private ngZone: NgZone) { }
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
const queryParams = this.route.parent.params.subscribe(async (params) => {
|
const queryParams = this.route.parent.params.subscribe(async (params) => {
|
||||||
|
this.scaleUIWidth = await this.storageService.get<boolean>('enableUIScaling');
|
||||||
this.organization = await this.userService.getOrganization(params.organizationId);
|
this.organization = await this.userService.getOrganization(params.organizationId);
|
||||||
this.groupingsComponent.organization = this.organization;
|
this.groupingsComponent.organization = this.organization;
|
||||||
this.ciphersComponent.organization = this.organization;
|
this.ciphersComponent.organization = this.organization;
|
||||||
|
@ -25,6 +25,7 @@ export class OptionsComponent implements OnInit {
|
|||||||
vaultTimeoutAction: string = 'lock';
|
vaultTimeoutAction: string = 'lock';
|
||||||
disableIcons: boolean;
|
disableIcons: boolean;
|
||||||
enableGravatars: boolean;
|
enableGravatars: boolean;
|
||||||
|
enableUIScaling: boolean;
|
||||||
locale: string;
|
locale: string;
|
||||||
vaultTimeouts: any[];
|
vaultTimeouts: any[];
|
||||||
localeOptions: any[];
|
localeOptions: any[];
|
||||||
@ -66,6 +67,7 @@ export class OptionsComponent implements OnInit {
|
|||||||
this.vaultTimeoutAction = await this.storageService.get<string>(ConstantsService.vaultTimeoutActionKey);
|
this.vaultTimeoutAction = await this.storageService.get<string>(ConstantsService.vaultTimeoutActionKey);
|
||||||
this.disableIcons = await this.storageService.get<boolean>(ConstantsService.disableFaviconKey);
|
this.disableIcons = await this.storageService.get<boolean>(ConstantsService.disableFaviconKey);
|
||||||
this.enableGravatars = await this.storageService.get<boolean>('enableGravatars');
|
this.enableGravatars = await this.storageService.get<boolean>('enableGravatars');
|
||||||
|
this.enableUIScaling = await this.storageService.get<boolean>('enableUIScaling');
|
||||||
this.locale = this.startingLocale = await this.storageService.get<string>(ConstantsService.localeKey);
|
this.locale = this.startingLocale = await this.storageService.get<string>(ConstantsService.localeKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -76,6 +78,8 @@ export class OptionsComponent implements OnInit {
|
|||||||
await this.stateService.save(ConstantsService.disableFaviconKey, this.disableIcons);
|
await this.stateService.save(ConstantsService.disableFaviconKey, this.disableIcons);
|
||||||
await this.storageService.save('enableGravatars', this.enableGravatars);
|
await this.storageService.save('enableGravatars', this.enableGravatars);
|
||||||
await this.stateService.save('enableGravatars', this.enableGravatars);
|
await this.stateService.save('enableGravatars', this.enableGravatars);
|
||||||
|
await this.storageService.save('enableUIScaling', this.enableUIScaling);
|
||||||
|
await this.stateService.save('enableUIScaling', this.enableUIScaling);
|
||||||
await this.storageService.save(ConstantsService.localeKey, this.locale);
|
await this.storageService.save(ConstantsService.localeKey, this.locale);
|
||||||
this.analytics.eventTrack.next({ action: 'Saved Options' });
|
this.analytics.eventTrack.next({ action: 'Saved Options' });
|
||||||
if (this.locale !== this.startingLocale) {
|
if (this.locale !== this.startingLocale) {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="container page-content">
|
<div class="container page-content" [ngClass]="{'full-width': this.scaleUIWidth}">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
@ -9,6 +9,7 @@ import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
|||||||
import { TokenService } from 'jslib/abstractions/token.service';
|
import { TokenService } from 'jslib/abstractions/token.service';
|
||||||
|
|
||||||
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
|
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
|
||||||
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||||
|
|
||||||
const BroadcasterSubscriptionId = 'SettingsComponent';
|
const BroadcasterSubscriptionId = 'SettingsComponent';
|
||||||
|
|
||||||
@ -19,11 +20,13 @@ const BroadcasterSubscriptionId = 'SettingsComponent';
|
|||||||
export class SettingsComponent implements OnInit, OnDestroy {
|
export class SettingsComponent implements OnInit, OnDestroy {
|
||||||
premium: boolean;
|
premium: boolean;
|
||||||
selfHosted: boolean;
|
selfHosted: boolean;
|
||||||
|
scaleUIWidth: boolean = false;
|
||||||
|
|
||||||
constructor(private tokenService: TokenService, private broadcasterService: BroadcasterService,
|
constructor(private tokenService: TokenService, private broadcasterService: BroadcasterService,
|
||||||
private ngZone: NgZone, private platformUtilsService: PlatformUtilsService) { }
|
private ngZone: NgZone, private platformUtilsService: PlatformUtilsService, private storageService: StorageService) { }
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
|
this.scaleUIWidth = await this.storageService.get<boolean>('enableUIScaling');
|
||||||
this.broadcasterService.subscribe(BroadcasterSubscriptionId, async (message: any) => {
|
this.broadcasterService.subscribe(BroadcasterSubscriptionId, async (message: any) => {
|
||||||
this.ngZone.run(async () => {
|
this.ngZone.run(async () => {
|
||||||
switch (message.command) {
|
switch (message.command) {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="container page-content">
|
<div class="container page-content" [ngClass]="{'full-width': this.scaleUIWidth}">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<div class="card mb-4">
|
<div class="card mb-4">
|
||||||
|
@ -5,6 +5,7 @@ import {
|
|||||||
|
|
||||||
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
import { MessagingService } from 'jslib/abstractions/messaging.service';
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-tools',
|
selector: 'app-tools',
|
||||||
@ -12,10 +13,12 @@ import { UserService } from 'jslib/abstractions/user.service';
|
|||||||
})
|
})
|
||||||
export class ToolsComponent implements OnInit {
|
export class ToolsComponent implements OnInit {
|
||||||
canAccessPremium = false;
|
canAccessPremium = false;
|
||||||
|
scaleUIWidth: boolean = false;
|
||||||
|
|
||||||
constructor(private userService: UserService, private messagingService: MessagingService) { }
|
constructor(private userService: UserService, private messagingService: MessagingService, private storageService: StorageService) { }
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
|
this.scaleUIWidth = await this.storageService.get<boolean>('enableUIScaling');
|
||||||
this.canAccessPremium = await this.userService.canAccessPremium();
|
this.canAccessPremium = await this.userService.canAccessPremium();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="container page-content">
|
<div class="container page-content" [ngClass]="{'full-width': this.scaleUIWidth}">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<app-vault-groupings (onAllClicked)="clearGroupingFilters()" (onFavoritesClicked)="filterFavorites()"
|
<app-vault-groupings (onAllClicked)="clearGroupingFilters()" (onFavoritesClicked)="filterFavorites()"
|
||||||
|
@ -42,6 +42,7 @@ import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
|||||||
import { SyncService } from 'jslib/abstractions/sync.service';
|
import { SyncService } from 'jslib/abstractions/sync.service';
|
||||||
import { TokenService } from 'jslib/abstractions/token.service';
|
import { TokenService } from 'jslib/abstractions/token.service';
|
||||||
import { UserService } from 'jslib/abstractions/user.service';
|
import { UserService } from 'jslib/abstractions/user.service';
|
||||||
|
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||||
|
|
||||||
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
|
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
|
||||||
|
|
||||||
@ -75,6 +76,7 @@ export class VaultComponent implements OnInit, OnDestroy {
|
|||||||
showUpdateKey = false;
|
showUpdateKey = false;
|
||||||
showPremiumCallout = false;
|
showPremiumCallout = false;
|
||||||
deleted: boolean = false;
|
deleted: boolean = false;
|
||||||
|
scaleUIWidth: boolean = false;
|
||||||
|
|
||||||
private modal: ModalComponent = null;
|
private modal: ModalComponent = null;
|
||||||
|
|
||||||
@ -84,9 +86,11 @@ export class VaultComponent implements OnInit, OnDestroy {
|
|||||||
private tokenService: TokenService, private cryptoService: CryptoService,
|
private tokenService: TokenService, private cryptoService: CryptoService,
|
||||||
private messagingService: MessagingService, private userService: UserService,
|
private messagingService: MessagingService, private userService: UserService,
|
||||||
private platformUtilsService: PlatformUtilsService, private toasterService: ToasterService,
|
private platformUtilsService: PlatformUtilsService, private toasterService: ToasterService,
|
||||||
private broadcasterService: BroadcasterService, private ngZone: NgZone) { }
|
private broadcasterService: BroadcasterService, private storageService: StorageService,
|
||||||
|
private ngZone: NgZone) { }
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
|
this.scaleUIWidth = await this.storageService.get<boolean>('enableUIScaling');
|
||||||
this.showVerifyEmail = !(await this.tokenService.getEmailVerified());
|
this.showVerifyEmail = !(await this.tokenService.getEmailVerified());
|
||||||
this.showBrowserOutdated = window.navigator.userAgent.indexOf('MSIE') !== -1;
|
this.showBrowserOutdated = window.navigator.userAgent.indexOf('MSIE') !== -1;
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ import { ConstantsService } from 'jslib/services';
|
|||||||
|
|
||||||
export class HtmlStorageService implements StorageService {
|
export class HtmlStorageService implements StorageService {
|
||||||
private localStorageKeys = new Set(['appId', 'anonymousAppId', 'rememberedEmail', 'passwordGenerationOptions',
|
private localStorageKeys = new Set(['appId', 'anonymousAppId', 'rememberedEmail', 'passwordGenerationOptions',
|
||||||
ConstantsService.disableFaviconKey, 'rememberEmail', 'enableGravatars', ConstantsService.localeKey,
|
ConstantsService.disableFaviconKey, 'rememberEmail', 'enableGravatars', 'enableUIScaling', ConstantsService.localeKey,
|
||||||
ConstantsService.autoConfirmFingerprints, ConstantsService.vaultTimeoutKey,
|
ConstantsService.autoConfirmFingerprints, ConstantsService.vaultTimeoutKey,
|
||||||
ConstantsService.vaultTimeoutActionKey]);
|
ConstantsService.vaultTimeoutActionKey]);
|
||||||
private localStorageStartsWithKeys = ['twoFactorToken_', ConstantsService.collapsedGroupingsKey + '_'];
|
private localStorageStartsWithKeys = ['twoFactorToken_', ConstantsService.collapsedGroupingsKey + '_'];
|
||||||
|
Loading…
Reference in New Issue
Block a user