small mac change

This commit is contained in:
john liddell
2020-09-11 22:53:30 -05:00
parent b427c4a247
commit c2c1944269
3 changed files with 29 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
<div class="titlebar bg-purple-1 text-light" [ngClass]="{'titlebar-mac': isMac, 'titlebar-windows': isWindows }">
<div class="titlebar-drag-region"></div>
<div class="window-logo-container">
<div class="window-logo-container" *ngIf="electronService.isWin">
<img src="/assets/wowup_logo_512np.png" />
</div>
<div class="title-container">

View File

@@ -21,17 +21,15 @@ export class PreferenceStorageService {
return action(this._store);
}
public set(key: string, value: string) {
this._store.set(key, value);
public set(key: string, value: any) {
this._store.set(key, value.toString());
}
public get(key: string): Addon {
return this._store.get(key) as Addon;
}
public findByKey(key: string){
console.log(this._store)
return this._store.get(key);
public findByKey(key: string): string{
return this._store.get(key) as string;
}
}

View File

@@ -16,6 +16,7 @@ const WOWUP_RELEASE_CHANNEL_PREFERENCE_KEY = 'wowup_release_channel';
const DEFAULT_CHANNEL_PREFERENCE_KEY_SUFFIX = '_default_addon_channel';
const TELEMETRY_ENABLED_PREFERENCE_KEY = 'telemetry_enabled';
const TELEMETRY_PROMPT_SENT_PREFERENCE_KEY = 'telemetry_prompt_sent';
const LAST_SELECTED_WOW_CLIENT_TYPE_PREFERENCE_KEY = 'last_selected_client_type';
@Injectable({
providedIn: 'root'
@@ -45,7 +46,7 @@ export class WowUpService {
}
public set collapseToTray(value: boolean) {
this._preferenceStorageService.set(COLLAPSE_TO_TRAY_PREFERENCE_KEY, value.toString());
this._preferenceStorageService.set(COLLAPSE_TO_TRAY_PREFERENCE_KEY, value);
}
public get telemetryEnabled() {
@@ -54,17 +55,34 @@ export class WowUpService {
}
public set telemetryEnabled(value: boolean) {
this._preferenceStorageService.set(TELEMETRY_ENABLED_PREFERENCE_KEY, value.toString());
this._preferenceStorageService.set(TELEMETRY_ENABLED_PREFERENCE_KEY, value);
}
public get wowUpReleaseChannel() {
const preference = this._preferenceStorageService.findByKey(WOWUP_RELEASE_CHANNEL_PREFERENCE_KEY);
return parseInt(preference, 10) as WowUpReleaseChannelType;
}
public set wowUpReleaseChannel(releaseChannel: WowUpReleaseChannelType) {
this._preferenceStorageService.set(WOWUP_RELEASE_CHANNEL_PREFERENCE_KEY, releaseChannel);
}
public get lastSelectedClientType(): WowClientType {
const preference = this._preferenceStorageService.findByKey(LAST_SELECTED_WOW_CLIENT_TYPE_PREFERENCE_KEY);
const value = parseInt(preference, 10);
return isNaN(value)
? WowClientType.None
: value as WowClientType;
}
public set lastSelectedClientType(clientType: WowClientType) {
this._preferenceStorageService.set(LAST_SELECTED_WOW_CLIENT_TYPE_PREFERENCE_KEY, clientType);
}
public showLogsFolder() {
this._electronService.shell.openExternal(this.applicationLogsFolderPath, { activate: true });
}
public setCollapseToTray(enabled: boolean) {
this._preferenceStorageService.set(COLLAPSE_TO_TRAY_PREFERENCE_KEY, enabled.toString())
}
private setDefaultPreference(key: string, defaultValue: any) {
let pref = this._preferenceStorageService.findByKey(key);
if (!pref) {