Skip to content

Commit

Permalink
feat: 投稿フォームをリセットできるボタンを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
hideki0403 committed Mar 19, 2024
1 parent f760650 commit c88596b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5292,6 +5292,10 @@ export interface Locale extends ILocale {
* 投稿フォームの下部に表示される項目の並び替えが出来ます。項目をクリックすると削除できます。
*/
"postFormBottomSettingsDescription": string;
/**
* 投稿フォームをリセット
*/
"clearPost": string;
"_bubbleGame": {
/**
* 遊び方
Expand Down
1 change: 1 addition & 0 deletions locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1319,6 +1319,7 @@ hideActivityDescription: "自分のプロフィールのアクティビティ (
channelAnnouncementDescription: "このお知らせはチャンネルのタイムライン上部に表示されます。最初の1行がタイトルとして表示され、2行目以降はお知らせをタップすることで表示されるようになります。"
postForm: "投稿フォーム"
postFormBottomSettingsDescription: "投稿フォームの下部に表示される項目の並び替えが出来ます。項目をクリックすると削除できます。"
clearPost: "投稿フォームをリセット"

_bubbleGame:
howToPlay: "遊び方"
Expand Down
3 changes: 3 additions & 0 deletions packages/frontend/src/components/MkPostForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,9 @@ const bottomItemActionDef: Record<keyof typeof bottomItemDef, {
hide: computed(() => !showAddMfmFunction.value),
action: insertMfmFunction,
},
clearPost: {
action: clear,
},
});

watch(text, () => {
Expand Down
4 changes: 4 additions & 0 deletions packages/frontend/src/scripts/post-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,8 @@ export const bottomItemDef = {
title: i18n.ts.addMfmFunction,
icon: 'ti-palette',
},
clearPost: {
title: i18n.ts.clearPost,
icon: 'ti-trash',
},
};

0 comments on commit c88596b

Please sign in to comment.