mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
24 lines
716 B
TypeScript
24 lines
716 B
TypeScript
import { action, observable } from "mobx";
|
|
import { KubeObjectStore } from "../../kube-object.store";
|
|
import { autobind } from "../../utils";
|
|
import { IPvcMetrics, PersistentVolumeClaim, pvcApi } from "../../api/endpoints";
|
|
import { apiManager } from "../../api/api-manager";
|
|
|
|
@autobind()
|
|
export class VolumeClaimStore extends KubeObjectStore<PersistentVolumeClaim> {
|
|
api = pvcApi
|
|
@observable metrics: IPvcMetrics = null;
|
|
|
|
@action
|
|
async loadMetrics(pvc: PersistentVolumeClaim) {
|
|
this.metrics = await pvcApi.getMetrics(pvc.getName(), pvc.getNs());
|
|
}
|
|
|
|
reset() {
|
|
this.metrics = null;
|
|
}
|
|
}
|
|
|
|
export const volumeClaimStore = new VolumeClaimStore();
|
|
apiManager.registerStore(pvcApi, volumeClaimStore);
|