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