2022-02-27 02:07:39 +00:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { getJsonSchema } from '@/services/chart/core.js';
|
|
|
|
import { apRequestChart } from '@/services/chart/index.js';
|
2018-10-21 00:20:11 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['charts'],
|
|
|
|
|
2022-02-19 05:05:32 +00:00
|
|
|
res: getJsonSchema(apRequestChart.schema),
|
|
|
|
} as const;
|
2020-03-06 16:04:36 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
span: { type: 'string', enum: ['day', 'hour'] },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 500, default: 30 },
|
|
|
|
offset: { type: 'integer', nullable: true, default: null },
|
2019-02-23 02:20:58 +00:00
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
required: ['span'],
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-10-21 00:20:11 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps) => {
|
|
|
|
return await apRequestChart.getChart(ps.span, ps.limit, ps.offset ? new Date(ps.offset) : null);
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|