2023-02-16 15:09:41 +01:00
|
|
|
import { computed, reactive } from 'vue';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { $i } from './account';
|
2023-01-21 05:14:55 +01:00
|
|
|
import { miLocalStorage } from './local-storage';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { ui } from '@/config';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2022-07-14 10:42:12 +02:00
|
|
|
export const navbarItemDef = reactive({
|
2020-10-17 13:12:00 +02:00
|
|
|
notifications: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.notifications,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-bell',
|
2020-12-19 02:55:52 +01:00
|
|
|
show: computed(() => $i != null),
|
|
|
|
indicated: computed(() => $i != null && $i.hasUnreadNotification),
|
2020-10-17 13:12:00 +02:00
|
|
|
to: '/my/notifications',
|
|
|
|
},
|
|
|
|
drive: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.drive,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-cloud',
|
2020-12-19 02:55:52 +01:00
|
|
|
show: computed(() => $i != null),
|
2020-10-17 13:12:00 +02:00
|
|
|
to: '/my/drive',
|
|
|
|
},
|
|
|
|
followRequests: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.followRequests,
|
2022-12-26 09:15:30 +01:00
|
|
|
icon: 'ti ti-user-plus',
|
2020-12-19 02:55:52 +01:00
|
|
|
show: computed(() => $i != null && $i.isLocked),
|
|
|
|
indicated: computed(() => $i != null && $i.hasPendingReceivedFollowRequest),
|
2020-10-17 13:12:00 +02:00
|
|
|
to: '/my/follow-requests',
|
|
|
|
},
|
|
|
|
explore: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.explore,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-hash',
|
2020-10-17 13:12:00 +02:00
|
|
|
to: '/explore',
|
|
|
|
},
|
|
|
|
announcements: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.announcements,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-speakerphone',
|
2020-12-19 02:55:52 +01:00
|
|
|
indicated: computed(() => $i != null && $i.hasUnreadAnnouncement),
|
2020-10-17 13:12:00 +02:00
|
|
|
to: '/announcements',
|
|
|
|
},
|
|
|
|
search: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.search,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-search',
|
2023-02-25 01:01:21 +01:00
|
|
|
to: '/search',
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
lists: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.lists,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-list',
|
2020-12-19 02:55:52 +01:00
|
|
|
show: computed(() => $i != null),
|
2022-07-07 10:28:13 +02:00
|
|
|
to: '/my/lists',
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
antennas: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.antennas,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-antenna',
|
2020-12-19 02:55:52 +01:00
|
|
|
show: computed(() => $i != null),
|
2022-07-07 10:28:13 +02:00
|
|
|
to: '/my/antennas',
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
favorites: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.favorites,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-star',
|
2020-12-19 02:55:52 +01:00
|
|
|
show: computed(() => $i != null),
|
2020-10-17 13:12:00 +02:00
|
|
|
to: '/my/favorites',
|
|
|
|
},
|
|
|
|
pages: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.pages,
|
2022-12-20 00:35:49 +01:00
|
|
|
icon: 'ti ti-news',
|
2020-11-17 06:59:15 +01:00
|
|
|
to: '/pages',
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
2023-01-05 05:59:48 +01:00
|
|
|
play: {
|
|
|
|
title: 'Play',
|
|
|
|
icon: 'ti ti-player-play',
|
|
|
|
to: '/play',
|
|
|
|
},
|
2021-04-24 15:38:24 +02:00
|
|
|
gallery: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.gallery,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-icons',
|
2021-04-24 15:38:24 +02:00
|
|
|
to: '/gallery',
|
|
|
|
},
|
2020-11-15 04:04:54 +01:00
|
|
|
clips: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.clip,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-paperclip',
|
2020-12-19 02:55:52 +01:00
|
|
|
show: computed(() => $i != null),
|
2020-11-15 04:04:54 +01:00
|
|
|
to: '/my/clips',
|
|
|
|
},
|
2020-10-17 13:12:00 +02:00
|
|
|
channels: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.channel,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-device-tv',
|
2020-10-17 13:12:00 +02:00
|
|
|
to: '/channels',
|
|
|
|
},
|
2023-01-21 05:14:55 +01:00
|
|
|
achievements: {
|
|
|
|
title: i18n.ts.achievements,
|
2023-01-24 06:10:26 +01:00
|
|
|
icon: 'ti ti-medal',
|
2023-01-21 05:14:55 +01:00
|
|
|
show: computed(() => $i != null),
|
|
|
|
to: '/my/achievements',
|
|
|
|
},
|
2020-11-03 09:00:47 +01:00
|
|
|
ui: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.switchUi,
|
2022-12-21 00:39:28 +01:00
|
|
|
icon: 'ti ti-devices',
|
2020-11-03 09:00:47 +01:00
|
|
|
action: (ev) => {
|
2021-08-08 05:19:10 +02:00
|
|
|
os.popupMenu([{
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.default,
|
2021-10-24 07:50:00 +02:00
|
|
|
active: ui === 'default' || ui === null,
|
2020-11-03 09:00:47 +01:00
|
|
|
action: () => {
|
2023-01-07 02:13:02 +01:00
|
|
|
miLocalStorage.setItem('ui', 'default');
|
2021-02-17 13:36:56 +01:00
|
|
|
unisonReload();
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
2020-11-03 09:00:47 +01:00
|
|
|
}, {
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.deck,
|
2021-10-24 07:50:00 +02:00
|
|
|
active: ui === 'deck',
|
2020-11-03 09:00:47 +01:00
|
|
|
action: () => {
|
2023-01-07 02:13:02 +01:00
|
|
|
miLocalStorage.setItem('ui', 'deck');
|
2021-02-17 13:36:56 +01:00
|
|
|
unisonReload();
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
2021-04-10 05:40:50 +02:00
|
|
|
}, {
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.classic,
|
2021-10-24 07:50:00 +02:00
|
|
|
active: ui === 'classic',
|
2021-04-10 05:40:50 +02:00
|
|
|
action: () => {
|
2023-01-07 02:13:02 +01:00
|
|
|
miLocalStorage.setItem('ui', 'classic');
|
2021-04-10 05:40:50 +02:00
|
|
|
unisonReload();
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
|
|
|
}], ev.currentTarget ?? ev.target);
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
},
|
2022-07-05 12:29:44 +02:00
|
|
|
reload: {
|
2023-01-05 05:59:48 +01:00
|
|
|
title: i18n.ts.reload,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-refresh',
|
2022-07-05 12:29:44 +02:00
|
|
|
action: (ev) => {
|
|
|
|
location.reload();
|
|
|
|
},
|
|
|
|
},
|
2021-12-03 14:09:40 +01:00
|
|
|
});
|