mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-26 08:00:55 +00:00
* feat: async load data of top CPU and memory processes data * refactor: Update CPU and memory top toggle functionality and state management --------- Co-authored-by: 王贺 <wanghe@fit2cloud.com>
43 lines
1.5 KiB
Go
43 lines
1.5 KiB
Go
import http from '@/api';
|
|
import { Dashboard } from '../interface/dashboard';
|
|
|
|
export const loadOsInfo = () => {
|
|
return http.get<Dashboard.OsInfo>(`/dashboard/base/os`);
|
|
};
|
|
|
|
export const loadQuickOption = () => {
|
|
return http.get<Array<Dashboard.QuickJump>>(`/dashboard/quick/option`);
|
|
};
|
|
export const changeQuick = (quicks: Array<Dashboard.QuickJump>) => {
|
|
return http.post(`/dashboard/quick/change`, { quicks: quicks });
|
|
};
|
|
export const loadAppLauncher = () => {
|
|
return http.get<Array<Dashboard.AppLauncher>>(`/dashboard/app/launcher`);
|
|
};
|
|
export const loadAppLauncherOption = (filter: string) => {
|
|
return http.post<Array<Dashboard.AppLauncherOption>>(`/dashboard/app/launcher/option`, { filter: filter });
|
|
};
|
|
export const changeLauncherStatus = (key: string, val: string) => {
|
|
return http.post(`/dashboard/app/launcher/show`, { key: key, value: val });
|
|
};
|
|
|
|
export const loadBaseInfo = (ioOption: string, netOption: string) => {
|
|
return http.get<Dashboard.BaseInfo>(`/dashboard/base/${ioOption}/${netOption}`);
|
|
};
|
|
|
|
export const loadCurrentInfo = (ioOption: string, netOption: string) => {
|
|
return http.get<Dashboard.CurrentInfo>(`/dashboard/current/${ioOption}/${netOption}`);
|
|
};
|
|
|
|
export const loadTopCPU = () => {
|
|
return http.get<Array<Dashboard.Process>>(`/dashboard/current/top/cpu`);
|
|
};
|
|
|
|
export const loadTopMem = () => {
|
|
return http.get<Array<Dashboard.Process>>(`/dashboard/current/top/mem`);
|
|
};
|
|
|
|
export const systemRestart = (operation: string) => {
|
|
return http.post(`/dashboard/system/restart/${operation}`);
|
|
};
|