mirror of
https://github.com/paricafe/misskey.git
synced 2025-03-13 12:09:17 -05:00
23 lines
656 B
TypeScript
23 lines
656 B
TypeScript
import config from '@/config/index';
|
|
import { User } from '@/models/entities/user';
|
|
import { Note } from '@/models/entities/note';
|
|
import { Poll } from '@/models/entities/poll';
|
|
|
|
export default async function renderQuestion(user: { id: User['id'] }, note: Note, poll: Poll) {
|
|
const question = {
|
|
type: 'Question',
|
|
id: `${config.url}/questions/${note.id}`,
|
|
actor: `${config.url}/users/${user.id}`,
|
|
content: note.text || '',
|
|
[poll.multiple ? 'anyOf' : 'oneOf']: poll.choices.map((text, i) => ({
|
|
name: text,
|
|
_misskey_votes: poll.votes[i],
|
|
replies: {
|
|
type: 'Collection',
|
|
totalItems: poll.votes[i]
|
|
}
|
|
}))
|
|
};
|
|
|
|
return question;
|
|
}
|