summaryrefslogtreecommitdiffstats
path: root/src/components/ContactsList/ContactsListItem.vue
blob: fef0a9cafeb094f1a51aacfe625271f3e2aa1d5c (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<template>
	<div :id="id"
		:class="{active: selectedContact === contact.key}"
		tabindex="0"
		class="app-content-list-item"
		@click.prevent.stop="selectContact"
		@keypress.enter.prevent.stop="selectContact">
		<!-- keyboard accessibility will focus the input and not the label -->
		<!--
		<input ref="selected" :id="contact.key" type="checkbox"
			class="app-content-list-item-checkbox checkbox" @keypress.enter.space.prevent.stop="toggleSelect">
		<label :for="contact.key" @click.prevent.stop="toggleSelect" @keypress.enter.space.prevent.stop="toggleSelect" />
		-->
		<div :style="avatarStyle" class="app-content-list-item-icon">
			<!-- try to fetch the avatar only if the contact exists on the server -->
			<div v-if="hasPhoto" :style="{ 'backgroundImage': avatarUrl }" class="app-content-list-item-icon__avatar" />
			<template v-else>
				{{ contact.displayName | firstLetter }}
			</template>
		</div>

		<!-- contact data -->
		<div class="app-content-list-item-line-one">
			{{ contact.displayName }}
		</div>
		<div v-if="contact.email" class="app-content-list-item-line-two">
			{{ contact.email }}
		</div>
	</div>
</template>

<script>
export default {
	name: 'ContactsListItem',
	filters: {
		firstLetter(value) {
			return value.charAt(0)
		},
	},
	props: {
		index: {
			type: Number,
			required: true,
		},
		contact: {
			type: Object,
			required: true,
		},
	},
	computed: {
		selectedGroup() {
			return this.$route.params.selectedGroup
		},
		selectedContact() {
			return this.$route.params.selectedContact
		},

		// usable and valid html id for scrollTo
		id() {
			return window.btoa(this.contact.key).slice(0, -2)
		},

		hasPhoto() {
			return this.contact.dav && (this.contact.dav.hasphoto || this.contact.photo)
		},

		avatarStyle() {
			if (this.hasPhoto) {
				return {
					backgroundColor: '#fff',
					// The contact photo gets cropped in a circular shape, which might look odd with transparent photos.
					// This box shadow ensures that there's always a very faint edge hinting at the circle.
					boxShadow: '0 0 5px rgba(0, 0, 0, 0.05) inset',
				}
			}

			try {
				const color = this.contact.uid.toRgb()
				return {
					backgroundColor: `rgb(${color.r}, ${color.g}, ${color.b})`,
				}
			} catch (e) {
				return {
					backgroundColor: 'grey',
				}
			}
		},

		avatarUrl() {
			if (this.contact.photo) {
				return `url(${this.contact.photoUrl})`
			}
			return `url(${this.contact.url}?photo)`
		},
	},
	methods: {
		/**
		 * Checkbox management method
		 */
		toggleSelect() {
			// toggle checkbox here because we stop the propagation to not trigger selectContact
			// therefore the selectContact prevent the checkbox label+input propagation
			this.$refs.selected.checked = !this.$refs.selected.checked
		},

		/**
		 * Select this contact within the list
		 */
		selectContact() {
			// change url with router
			this.$router.push({ name: 'contact', params: { selectedGroup: this.selectedGroup, selectedContact: this.contact.key } })
		},
	},
}
</script>