2023-01-08 09:21:09 +03:00
|
|
|
import type { mastodon } from 'masto'
|
2023-01-04 13:21:18 +03:00
|
|
|
import type { MarkNonNullable, Mutable } from './utils'
|
2022-11-15 18:48:23 +03: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 23:51:52 +03:00
|
|
|
token?: string
|
2023-01-08 09:21:09 +03:00
|
|
|
account: mastodon.v1.AccountCredentials
|
2022-12-18 02:29:16 +03:00
|
|
|
vapidKey?: string
|
2023-01-08 09:21:09 +03:00
|
|
|
pushSubscription?: mastodon.v1.WebPushSubscription
|
2022-11-15 18:48:23 +03:00
|
|
|
}
|
2022-11-16 19:11:08 +03:00
|
|
|
|
2022-11-17 10:35:42 +03:00
|
|
|
export type PaginatorState = 'idle' | 'loading' | 'done' | 'error'
|
2022-11-21 09:55:31 +03:00
|
|
|
|
2022-11-30 03:47:54 +03:00
|
|
|
export interface GroupedNotifications {
|
|
|
|
id: string
|
2023-01-09 15:23:15 +03:00
|
|
|
type: 'grouped-follow'
|
2023-01-08 09:21:09 +03:00
|
|
|
items: mastodon.v1.Notification[]
|
2022-11-30 03:47:54 +03:00
|
|
|
}
|
2022-11-30 07:50:29 +03:00
|
|
|
|
2022-12-12 01:40:40 +03:00
|
|
|
export interface GroupedAccountLike {
|
2023-01-08 09:21:09 +03:00
|
|
|
account: mastodon.v1.Account
|
|
|
|
favourite?: mastodon.v1.Notification
|
|
|
|
reblog?: mastodon.v1.Notification
|
2022-12-12 01:40:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface GroupedLikeNotifications {
|
|
|
|
id: string
|
|
|
|
type: 'grouped-reblogs-and-favourites'
|
2023-01-08 09:21:09 +03:00
|
|
|
status: mastodon.v1.Status
|
2022-12-12 01:40:40 +03:00
|
|
|
likes: GroupedAccountLike[]
|
|
|
|
}
|
|
|
|
|
2023-01-08 09:21:09 +03:00
|
|
|
export type NotificationSlot = GroupedNotifications | GroupedLikeNotifications | mastodon.v1.Notification
|
2022-12-12 01:40:40 +03:00
|
|
|
|
2022-11-30 07:50:29 +03:00
|
|
|
export type TranslateFn = ReturnType<typeof useI18n>['t']
|
2022-12-13 17:03:30 +03:00
|
|
|
|
|
|
|
export interface Draft {
|
2023-01-08 09:21:09 +03:00
|
|
|
editingStatus?: mastodon.v1.Status
|
2022-12-13 17:03:30 +03:00
|
|
|
initialText?: string
|
2023-01-08 09:21:09 +03:00
|
|
|
params: MarkNonNullable<Mutable<mastodon.v1.CreateStatusParams>, 'status' | 'language' | 'sensitive' | 'spoilerText' | 'visibility'>
|
|
|
|
attachments: mastodon.v1.MediaAttachment[]
|
2023-01-05 18:42:36 +03:00
|
|
|
lastUpdated: number
|
2023-01-13 03:33:04 +03:00
|
|
|
mentions?: string[]
|
2022-12-13 17:03:30 +03:00
|
|
|
}
|
2023-01-13 03:33:04 +03:00
|
|
|
|
2022-12-13 17:03:30 +03:00
|
|
|
export type DraftMap = Record<string, Draft>
|
2022-12-26 22:33:19 +03:00
|
|
|
|
2023-01-07 11:55:01 +03:00
|
|
|
export interface ConfirmDialogLabel {
|
|
|
|
title: string
|
|
|
|
description?: string
|
|
|
|
confirm?: string
|
|
|
|
cancel?: string
|
|
|
|
}
|
|
|
|
export type ConfirmDialogChoice = 'confirm' | 'cancel'
|
|
|
|
|
2023-02-05 15:10:19 +03:00
|
|
|
export interface ErrorDialogData {
|
|
|
|
title: string
|
|
|
|
messages: string[]
|
|
|
|
close: string
|
|
|
|
}
|
|
|
|
|
2022-12-26 22:33:19 +03:00
|
|
|
export interface BuildInfo {
|
|
|
|
version: string
|
|
|
|
commit: string
|
|
|
|
time: number
|
|
|
|
branch: string
|
2023-01-06 19:20:12 +03:00
|
|
|
env: 'preview' | 'canary' | 'dev' | 'release'
|
2022-12-26 22:33:19 +03:00
|
|
|
}
|