diff --git a/src/assets/avatar.scss b/src/assets/avatar.scss deleted file mode 100644 index 54645ee12e7..00000000000 --- a/src/assets/avatar.scss +++ /dev/null @@ -1,63 +0,0 @@ -/** - * @copyright Copyright (c) 2020 Joas Schilling - * - * @author Joas Schilling - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ -@use 'sass:math'; - -@import 'variables'; - - -@mixin avatar-mixin($size: 32px) { - .avatar-#{$size} { - position: sticky; - top: 0; - width: $size; - height: $size; - line-height: $size; - font-size: math.div($size, 2); - border-radius: 50%; - - &.icon { - border-radius: 50%; - height: $size; - width: $size; - background-color: var(--color-background-darker); - } - - &.bot { - padding-left: 5px; - line-height: $size; - border-radius: 50%; - background-color: var(--color-background-darker); - } - - &.guest { - line-height: $size; - font-size: math.div($size, 2); - color: $color-guests-avatar; - background-color: $color-background-guests-avatar; - padding: 0; - display: block; - text-align: center; - margin-left: auto; - margin-right: auto; - } - } -} diff --git a/src/components/CallView/shared/LocalVideo.vue b/src/components/CallView/shared/LocalVideo.vue index f88b4e8af1d..d0c058ccf5a 100644 --- a/src/components/CallView/shared/LocalVideo.vue +++ b/src/components/CallView/shared/LocalVideo.vue @@ -3,7 +3,7 @@ - - @author Grigorii Shartsev - - - @license GNU AGPL version 3 or any later version + - @license AGPL-3.0-or-later - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as @@ -42,19 +42,13 @@ - -
- {{ firstLetterOfGuestName }} -
@@ -76,9 +70,9 @@ import SHA1 from 'crypto-js/sha1.js' import { showError, showInfo, TOAST_PERMANENT_TIMEOUT } from '@nextcloud/dialogs' -import NcAvatar from '@nextcloud/vue/dist/Components/NcAvatar.js' import NcButton from '@nextcloud/vue/dist/Components/NcButton.js' +import AvatarWrapper from '../../AvatarWrapper/AvatarWrapper.vue' import VideoBackground from './VideoBackground.vue' import video from '../../../mixins/video.js' @@ -90,7 +84,7 @@ export default { name: 'LocalVideo', components: { - NcAvatar, + AvatarWrapper, NcButton, VideoBackground, }, @@ -187,13 +181,12 @@ export default { return this.$store.getters.getUserId() }, - displayName() { - return this.$store.getters.getDisplayName() + actorType() { + return this.$store.getters.getActorType() }, - firstLetterOfGuestName() { - const customName = this.guestName !== t('spreed', 'Guest') ? this.guestName : '?' - return customName.charAt(0) + displayName() { + return this.$store.getters.getDisplayName() }, sessionHash() { @@ -223,12 +216,6 @@ export default { } }, - guestAvatarClass() { - return Object.assign(this.avatarClass, { - ['avatar-' + this.avatarSize + 'px']: true, - }) - }, - localStreamVideoError() { return this.localMediaModel.attributes.localStream && this.localMediaModel.attributes.localStreamRequestVideoError }, @@ -364,11 +351,6 @@ export default {