enhance(frontend): ユーザーメニューからユーザーメモを編集できるように
This commit is contained in:
parent
5cac1515fd
commit
e014c91899
|
@ -994,6 +994,7 @@ accountMigration: "アカウントの引っ越し"
|
||||||
accountMoved: "このユーザーは新しいアカウントに引っ越しました:"
|
accountMoved: "このユーザーは新しいアカウントに引っ越しました:"
|
||||||
forceShowAds: "常に広告を表示する"
|
forceShowAds: "常に広告を表示する"
|
||||||
addMemo: "メモを追加"
|
addMemo: "メモを追加"
|
||||||
|
editMemo: "メモを編集"
|
||||||
|
|
||||||
_accountMigration:
|
_accountMigration:
|
||||||
moveTo: "このアカウントを新しいアカウントに引っ越す"
|
moveTo: "このアカウントを新しいアカウントに引っ越す"
|
||||||
|
|
|
@ -98,6 +98,27 @@ export function getUserMenu(user: misskey.entities.UserDetailed, router: Router
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function editMemo(): Promise<void> {
|
||||||
|
const userDetailed = await os.api('users/show', {
|
||||||
|
userId: user.id,
|
||||||
|
});
|
||||||
|
const { canceled, result } = await os.form(i18n.ts.editMemo, {
|
||||||
|
memo: {
|
||||||
|
type: 'string',
|
||||||
|
required: true,
|
||||||
|
multiline: true,
|
||||||
|
label: i18n.ts.memo,
|
||||||
|
default: userDetailed.memo,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (canceled) return;
|
||||||
|
|
||||||
|
os.apiWithDialog('users/update-memo', {
|
||||||
|
memo: result.memo,
|
||||||
|
userId: user.id,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
let menu = [{
|
let menu = [{
|
||||||
icon: 'ti ti-at',
|
icon: 'ti ti-at',
|
||||||
text: i18n.ts.copyUsername,
|
text: i18n.ts.copyUsername,
|
||||||
|
@ -123,6 +144,12 @@ export function getUserMenu(user: misskey.entities.UserDetailed, router: Router
|
||||||
os.post({ specified: user, initialText: `@${user.username} ` });
|
os.post({ specified: user, initialText: `@${user.username} ` });
|
||||||
},
|
},
|
||||||
}, null, {
|
}, null, {
|
||||||
|
icon: 'ti ti-pencil',
|
||||||
|
text: i18n.ts.editMemo,
|
||||||
|
action: () => {
|
||||||
|
editMemo();
|
||||||
|
},
|
||||||
|
}, {
|
||||||
type: 'parent',
|
type: 'parent',
|
||||||
icon: 'ti ti-list',
|
icon: 'ti ti-list',
|
||||||
text: i18n.ts.addToList,
|
text: i18n.ts.addToList,
|
||||||
|
|
Loading…
Reference in New Issue