2022-02-27 03:07:39 +01:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { getJsonSchema } from '@/services/chart/core.js';
|
|
|
|
import { activeUsersChart } from '@/services/chart/index.js';
|
2019-01-17 09:16:08 +01:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['charts', 'users'],
|
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
res: getJsonSchema(activeUsersChart.schema),
|
|
|
|
} as const;
|
2020-03-06 17:04:36 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01: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 03:20:58 +01:00
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
required: ['span'],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-01-17 09:16:08 +01:00
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps) => {
|
|
|
|
return await activeUsersChart.getChart(ps.span, ps.limit, ps.offset ? new Date(ps.offset) : null);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|