31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import { statusSchema, type ScheduledStatus } from 'pl-api';
|
|
import * as v from 'valibot';
|
|
|
|
import { Entities } from 'pl-fe/entity-store/entities';
|
|
import { normalizeStatus } from 'pl-fe/normalizers/status';
|
|
|
|
import type { RootState } from 'pl-fe/store';
|
|
|
|
const buildStatus = (state: RootState, scheduledStatus: ScheduledStatus) => {
|
|
const me = state.me as string;
|
|
const account = state.entities[Entities.ACCOUNTS]?.store[me];
|
|
|
|
const status = v.parse(statusSchema, {
|
|
account,
|
|
content: scheduledStatus.params.text?.replace(new RegExp('\n', 'g'), '<br>'), /* eslint-disable-line no-control-regex */
|
|
created_at: scheduledStatus.params.scheduled_at,
|
|
id: scheduledStatus.id,
|
|
in_reply_to_id: scheduledStatus.params.in_reply_to_id,
|
|
media_attachments: scheduledStatus.media_attachments,
|
|
poll: scheduledStatus.params.poll,
|
|
sensitive: scheduledStatus.params.sensitive,
|
|
uri: `/scheduled_statuses/${scheduledStatus.id}`,
|
|
url: `/scheduled_statuses/${scheduledStatus.id}`,
|
|
visibility: scheduledStatus.params.visibility,
|
|
});
|
|
|
|
return normalizeStatus(status);
|
|
};
|
|
|
|
export { buildStatus };
|