4de0fcd198
This reverts commit bf8e09b6c1
.
34 lines
547 B
TypeScript
34 lines
547 B
TypeScript
import { User } from './user'
|
|
|
|
export type Answer = {
|
|
id: string
|
|
number: number
|
|
contractId: string
|
|
createdTime: number
|
|
|
|
userId: string
|
|
username: string
|
|
name: string
|
|
avatarUrl?: string
|
|
|
|
text: string
|
|
}
|
|
|
|
export const getNoneAnswer = (contractId: string, creator: User) => {
|
|
const { username, name, avatarUrl } = creator
|
|
|
|
return {
|
|
id: '0',
|
|
number: 0,
|
|
contractId,
|
|
createdTime: Date.now(),
|
|
userId: creator.id,
|
|
username,
|
|
name,
|
|
avatarUrl,
|
|
text: 'None',
|
|
}
|
|
}
|
|
|
|
export const MAX_ANSWER_LENGTH = 240
|