2019-09-02 20:41:46 +08:00
|
|
|
import { Persister } from "../../core/persistence";
|
2019-09-06 02:30:11 +08:00
|
|
|
import { Server } from "../../core/model";
|
2019-09-02 20:41:46 +08:00
|
|
|
import { HuntMethodModel } from "../model/HuntMethodModel";
|
|
|
|
import { Duration } from "luxon";
|
2019-07-24 20:31:49 +08:00
|
|
|
|
2019-07-24 22:44:17 +08:00
|
|
|
const METHOD_USER_TIMES_KEY = "HuntMethodStore.methodUserTimes";
|
|
|
|
|
2019-12-22 02:40:42 +08:00
|
|
|
export class HuntMethodPersister extends Persister {
|
2019-10-08 00:26:45 +08:00
|
|
|
persist_method_user_times(hunt_methods: readonly HuntMethodModel[], server: Server): void {
|
2019-07-24 20:31:49 +08:00
|
|
|
const user_times: PersistedUserTimes = {};
|
|
|
|
|
|
|
|
for (const method of hunt_methods) {
|
2019-09-02 20:41:46 +08:00
|
|
|
if (method.user_time.val != undefined) {
|
|
|
|
user_times[method.id] = method.user_time.val.as("hours");
|
2019-07-24 20:31:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-24 22:44:17 +08:00
|
|
|
this.persist_for_server(server, METHOD_USER_TIMES_KEY, user_times);
|
2019-07-24 20:31:49 +08:00
|
|
|
}
|
|
|
|
|
2019-10-08 00:26:45 +08:00
|
|
|
async load_method_user_times(
|
|
|
|
hunt_methods: readonly HuntMethodModel[],
|
|
|
|
server: Server,
|
|
|
|
): Promise<void> {
|
2019-07-24 20:31:49 +08:00
|
|
|
const user_times = await this.load_for_server<PersistedUserTimes>(
|
|
|
|
server,
|
2019-08-11 04:09:06 +08:00
|
|
|
METHOD_USER_TIMES_KEY,
|
2019-07-24 20:31:49 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
if (user_times) {
|
|
|
|
for (const method of hunt_methods) {
|
2019-09-02 20:41:46 +08:00
|
|
|
const hours = user_times[method.id];
|
|
|
|
method.set_user_time(
|
|
|
|
hours == undefined ? undefined : Duration.fromObject({ hours }),
|
|
|
|
);
|
2019-07-24 20:31:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type PersistedUserTimes = { [method_id: string]: number };
|