Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-03-16 18:02:42 +0300
committerJulius Härtl <jus@bitgrid.net>2022-04-06 21:14:00 +0300
commit9d3ab90a44023012e046748bbd441286682d4b53 (patch)
treebd7216b8174b71162b809f90038446c08c9d5bbe /src
parentf088d5fb12d8cb433cc91b5568fc158ea805297e (diff)
Fix participant popover design
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src')
-rw-r--r--src/components/GuestNameDialog.vue3
-rw-r--r--src/components/SessionList.vue42
2 files changed, 19 insertions, 26 deletions
diff --git a/src/components/GuestNameDialog.vue b/src/components/GuestNameDialog.vue
index 88ac96efb..624c8d069 100644
--- a/src/components/GuestNameDialog.vue
+++ b/src/components/GuestNameDialog.vue
@@ -92,6 +92,7 @@ export default {
<style scoped lang="scss">
form.guest-name-dialog {
display: flex;
+ align-items: center;
padding: 6px;
&::v-deep img {
@@ -102,7 +103,7 @@ export default {
flex-grow: 1;
}
label {
- padding: 3px;
+ padding-right: 3px;
height: 32px;
}
}
diff --git a/src/components/SessionList.vue b/src/components/SessionList.vue
index 57eb8a57d..01f49f44f 100644
--- a/src/components/SessionList.vue
+++ b/src/components/SessionList.vue
@@ -23,7 +23,7 @@
<template>
<Popover class="session-list" placement="top">
<button slot="trigger"
- v-tooltip.bottom="editorsTooltip"
+ v-tooltip.bottom="t('text', 'Participants')"
class="avatar-list">
<div class="avatardiv icon-group" />
<div v-for="session in sessionsVisible"
@@ -43,7 +43,7 @@
<div class="session-menu">
<ul>
<slot />
- <li v-for="session in sessionPopoverList"
+ <li v-for="session in participantsPopover"
:key="session.id"
:style="avatarStyle(session)">
<div class="avatar-wrapper"
@@ -53,7 +53,7 @@
:disable-menu="true"
:show-user-status="false"
:disable-tooltip="true"
- :size="44" />
+ :size="32" />
</div>
{{ session.guestName ? session.guestName : session.displayName }}
</li>
@@ -110,18 +110,18 @@ export default {
this.$store.dispatch('setShowAuthorAnnotations', value)
},
},
- editorsTooltip() {
- const tooltipPrefix = t('text', 'Currently active users:') + ' '
- if (this.sessionPopoverList.length > 0) {
- const first = this.activeSessions.slice(0, 3).map((session) => session.guestName ? session.guestName : session.displayName).join(', ')
- const others = this.activeSessions.slice(3).length
- return tooltipPrefix + first + ' ' + n('text', 'and %n other editor', 'and %n other editors', others)
+ participantsPopover() {
+ if (this.currentSession.guestName) {
+ return this.participantsWithoutCurrent
}
- return tooltipPrefix + this.activeSessions.slice(0, 3).map((session) => session.guestName ? session.guestName : session.displayName).join(', ')
+ return this.participants
},
- activeSessions() {
+ participantsWithoutCurrent() {
+ return this.participants.filter((session) => !session.isCurrent)
+ },
+ participants() {
return Object.values(this.sessions).filter((session) =>
- session.lastContact > Date.now() / 1000 - COLLABORATOR_DISCONNECT_TIME && !session.isCurrent
+ session.lastContact > Date.now() / 1000 - COLLABORATOR_DISCONNECT_TIME
&& (session.userId !== null || session.guestName !== null)
).sort((a, b) => a.lastContact < b.lastContact)
},
@@ -144,22 +144,13 @@ export default {
}
},
sessionsVisible() {
- return this.activeSessions.slice(0, 3)
- },
- sessionPopoverList() {
- return this.activeSessions.slice(3)
+ return this.participantsWithoutCurrent.slice(0, 3)
},
},
}
</script>
<style scoped lang="scss">
- .avatardiv {
- width: 44px !important;
- height: 44px !important;
- line-height: 44px;
- }
-
.avatar-list {
border: none;
background-color: var(--color-main-background);
@@ -175,7 +166,8 @@ export default {
.avatar-wrapper {
margin: 0 -8px 0 0;
- margin-left: 0;
+ height: 44px;
+ width: 44px;
}
.icon-more, .icon-group, .icon-settings-dark {
@@ -187,8 +179,6 @@ export default {
}
.avatar-wrapper {
- width: 44px;
- height: 44px;
z-index: 1;
border-radius: 50%;
overflow: hidden;
@@ -206,6 +196,8 @@ export default {
padding: 6px;
.avatar-wrapper {
+ height: 32px;
+ width: 32px;
margin-right: 6px;
}
}