nextcloud-calendar/src/components/Shared/CalendarPickerOption.vue

106 lines
2.2 KiB
Vue

<!--
- @copyright Copyright (c) 2019 Georg Ehrke <oc.list@georgehrke.com>
-
- @author Georg Ehrke <oc.list@georgehrke.com>
-
- @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 <http://www.gnu.org/licenses/>.
-
-->
<template>
<div class="calendar-picker-option">
<div
class="calendar-picker-option__color-indicator"
:style="{ backgroundColor: color }" />
<span>
{{ displayName }}
</span>
<Avatar
v-if="isSharedWithMe"
class="calendar-picker-option__avatar"
:disable-menu="true"
:disable-tooltip="true"
:user="userId"
:display-name="userDisplayName"
:size="18" />
</div>
</template>
<script>
import { Avatar } from '@nextcloud/vue'
export default {
name: 'CalendarPickerOption',
components: {
Avatar
},
props: {
color: {
type: String,
required: true
},
displayName: {
type: String,
required: true
},
owner: {
type: String,
required: true
},
isSharedWithMe: {
type: Boolean,
required: true
}
},
computed: {
/**
* Get the principal object of the calendar's owner
*
* @returns {null|Object}
*/
principal() {
return this.$store.getters.getPrincipalByUrl(this.owner)
},
/**
* Gets the user-id of the calendar's owner
*
* @returns {null|String}
*/
userId() {
if (this.principal) {
return this.principal.userId
}
return null
},
/**
* Gets the displayname of the calendar's owner
*
* @returns {null|String}
*/
userDisplayName() {
if (this.principal) {
return this.principal.displayname
}
return null
}
}
}
</script>