Sharkey/packages/frontend/src/ui/_common_/common.ts

69 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-12-28 06:29:42 +02:00
import * as os from '@/os';
import { instance } from '@/instance';
import { host } from '@/config';
import { i18n } from '@/i18n';
export function openInstanceMenu(ev: MouseEvent) {
os.popupMenu([{
text: instance.name ?? host,
type: 'label',
}, {
type: 'link',
text: i18n.ts.instanceInfo,
icon: 'ti ti-info-circle',
to: '/about',
}, {
type: 'link',
text: i18n.ts.customEmojis,
2022-12-31 13:36:49 +02:00
icon: 'ti ti-icons',
2022-12-28 06:29:42 +02:00
to: '/about#emojis',
}, {
type: 'link',
text: i18n.ts.federation,
icon: 'ti ti-whirl',
to: '/about#federation',
}, {
type: 'link',
text: i18n.ts.charts,
icon: 'ti ti-chart-line',
to: '/about#charts',
}, null, {
type: 'parent',
2022-12-28 06:34:47 +02:00
text: i18n.ts.tools,
icon: 'ti ti-tool',
2022-12-28 06:29:42 +02:00
children: [{
type: 'link',
to: '/scratchpad',
text: i18n.ts.scratchpad,
icon: 'ti ti-terminal-2',
}, {
type: 'link',
to: '/api-console',
text: 'API Console',
icon: 'ti ti-terminal-2',
2022-12-28 06:34:47 +02:00
}],
}, null, {
type: 'parent',
text: i18n.ts.help,
icon: 'ti ti-question-circle',
children: [{
type: 'link',
to: '/mfm-cheat-sheet',
text: i18n.ts._mfm.cheatSheet,
icon: 'ti ti-code',
2022-12-28 06:29:42 +02:00
}, null, {
text: i18n.ts.document,
icon: 'ti ti-question-circle',
action: () => {
window.open('https://misskey-hub.net/help.html', '_blank');
},
}],
}, {
type: 'link',
text: i18n.ts.aboutMisskey,
to: '/about-misskey',
}], ev.currentTarget ?? ev.target, {
align: 'left',
});
}