2020-10-24 11:21:41 -05:00
|
|
|
import { computed } from 'vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import { search } from '@client/scripts/search';
|
|
|
|
import * as os from '@client/os';
|
|
|
|
import { i18n } from '@client/i18n';
|
2020-12-18 19:55:52 -06:00
|
|
|
import { $i } from './account';
|
2021-03-23 03:30:14 -05:00
|
|
|
import { unisonReload } from '@client/scripts/unison-reload';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2021-07-18 21:36:35 -05:00
|
|
|
export const menuDef = {
|
2020-10-17 06:12:00 -05:00
|
|
|
notifications: {
|
|
|
|
title: 'notifications',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-bell',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
|
|
|
indicated: computed(() => $i != null && $i.hasUnreadNotification),
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/my/notifications',
|
|
|
|
},
|
|
|
|
messaging: {
|
|
|
|
title: 'messaging',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-comments',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
|
|
|
indicated: computed(() => $i != null && $i.hasUnreadMessagingMessage),
|
2020-11-02 19:43:50 -06:00
|
|
|
to: '/my/messaging',
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
|
|
|
drive: {
|
|
|
|
title: 'drive',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-cloud',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/my/drive',
|
|
|
|
},
|
|
|
|
followRequests: {
|
|
|
|
title: 'followRequests',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-user-clock',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null && $i.isLocked),
|
|
|
|
indicated: computed(() => $i != null && $i.hasPendingReceivedFollowRequest),
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/my/follow-requests',
|
|
|
|
},
|
|
|
|
featured: {
|
|
|
|
title: 'featured',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-fire-alt',
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/featured',
|
|
|
|
},
|
|
|
|
explore: {
|
|
|
|
title: 'explore',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-hashtag',
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/explore',
|
|
|
|
},
|
|
|
|
announcements: {
|
|
|
|
title: 'announcements',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-broadcast-tower',
|
2020-12-18 19:55:52 -06:00
|
|
|
indicated: computed(() => $i != null && $i.hasUnreadAnnouncement),
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/announcements',
|
|
|
|
},
|
|
|
|
search: {
|
|
|
|
title: 'search',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-search',
|
2020-10-17 06:12:00 -05:00
|
|
|
action: () => search(),
|
|
|
|
},
|
|
|
|
lists: {
|
|
|
|
title: 'lists',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-list-ul',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/my/lists',
|
|
|
|
},
|
|
|
|
groups: {
|
|
|
|
title: 'groups',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-users',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/my/groups',
|
|
|
|
},
|
|
|
|
antennas: {
|
|
|
|
title: 'antennas',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-satellite',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/my/antennas',
|
|
|
|
},
|
|
|
|
mentions: {
|
|
|
|
title: 'mentions',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-at',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
|
|
|
indicated: computed(() => $i != null && $i.hasUnreadMentions),
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/my/mentions',
|
|
|
|
},
|
|
|
|
messages: {
|
|
|
|
title: 'directNotes',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-envelope',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
|
|
|
indicated: computed(() => $i != null && $i.hasUnreadSpecifiedNotes),
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/my/messages',
|
|
|
|
},
|
|
|
|
favorites: {
|
|
|
|
title: 'favorites',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-star',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/my/favorites',
|
|
|
|
},
|
|
|
|
pages: {
|
|
|
|
title: 'pages',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-file-alt',
|
2020-11-16 23:59:15 -06:00
|
|
|
to: '/pages',
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
2021-04-24 08:38:24 -05:00
|
|
|
gallery: {
|
|
|
|
title: 'gallery',
|
|
|
|
icon: 'fas fa-icons',
|
|
|
|
to: '/gallery',
|
|
|
|
},
|
2020-11-14 21:04:54 -06:00
|
|
|
clips: {
|
|
|
|
title: 'clip',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-paperclip',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
2020-11-14 21:04:54 -06:00
|
|
|
to: '/my/clips',
|
|
|
|
},
|
2020-10-17 06:12:00 -05:00
|
|
|
channels: {
|
|
|
|
title: 'channel',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-satellite-dish',
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/channels',
|
|
|
|
},
|
2021-08-06 20:24:50 -05:00
|
|
|
federation: {
|
|
|
|
title: 'federation',
|
|
|
|
icon: 'fas fa-globe',
|
|
|
|
to: '/federation',
|
|
|
|
},
|
2021-08-06 20:23:59 -05:00
|
|
|
emojis: {
|
|
|
|
title: 'emojis',
|
|
|
|
icon: 'fas fa-laugh',
|
|
|
|
to: '/emojis',
|
|
|
|
},
|
2020-10-17 06:12:00 -05:00
|
|
|
games: {
|
|
|
|
title: 'games',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-gamepad',
|
2020-10-27 04:11:41 -05:00
|
|
|
to: '/games/reversi',
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
|
|
|
scratchpad: {
|
|
|
|
title: 'scratchpad',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-terminal',
|
2020-10-17 06:12:00 -05:00
|
|
|
to: '/scratchpad',
|
|
|
|
},
|
|
|
|
rooms: {
|
|
|
|
title: 'rooms',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-door-closed',
|
2020-12-18 19:55:52 -06:00
|
|
|
show: computed(() => $i != null),
|
|
|
|
to: computed(() => `/@${$i.username}/room`),
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
2020-11-03 02:00:47 -06:00
|
|
|
ui: {
|
|
|
|
title: 'switchUi',
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-columns',
|
2020-11-03 02:00:47 -06:00
|
|
|
action: (ev) => {
|
|
|
|
os.modalMenu([{
|
2020-12-25 19:51:00 -06:00
|
|
|
text: i18n.locale.default,
|
2020-11-03 02:00:47 -06:00
|
|
|
action: () => {
|
|
|
|
localStorage.setItem('ui', 'default');
|
2021-02-17 06:36:56 -06:00
|
|
|
unisonReload();
|
2020-11-03 02:00:47 -06:00
|
|
|
}
|
|
|
|
}, {
|
2020-12-25 19:51:00 -06:00
|
|
|
text: i18n.locale.deck,
|
2020-11-03 02:00:47 -06:00
|
|
|
action: () => {
|
|
|
|
localStorage.setItem('ui', 'deck');
|
2021-02-17 06:36:56 -06:00
|
|
|
unisonReload();
|
2020-11-03 02:00:47 -06:00
|
|
|
}
|
2021-04-09 22:40:50 -05:00
|
|
|
}, {
|
|
|
|
text: 'pope',
|
|
|
|
action: () => {
|
|
|
|
localStorage.setItem('ui', 'pope');
|
|
|
|
unisonReload();
|
|
|
|
}
|
2021-02-14 07:26:07 -06:00
|
|
|
}, {
|
|
|
|
text: 'Chat (β)',
|
|
|
|
action: () => {
|
|
|
|
localStorage.setItem('ui', 'chat');
|
2021-02-17 07:20:35 -06:00
|
|
|
unisonReload();
|
2021-02-14 07:26:07 -06:00
|
|
|
}
|
2020-11-03 02:00:47 -06:00
|
|
|
}, {
|
2020-12-25 19:51:00 -06:00
|
|
|
text: i18n.locale.desktop + ' (β)',
|
2020-11-03 02:00:47 -06:00
|
|
|
action: () => {
|
|
|
|
localStorage.setItem('ui', 'desktop');
|
2021-02-17 06:36:56 -06:00
|
|
|
unisonReload();
|
2020-11-03 02:00:47 -06:00
|
|
|
}
|
|
|
|
}], ev.currentTarget || ev.target);
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|