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

OptionItemOwner.vue « Options « components « js « src - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a5006b2ec344f1cb83f046b4fcfbb6c4102c446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!--
  - @copyright Copyright (c) 2018 René Gieling <github@dartcafe.de>
  -
  - @author René Gieling <github@dartcafe.de>
  -
  - @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="option-item-owner">
		<Actions v-if="!acl.allowEdit && acl.userId === option.owner" class="action">
			<ActionButton icon="icon-delete" @click="removeOption(option)">
				{{ t('polls', 'Delete your proposal') }}
			</ActionButton>
		</Actions>
		<Avatar v-else-if="option.owner && option.owner !== pollOwner"
			:user="option.owner"
			:display-name="option.ownerDisplayName"
			:is-no-user="option.ownerIsNoUser"
			disable-menu
			:tooltip-message="t('polls', '{displayName}\'s proposal', { displayName: option.ownerDisplayName })" />
	</div>
</template>

<script>
import { mapState, mapGetters } from 'vuex'
import { Actions, ActionButton, Avatar } from '@nextcloud/vue'
import { removeOption } from '../../mixins/optionMixins'

export default {
	name: 'OptionItemOwner',

	components: {
		Avatar,
		Actions,
		ActionButton,
	},

	mixins: [
		removeOption,
	],

	props: {
		option: {
			type: Object,
			default: undefined,
		},
	},

	computed: {
		...mapState({
			pollOwner: state => state.poll.owner,
			acl: state => state.poll.acl,
		}),

		...mapGetters({
		}),
	},
}

</script>

<style lang="scss" scoped>

.option-item-owner {
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 21px;
	font-size: 0;
	align-self: stretch;
	min-width: 24px;
}

</style>