diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2023-01-13 18:25:40 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-13 18:25:40 +0900 |
| commit | d2204fd5c8fb2361e9c29ed31cd0d40eb69d2f4b (patch) | |
| tree | 3479f9cde6139af5cebf94cf6de005e16c404e21 /packages/frontend/src/components/MkNotes.vue | |
| parent | Update CHANGELOG.md (diff) | |
| download | misskey-d2204fd5c8fb2361e9c29ed31cd0d40eb69d2f4b.tar.gz misskey-d2204fd5c8fb2361e9c29ed31cd0d40eb69d2f4b.tar.bz2 misskey-d2204fd5c8fb2361e9c29ed31cd0d40eb69d2f4b.zip | |
refactor: pagination/date-separated-list系処理を良い感じに? (#8209)
* pages/messaging/messaging-room.vue
* wip
* wip
* wip???
* wip?
* :v:
* messaaging-room.form.vue rewrite to compositon api
* refactor
* 関心事でないのでとりあえず置いておく
* :art:
* :art:
* i18n.ts
* fix scroll container find function
* fix
* FIX
* :v:
* Fix scroll bottom detect
* wip
* aaaaaaaaaaa
* rename
* fix
* fix?
* :v:
* :v:
* clean up
* clena up
* refactor
* scroll event once or not
* fix
* fix once
* add safe-area-inset-bottom to spacer
* fix
* :v:
* :art:
* fix
* fix
* wip
* :v:
* clean up
* fix lint
* Update packages/client/src/components/global/sticky-container.vue
Co-authored-by: Johann150 <johann.galle@protonmail.com>
* Update packages/client/src/components/ui/pagination.vue
Co-authored-by: Johann150 <johann.galle@protonmail.com>
* Update packages/client/src/pages/messaging/messaging-room.form.vue
Co-authored-by: Johann150 <johann.galle@protonmail.com>
* clean up: single line comment
* https://github.com/misskey-dev/misskey/pull/8209#discussion_r867386077
* fix
* asobi → tolerance
* pick form
* pick message
* pick room
* fix lint
* fix scroll?
* fix scroll.ts
* fix directives/sticky-container
* update global/sticky-container.vue
* fix, :art:
* revert merge
* :v:
* fix lint errors
* :art:
* Update packages/client/src/types/date-separated-list.ts
Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
* https://github.com/misskey-dev/misskey/pull/8209#discussion_r917225080
* use '
* Update packages/client/src/scripts/scroll.ts
Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
* use Number.EPSILON
Co-authored-by: acid-chicken <root@acid-chicken.com>
* revert
* fix
* fix
* Use % instead of vh
* :art:
* :art:
* :art:
* wip
* wip
* css modules
Co-authored-by: Johann150 <johann.galle@protonmail.com>
Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
Diffstat (limited to 'packages/frontend/src/components/MkNotes.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNotes.vue | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNotes.vue b/packages/frontend/src/components/MkNotes.vue index 73659fd501..f9952e4245 100644 --- a/packages/frontend/src/components/MkNotes.vue +++ b/packages/frontend/src/components/MkNotes.vue @@ -9,7 +9,16 @@ <template #default="{ items: notes }"> <div :class="[$style.root, { [$style.noGap]: noGap }]"> - <MkDateSeparatedList ref="notes" v-slot="{ item: note }" :items="notes" :direction="pagination.reversed ? 'up' : 'down'" :reversed="pagination.reversed" :no-gap="noGap" :ad="true" :class="$style.notes"> + <MkDateSeparatedList + ref="notes" + v-slot="{ item: note }" + :items="notes" + :direction="pagination.reversed ? 'up' : 'down'" + :reversed="pagination.reversed" + :no-gap="noGap" + :ad="true" + :class="$style.notes" + > <XNote :key="note._featuredId_ || note._prId_ || note.id" :class="$style.note" :note="note"/> </MkDateSeparatedList> </div> |