Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
336
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
e371120c
Unverified
Commit
e371120c
authored
2 years ago
by
Kainoa Kanter
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fix: broken chats (#8983)
* Fix broken chats Co-authored-by: @ltlapy *
🎨
parent
43ee600f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/client/src/components/ui/pagination.vue
+16
-14
16 additions, 14 deletions
packages/client/src/components/ui/pagination.vue
packages/client/src/pages/messaging/messaging-room.vue
+2
-4
2 additions, 4 deletions
packages/client/src/pages/messaging/messaging-room.vue
with
18 additions
and
18 deletions
packages/client/src/components/ui/pagination.vue
+
16
−
14
View file @
e371120c
...
...
@@ -197,21 +197,23 @@ const prepend = (item: Item): void => {
if
(
props
.
pagination
.
reversed
)
{
if
(
rootEl
.
value
)
{
const
container
=
getScrollContainer
(
rootEl
.
value
);
if
(
container
==
null
)
return
;
// TODO?
const
pos
=
getScrollPosition
(
rootEl
.
value
);
const
viewHeight
=
container
.
clientHeight
;
const
height
=
container
.
scrollHeight
;
const
isBottom
=
(
pos
+
viewHeight
>
height
-
32
);
if
(
isBottom
)
{
// オーバーフローしたら古いアイテムは捨てる
if
(
items
.
value
.
length
>=
props
.
displayLimit
)
{
// このやり方だとVue 3.2以降アニメーションが動かなくなる
//items.value = items.value.slice(-props.displayLimit);
while
(
items
.
value
.
length
>=
props
.
displayLimit
)
{
items
.
value
.
shift
();
if
(
container
==
null
)
{
// TODO?
}
else
{
const
pos
=
getScrollPosition
(
rootEl
.
value
);
const
viewHeight
=
container
.
clientHeight
;
const
height
=
container
.
scrollHeight
;
const
isBottom
=
(
pos
+
viewHeight
>
height
-
32
);
if
(
isBottom
)
{
// オーバーフローしたら古いアイテムは捨てる
if
(
items
.
value
.
length
>=
props
.
displayLimit
)
{
// このやり方だとVue 3.2以降アニメーションが動かなくなる
//items.value = items.value.slice(-props.displayLimit);
while
(
items
.
value
.
length
>=
props
.
displayLimit
)
{
items
.
value
.
shift
();
}
more
.
value
=
true
;
}
more
.
value
=
true
;
}
}
}
...
...
This diff is collapsed.
Click to expand it.
packages/client/src/pages/messaging/messaging-room.vue
+
2
−
4
View file @
e371120c
...
...
@@ -292,6 +292,7 @@ definePageMetadata(computed(() => !fetching ? user ? {
<
style
lang=
"scss"
scoped
>
.mk-messaging-room
{
position
:
relative
;
overflow
:
auto
;
>
.body
{
.more
{
...
...
@@ -335,10 +336,7 @@ definePageMetadata(computed(() => !fetching ? user ? {
z-index
:
2
;
bottom
:
0
;
padding-top
:
8px
;
@media
(
max-width
:
500px
)
{
bottom
:
calc
(
env
(
safe-area-inset-bottom
,
0px
)
+
92px
);
}
bottom
:
calc
(
env
(
safe-area-inset-bottom
,
0px
)
+
8px
);
>
.new-message
{
width
:
100%
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment