2018-10-22 11:36:36 +03:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import define from '../../../define';
|
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import { convertLog } from '@/services/chart/core';
|
|
|
|
import { perUserReactionsChart } from '@/services/chart/index';
|
2018-10-22 11:36:36 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['charts', 'users', 'reactions'],
|
|
|
|
|
2018-10-22 11:36:36 +03:00
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
span: {
|
|
|
|
validator: $.str.or(['day', 'hour']),
|
|
|
|
},
|
2018-10-22 11:36:36 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
limit: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num.range(1, 500),
|
2018-10-22 11:36:36 +03:00
|
|
|
default: 30,
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-10-22 11:36:36 +03:00
|
|
|
|
2020-03-06 18:04:36 +02:00
|
|
|
offset: {
|
2020-03-07 04:23:31 +02:00
|
|
|
validator: $.optional.nullable.num,
|
|
|
|
default: null,
|
2020-03-06 18:04:36 +02:00
|
|
|
},
|
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-02-23 04:20:58 +02:00
|
|
|
},
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
res: convertLog(perUserReactionsChart.schema),
|
2018-10-22 11:36:36 +03:00
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps) => {
|
2020-03-07 04:23:31 +02:00
|
|
|
return await perUserReactionsChart.getChart(ps.span as any, ps.limit!, ps.offset ? new Date(ps.offset) : null, ps.userId);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|