phantasmal-world/src/stores/ServerMap.ts

21 lines
571 B
TypeScript
Raw Normal View History

import { computed } from "mobx";
import { Server } from "../domain";
2019-07-02 23:00:24 +08:00
import { application_store } from "./ApplicationStore";
import { EnumMap } from "../enums";
2019-07-02 23:00:24 +08:00
/**
* Map with a guaranteed value per server.
*/
export class ServerMap<V> extends EnumMap<Server, V> {
2019-07-02 23:00:24 +08:00
constructor(initial_value: (server: Server) => V) {
super(Server, initial_value);
}
/**
2019-07-02 23:00:24 +08:00
* @returns the value for the current server as set in {@link application_store}.
*/
@computed get current(): V {
2019-07-02 23:00:24 +08:00
return this.get(application_store.current_server);
}
}