diff --git a/CHANGELOG.md b/CHANGELOG.md index 04eab470703f0c4a6f308724d910b11c3fe4c616..9e210543c34c7b07b1fd5b2e0cdd62d20b3f4d77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ - メニューã®ã‚¹ã‚¤ãƒƒãƒã®å‹•ä½œã‚’改善 - 絵文å—ピッカーã®æ¤œç´¢ã®è¡¨ç¤ºä»¶æ•°ã‚’100件ã«å¢—åŠ - 投稿フォームã®ãƒ—レビューã®è¡¨ç¤ºçŠ¶æ…‹ã‚’記憶ã™ã‚‹ã‚ˆã†ã« +- ノート詳細ページèªã¿è¾¼ã¿æ™‚ã®ãƒ‘フォーマンスを改善 - Enhance: ユーザーメニューã§ã‚¹ã‚¤ãƒƒãƒã§ãƒ¦ãƒ¼ã‚¶ãƒ¼ãƒªã‚¹ãƒˆã«è¿½åŠ ・削除ã§ãるよã†ã« - Enhance: 自分ãŒæŠ¼ã—ãŸãƒªã‚¢ã‚¯ã‚·ãƒ§ãƒ³ã®ãƒ‡ã‚¶ã‚¤ãƒ³ã‚’改善 - Enhance: ノート検索ã«ãƒãƒ¼ã‚«ãƒ«ã®ã¿æ¤œç´¢å¯èƒ½ãªã‚ªãƒ—ションã®è¿½åŠ diff --git a/packages/frontend/src/pages/note.vue b/packages/frontend/src/pages/note.vue index fb19783f3d93e81780ffd02fa675bef3de7b0082..48f62c83a9e4f36b08a20340fcc339cf3e60d660 100644 --- a/packages/frontend/src/pages/note.vue +++ b/packages/frontend/src/pages/note.vue @@ -15,7 +15,7 @@ SPDX-License-Identifier: AGPL-3.0-only </div> <div class="_margin"> - <MkButton v-if="!showNext && hasNext" :class="$style.loadNext" @click="showNext = true"><i class="ti ti-chevron-up"></i></MkButton> + <MkButton v-if="!showNext" :class="$style.loadNext" @click="showNext = true"><i class="ti ti-chevron-up"></i></MkButton> <div class="_margin _gaps_s"> <MkRemoteCaution v-if="note.user.host != null" :href="note.url ?? note.uri"/> <MkNoteDetailed :key="note.id" v-model:note="note" :class="$style.note"/> @@ -28,7 +28,7 @@ SPDX-License-Identifier: AGPL-3.0-only </MkA> </div> </div> - <MkButton v-if="!showPrev && hasPrev" :class="$style.loadPrev" @click="showPrev = true"><i class="ti ti-chevron-down"></i></MkButton> + <MkButton v-if="!showPrev" :class="$style.loadPrev" @click="showPrev = true"><i class="ti ti-chevron-down"></i></MkButton> </div> <div v-if="showPrev" class="_margin"> @@ -63,8 +63,6 @@ const props = defineProps<{ let note = $ref<null | misskey.entities.Note>(); let clips = $ref(); -let hasPrev = $ref(false); -let hasNext = $ref(false); let showPrev = $ref(false); let showNext = $ref(false); let error = $ref(); @@ -89,8 +87,6 @@ const nextPagination = { }; function fetchNote() { - hasPrev = false; - hasNext = false; showPrev = false; showNext = false; note = null; @@ -102,20 +98,8 @@ function fetchNote() { os.api('notes/clips', { noteId: note.id, }), - os.api('users/notes', { - userId: note.userId, - untilId: note.id, - limit: 1, - }), - os.api('users/notes', { - userId: note.userId, - sinceId: note.id, - limit: 1, - }), - ]).then(([_clips, prev, next]) => { + ]).then(([_clips]) => { clips = _clips; - hasPrev = prev.length !== 0; - hasNext = next.length !== 0; }); }).catch(err => { error = err;