18 lines
591 B
TypeScript
18 lines
591 B
TypeScript
import { StateGrabber } from './StateGrabber';
|
|
import { grabActiveVillageId, grabResourcesPerformance } from '../Page/VillageBlock';
|
|
import { VillageState } from './VillageState';
|
|
import { parseLocation } from '../utils';
|
|
|
|
export class ResourcePerformanceGrabber extends StateGrabber {
|
|
grab(): void {
|
|
const p = parseLocation();
|
|
if (p.pathname !== '/dorf1.php') {
|
|
return;
|
|
}
|
|
|
|
const villageId = grabActiveVillageId();
|
|
const state = new VillageState(villageId);
|
|
state.storeResourcesPerformance(grabResourcesPerformance());
|
|
}
|
|
}
|