2021-12-03 06:09:40 -07:00
|
|
|
import { computed, ref, reactive } from 'vue';
|
2022-06-20 02:38:49 -06:00
|
|
|
import { $i } from './account';
|
2021-11-11 10:02:25 -07:00
|
|
|
import { search } from '@/scripts/search';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { ui } from '@/config';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
2020-10-17 05:12:00 -06:00
|
|
|
|
2022-07-14 02:42:12 -06:00
|
|
|
export const navbarItemDef = reactive({
|
2020-10-17 05:12:00 -06:00
|
|
|
notifications: {
|
|
|
|
title: 'notifications',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-bell-bold ph-lg',
|
2020-12-18 18:55:52 -07:00
|
|
|
show: computed(() => $i != null),
|
|
|
|
indicated: computed(() => $i != null && $i.hasUnreadNotification),
|
2020-10-17 05:12:00 -06:00
|
|
|
to: '/my/notifications',
|
|
|
|
},
|
|
|
|
messaging: {
|
|
|
|
title: 'messaging',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-chats-teardrop-bold ph-lg',
|
2020-12-18 18:55:52 -07:00
|
|
|
show: computed(() => $i != null),
|
|
|
|
indicated: computed(() => $i != null && $i.hasUnreadMessagingMessage),
|
2020-11-02 18:43:50 -07:00
|
|
|
to: '/my/messaging',
|
2020-10-17 05:12:00 -06:00
|
|
|
},
|
|
|
|
drive: {
|
|
|
|
title: 'drive',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-cloud-bold ph-lg',
|
2020-12-18 18:55:52 -07:00
|
|
|
show: computed(() => $i != null),
|
2020-10-17 05:12:00 -06:00
|
|
|
to: '/my/drive',
|
|
|
|
},
|
|
|
|
followRequests: {
|
|
|
|
title: 'followRequests',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-hand-waving-bold ph-lg',
|
2020-12-18 18:55:52 -07:00
|
|
|
show: computed(() => $i != null && $i.isLocked),
|
|
|
|
indicated: computed(() => $i != null && $i.hasPendingReceivedFollowRequest),
|
2020-10-17 05:12:00 -06:00
|
|
|
to: '/my/follow-requests',
|
|
|
|
},
|
|
|
|
explore: {
|
|
|
|
title: 'explore',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-hash-bold ph-lg',
|
2020-10-17 05:12:00 -06:00
|
|
|
to: '/explore',
|
|
|
|
},
|
|
|
|
announcements: {
|
|
|
|
title: 'announcements',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-megaphone-simple-bold ph-lg',
|
2020-12-18 18:55:52 -07:00
|
|
|
indicated: computed(() => $i != null && $i.hasUnreadAnnouncement),
|
2020-10-17 05:12:00 -06:00
|
|
|
to: '/announcements',
|
|
|
|
},
|
|
|
|
search: {
|
|
|
|
title: 'search',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-magnifying-glass-bold ph-lg',
|
2020-10-17 05:12:00 -06:00
|
|
|
action: () => search(),
|
|
|
|
},
|
|
|
|
lists: {
|
|
|
|
title: 'lists',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-list-bullets-bold ph-lg',
|
2020-12-18 18:55:52 -07:00
|
|
|
show: computed(() => $i != null),
|
2022-07-07 02:28:13 -06:00
|
|
|
to: '/my/lists',
|
2020-10-17 05:12:00 -06:00
|
|
|
},
|
2022-06-29 19:53:40 -06:00
|
|
|
/*
|
2020-10-17 05:12:00 -06:00
|
|
|
groups: {
|
|
|
|
title: 'groups',
|
2022-11-07 13:29:56 -07:00
|
|
|
icon: 'ph-users-three-bold ph-lg',
|
2020-12-18 18:55:52 -07:00
|
|
|
show: computed(() => $i != null),
|
2020-10-17 05:12:00 -06:00
|
|
|
to: '/my/groups',
|
|
|
|
},
|
2022-06-29 19:53:40 -06:00
|
|
|
*/
|
2020-10-17 05:12:00 -06:00
|
|
|
antennas: {
|
|
|
|
title: 'antennas',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-flying-saucer-bold ph-lg',
|
2020-12-18 18:55:52 -07:00
|
|
|
show: computed(() => $i != null),
|
2022-07-07 02:28:13 -06:00
|
|
|
to: '/my/antennas',
|
2020-10-17 05:12:00 -06:00
|
|
|
},
|
|
|
|
favorites: {
|
|
|
|
title: 'favorites',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-star-bold ph-lg',
|
2020-12-18 18:55:52 -07:00
|
|
|
show: computed(() => $i != null),
|
2020-10-17 05:12:00 -06:00
|
|
|
to: '/my/favorites',
|
|
|
|
},
|
|
|
|
pages: {
|
|
|
|
title: 'pages',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-file-text-bold ph-lg',
|
2020-11-16 22:59:15 -07:00
|
|
|
to: '/pages',
|
2020-10-17 05:12:00 -06:00
|
|
|
},
|
2021-04-24 07:38:24 -06:00
|
|
|
gallery: {
|
|
|
|
title: 'gallery',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-image-square-bold ph-lg',
|
2021-04-24 07:38:24 -06:00
|
|
|
to: '/gallery',
|
|
|
|
},
|
2020-11-14 20:04:54 -07:00
|
|
|
clips: {
|
|
|
|
title: 'clip',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-paperclip-bold ph-lg',
|
2020-12-18 18:55:52 -07:00
|
|
|
show: computed(() => $i != null),
|
2020-11-14 20:04:54 -07:00
|
|
|
to: '/my/clips',
|
|
|
|
},
|
2020-10-17 05:12:00 -06:00
|
|
|
channels: {
|
|
|
|
title: 'channel',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-television-bold ph-lg',
|
2020-10-17 05:12:00 -06:00
|
|
|
to: '/channels',
|
|
|
|
},
|
2022-09-13 17:53:34 -06:00
|
|
|
groups: {
|
|
|
|
title: 'groups',
|
2022-11-07 13:29:56 -07:00
|
|
|
icon: 'ph-users-three-bold ph-lg',
|
2022-09-13 17:53:34 -06:00
|
|
|
to: '/my/groups',
|
|
|
|
},
|
2020-11-03 01:00:47 -07:00
|
|
|
ui: {
|
|
|
|
title: 'switchUi',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-layout-bold ph-lg',
|
2020-11-03 01:00:47 -07:00
|
|
|
action: (ev) => {
|
2021-08-07 21:19:10 -06:00
|
|
|
os.popupMenu([{
|
2022-01-27 19:39:49 -07:00
|
|
|
text: i18n.ts.default,
|
2021-10-23 23:50:00 -06:00
|
|
|
active: ui === 'default' || ui === null,
|
2020-11-03 01:00:47 -07:00
|
|
|
action: () => {
|
|
|
|
localStorage.setItem('ui', 'default');
|
2021-02-17 05:36:56 -07:00
|
|
|
unisonReload();
|
2022-06-20 02:38:49 -06:00
|
|
|
},
|
2020-11-03 01:00:47 -07:00
|
|
|
}, {
|
2022-01-27 19:39:49 -07:00
|
|
|
text: i18n.ts.deck,
|
2021-10-23 23:50:00 -06:00
|
|
|
active: ui === 'deck',
|
2020-11-03 01:00:47 -07:00
|
|
|
action: () => {
|
|
|
|
localStorage.setItem('ui', 'deck');
|
2021-02-17 05:36:56 -07:00
|
|
|
unisonReload();
|
2022-06-20 02:38:49 -06:00
|
|
|
},
|
2021-04-09 21:40:50 -06:00
|
|
|
}, {
|
2022-01-27 19:39:49 -07:00
|
|
|
text: i18n.ts.classic,
|
2021-10-23 23:50:00 -06:00
|
|
|
active: ui === 'classic',
|
2021-04-09 21:40:50 -06:00
|
|
|
action: () => {
|
2021-10-23 23:50:00 -06:00
|
|
|
localStorage.setItem('ui', 'classic');
|
2021-04-09 21:40:50 -06:00
|
|
|
unisonReload();
|
2022-06-20 02:38:49 -06:00
|
|
|
},
|
|
|
|
}], ev.currentTarget ?? ev.target);
|
2020-10-17 05:12:00 -06:00
|
|
|
},
|
|
|
|
},
|
2022-07-05 04:29:44 -06:00
|
|
|
reload: {
|
|
|
|
title: 'reload',
|
2022-11-06 19:49:47 -07:00
|
|
|
icon: 'ph-arrows-clockwise-bold ph-lg',
|
2022-07-05 04:29:44 -06:00
|
|
|
action: (ev) => {
|
|
|
|
location.reload();
|
|
|
|
},
|
|
|
|
},
|
2021-12-03 06:09:40 -07:00
|
|
|
});
|