2023-09-06 09:13:16 +00:00
|
|
|
import type { mastodon } from 'masto'
|
|
|
|
|
2022-11-23 13:06:27 +00:00
|
|
|
export const APP_NAME = 'Elk'
|
2022-11-15 11:54:07 +00:00
|
|
|
|
2022-11-25 14:01:28 +00:00
|
|
|
export const DEFAULT_POST_CHARS_LIMIT = 500
|
2023-01-22 20:18:03 +00:00
|
|
|
export const DEFAULT_FONT_SIZE = '15px'
|
2022-11-23 13:06:27 +00:00
|
|
|
|
2023-02-06 22:22:56 +00:00
|
|
|
export const ELK_PAGE_LIFECYCLE_FROZEN = 'elk-frozen'
|
|
|
|
|
2022-11-23 13:06:27 +00:00
|
|
|
export const STORAGE_KEY_DRAFTS = 'elk-drafts'
|
|
|
|
export const STORAGE_KEY_USERS = 'elk-users'
|
2022-11-25 14:21:07 +00:00
|
|
|
export const STORAGE_KEY_SERVERS = 'elk-servers'
|
2023-01-15 09:21:03 +00:00
|
|
|
export const STORAGE_KEY_NODES = 'elk-nodes'
|
2023-01-14 09:34:53 +00:00
|
|
|
export const STORAGE_KEY_CURRENT_USER_HANDLE = 'elk-current-user-handle'
|
2022-11-23 13:06:27 +00:00
|
|
|
export const STORAGE_KEY_NOTIFY_TAB = 'elk-notify-tab'
|
2022-11-24 02:38:14 +00:00
|
|
|
export const STORAGE_KEY_FIRST_VISIT = 'elk-first-visit'
|
2023-01-06 17:39:37 +00:00
|
|
|
export const STORAGE_KEY_SETTINGS = 'elk-settings'
|
2022-12-23 22:56:16 +00:00
|
|
|
export const STORAGE_KEY_CUSTOM_EMOJIS = 'elk-custom-emojis'
|
2022-12-11 10:52:36 +00:00
|
|
|
export const STORAGE_KEY_HIDE_EXPLORE_POSTS_TIPS = 'elk-hide-explore-posts-tips'
|
|
|
|
export const STORAGE_KEY_HIDE_EXPLORE_NEWS_TIPS = 'elk-hide-explore-news-tips'
|
|
|
|
export const STORAGE_KEY_HIDE_EXPLORE_TAGS_TIPS = 'elk-hide-explore-tags-tips'
|
2022-12-17 23:29:16 +00:00
|
|
|
export const STORAGE_KEY_NOTIFICATION = 'elk-notification'
|
|
|
|
export const STORAGE_KEY_NOTIFICATION_POLICY = 'elk-notification-policy'
|
2023-01-26 20:30:39 +00:00
|
|
|
export const STORAGE_KEY_PWA_HIDE_INSTALL = 'elk-pwa-hide-install'
|
2024-03-07 14:33:25 +00:00
|
|
|
export const STORAGE_KEY_LAST_ACCESSED_NOTIFICATION_ROUTE = 'elk-last-accessed-notification-route'
|
|
|
|
export const STORAGE_KEY_LAST_ACCESSED_EXPLORE_ROUTE = 'elk-last-accessed-explore-route'
|
2022-12-01 22:59:08 +00:00
|
|
|
|
|
|
|
export const HANDLED_MASTO_URLS = /^(https?:\/\/)?([\w\d-]+\.)+\w+\/(@[@\w\d-\.]+)(\/objects)?(\/\d+)?$/
|
2023-09-06 09:13:16 +00:00
|
|
|
|
|
|
|
export const NOTIFICATION_FILTER_TYPES: mastodon.v1.NotificationType[] = ['status', 'reblog', 'follow', 'follow_request', 'favourite', 'poll', 'update', 'admin.sign_up', 'admin.report']
|
2024-03-07 19:15:35 +00:00
|
|
|
|
|
|
|
export const THEME_COLORS = {
|
|
|
|
themeDark: '#111111',
|
|
|
|
themeLight: '#fafafa',
|
|
|
|
backgroundDark: '#fafafa',
|
|
|
|
backgroundLight: '#111111',
|
|
|
|
} as const
|