2022-12-17 23:29:16 +00:00
|
|
|
import type { Account, AccountCredentials, Attachment, CreateStatusParams, Emoji, Instance, MastoClient, Notification, PushSubscription, Status } from 'masto'
|
2022-12-17 16:55:29 +00:00
|
|
|
import type { Ref } from 'vue'
|
2023-01-04 10:21:18 +00:00
|
|
|
import type { MarkNonNullable, Mutable } from './utils'
|
2022-11-15 15:48:23 +00:00
|
|
|
|
|
|
|
export interface AppInfo {
|
|
|
|
id: string
|
|
|
|
name: string
|
|
|
|
website: string | null
|
|
|
|
redirect_uri: string
|
|
|
|
client_id: string
|
|
|
|
client_secret: string
|
|
|
|
vapid_key: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UserLogin {
|
|
|
|
server: string
|
2022-11-29 20:51:52 +00:00
|
|
|
token?: string
|
2022-11-24 15:48:52 +00:00
|
|
|
account: AccountCredentials
|
2022-12-17 23:29:16 +00:00
|
|
|
vapidKey?: string
|
|
|
|
pushSubscription?: PushSubscription
|
2022-11-15 15:48:23 +00:00
|
|
|
}
|
2022-11-16 16:11:08 +00:00
|
|
|
|
2022-12-17 16:55:29 +00:00
|
|
|
export interface ElkMasto extends MastoClient {
|
|
|
|
loginTo (user?: Omit<UserLogin, 'account'> & { account?: AccountCredentials }): Promise<MastoClient>
|
|
|
|
loggedIn: Ref<boolean>
|
|
|
|
}
|
|
|
|
|
2022-11-17 07:35:42 +00:00
|
|
|
export type PaginatorState = 'idle' | 'loading' | 'done' | 'error'
|
2022-11-21 06:55:31 +00:00
|
|
|
|
|
|
|
export interface ServerInfo extends Instance {
|
|
|
|
server: string
|
|
|
|
timeUpdated: number
|
|
|
|
customEmojis?: Record<string, Emoji>
|
|
|
|
}
|
2022-11-30 00:47:54 +00:00
|
|
|
|
|
|
|
export interface GroupedNotifications {
|
|
|
|
id: string
|
2022-12-11 22:40:40 +00:00
|
|
|
type: Exclude<string, 'grouped-reblogs-and-favourites'>
|
2022-11-30 00:47:54 +00:00
|
|
|
items: Notification[]
|
|
|
|
}
|
2022-11-30 04:50:29 +00:00
|
|
|
|
2022-12-11 22:40:40 +00:00
|
|
|
export interface GroupedAccountLike {
|
|
|
|
account: Account
|
|
|
|
favourite?: Notification
|
|
|
|
reblog?: Notification
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface GroupedLikeNotifications {
|
|
|
|
id: string
|
|
|
|
type: 'grouped-reblogs-and-favourites'
|
|
|
|
status: Status
|
|
|
|
likes: GroupedAccountLike[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export type NotificationSlot = GroupedNotifications | GroupedLikeNotifications | Notification
|
|
|
|
|
2022-11-30 04:50:29 +00:00
|
|
|
export type TranslateFn = ReturnType<typeof useI18n>['t']
|
2022-12-13 14:03:30 +00:00
|
|
|
|
|
|
|
export interface Draft {
|
|
|
|
editingStatus?: Status
|
|
|
|
initialText?: string
|
2023-01-04 10:21:18 +00:00
|
|
|
params: MarkNonNullable<Mutable<CreateStatusParams>, 'status' | 'language' | 'sensitive' | 'spoilerText' | 'visibility'>
|
2022-12-13 14:03:30 +00:00
|
|
|
attachments: Attachment[]
|
|
|
|
}
|
|
|
|
export type DraftMap = Record<string, Draft>
|
2022-12-26 19:33:19 +00:00
|
|
|
|
|
|
|
export interface BuildInfo {
|
|
|
|
version: string
|
|
|
|
commit: string
|
|
|
|
time: number
|
|
|
|
branch: string
|
2023-01-04 13:26:30 +00:00
|
|
|
env: 'preview' | 'main' | 'dev' | 'release'
|
2022-12-26 19:33:19 +00:00
|
|
|
}
|
2022-12-28 01:06:54 +00:00
|
|
|
|
|
|
|
export type FontSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
|
|
|
|
export type ColorMode = 'light' | 'dark'
|