1
0
mirror of https://github.com/mgerb/ps-launcher synced 2026-01-09 01:52:57 +00:00
Files
ps-launcher/app/state/AppState.ts
2017-10-26 19:39:11 -05:00

120 lines
3.1 KiB
TypeScript

import { remote } from 'electron';
import * as _ from 'lodash';
import { action, computed, observable, runInAction } from 'mobx';
import fs from 'fs';
import { persistentStateSeed } from './persistent-state-seed';
export interface ExpansionType {
name: string;
servers: ServerType[];
directory?: string;
selectedServerIndex?: number;
}
export interface ServerType {
name: string;
realmlist: string;
website: string;
}
export class AppState {
// read only app data
private readonly appPath: string = remote.app.getPath('appData') + '/' + remote.app.getName();
private readonly persistentFilePath: string = this.appPath + '/app-state.json';
private readonly appVersion: string = VERSION;
@observable public expansions: { [key: string]: ExpansionType };
@observable public isBootstrapped: boolean = false;
@observable public selectedExpKey: string = 'vanilla';
constructor() {
this.bootstrap();
}
@computed
public get selectedExpansion(): ExpansionType {
return _.get(this.expansions, `[${this.selectedExpKey}]`);
}
@computed
public get selectedServer(): ServerType {
if (this.selectedExpansion.servers.length < 1) {
return null;
}
const index: number = this.selectedExpansion.selectedServerIndex;
return this.selectedExpansion.servers[index];
}
@action
public setSelectedServerIndex(index: number): void {
this.selectedExpansion.selectedServerIndex = index;
this.persistState();
}
@action
public setSelectedExpansion(exp: string): void {
this.selectedExpKey = exp;
this.persistState();
}
@action
public setDirectory(dir: string): void {
this.selectedExpansion.directory = dir;
this.persistState();
}
// bootstrap application
// creates directory and persistent store in appData
@action
private bootstrap(): void {
if (!fs.statSync(this.appPath).isDirectory()) {
fs.mkdirSync(this.appPath);
}
fs.readFile(this.persistentFilePath, (err, data) => {
runInAction(() => {
// create file if not exists
if (err) {
this.expansions = persistentStateSeed();
this.isBootstrapped = true;
this.persistState();
} else {
// TODO: future note - grab app version here and update
// any persisted state accordingly after app has been updated
const storedData = JSON.parse(data.toString()) as any;
this.expansions = storedData.expansions;
this.selectedExpKey = storedData.selectedExpKey;
this.isBootstrapped = true;
}
});
});
}
// save state of app to file in app data
private persistState(): Promise<void> {
// select what we want to persist
const { appVersion, expansions, selectedExpKey } = this;
// create new object of what we want to persist
const persistedState = {
appVersion,
expansions,
selectedExpKey,
};
// write our new object to a file
return new Promise((resolve, reject) => {
fs.writeFile(this.persistentFilePath, JSON.stringify(persistedState, null, 2), {}, err => {
err ? reject(err) : resolve();
});
});
}
}
export default new AppState();