This commit is contained in:
syuilo 2022-12-19 13:53:41 +09:00
parent 9e9142a110
commit f83bd31fd5
143 changed files with 311 additions and 306 deletions

View file

@ -93,7 +93,7 @@ export function getNoteMenu(props: {
async function clip(): Promise<void> {
const clips = await os.api('clips/list');
os.popupMenu([{
icon: 'fas fa-plus',
icon: 'ti ti-plus',
text: i18n.ts.createNew,
action: async () => {
const { canceled, result } = await os.form(i18n.ts.createNewClip, {
@ -202,15 +202,15 @@ export function getNoteMenu(props: {
action: unclip,
}, null] : []
), {
icon: 'fas fa-external-link-alt',
icon: 'ti ti-external-link',
text: i18n.ts.details,
action: notedetails,
}, {
icon: 'fas fa-copy',
icon: 'ti ti-copy',
text: i18n.ts.copyContent,
action: copyContent,
}, {
icon: 'fas fa-link',
icon: 'ti ti-link',
text: i18n.ts.copyLink,
action: copyLink,
}, (appearNote.url || appearNote.uri) ? {
@ -221,27 +221,27 @@ export function getNoteMenu(props: {
},
} : undefined,
{
icon: 'fas fa-share-alt',
icon: 'ti ti-share',
text: i18n.ts.share,
action: share,
},
instance.translatorAvailable ? {
icon: 'fas fa-language',
icon: 'ti ti-language-hiragana',
text: i18n.ts.translate,
action: translate,
} : undefined,
null,
statePromise.then(state => state.isFavorited ? {
icon: 'fas fa-star',
icon: 'ti ti-star',
text: i18n.ts.unfavorite,
action: () => toggleFavorite(false),
} : {
icon: 'fas fa-star',
icon: 'ti ti-star',
text: i18n.ts.favorite,
action: () => toggleFavorite(true),
}),
{
icon: 'fas fa-paperclip',
icon: 'ti ti-paperclip',
text: i18n.ts.clip,
action: () => clip(),
},
@ -276,7 +276,7 @@ export function getNoteMenu(props: {
...(appearNote.userId !== $i.id ? [
null,
{
icon: 'fas fa-exclamation-circle',
icon: 'ti ti-exclamation-circle',
text: i18n.ts.reportAbuse,
action: () => {
const u = appearNote.url || appearNote.uri || `${url}/notes/${appearNote.id}`;
@ -296,7 +296,7 @@ export function getNoteMenu(props: {
action: delEdit,
} : undefined,
{
icon: 'fas fa-trash-alt',
icon: 'ti ti-trash',
text: i18n.ts.delete,
danger: true,
action: del,
@ -306,15 +306,15 @@ export function getNoteMenu(props: {
.filter(x => x !== undefined);
} else {
menu = [{
icon: 'fas fa-external-link-alt',
icon: 'ti ti-external-link',
text: i18n.ts.detailed,
action: openDetail,
}, {
icon: 'fas fa-copy',
icon: 'ti ti-copy',
text: i18n.ts.copyContent,
action: copyContent,
}, {
icon: 'fas fa-link',
icon: 'ti ti-link',
text: i18n.ts.copyLink,
action: copyLink,
}, (appearNote.url || appearNote.uri) ? {