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

VideoBackground.vue « shared « CallView « components « src - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ff2878ba1a1cbcd4c4d52927544508663505e30 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<!--
  - @copyright Copyright (c) 2019 Marco Ambrosini <marcoambrosini@pm.me>
  -
  - @author Marco Ambrosini <marcoambrosini@pm.me>
  -
  - @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="video-backgroundbackground">
		<div
			ref="darkener"
			class="darken">
			<ResizeObserver
				v-if="gridBlur === 0"
				class="observer"
				@notify="setBlur" />
		</div>
		<img
			v-if="hasPicture"
			ref="backgroundImage"
			:src="backgroundImage"
			:style="backgroundStyle"
			class="video-background__picture"
			alt="">
		<div v-else
			:style="{'background-color': backgroundColor }"
			class="video-background" />
	</div>
</template>

<script>
import axios from '@nextcloud/axios'
import usernameToColor from '@nextcloud/vue/dist/Functions/usernameToColor'
import { generateUrl } from '@nextcloud/router'
import { ResizeObserver } from 'vue-resize'
import { getBuilder } from '@nextcloud/browser-storage'
import browserCheck from '../../../mixins/browserCheck'
import blur from '../../../utils/imageBlurrer'

const browserStorage = getBuilder('nextcloud').persist().build()

// note: this info is shared with the Avatar component
function getUserHasAvatar(userId) {
	const flag = browserStorage.getItem('user-has-avatar.' + userId)
	if (typeof flag === 'string') {
		return Boolean(flag)
	}
	return null
}

function setUserHasAvatar(userId, flag) {
	browserStorage.setItem('user-has-avatar.' + userId, flag)
}

export default {
	name: 'VideoBackground',
	components: {
		ResizeObserver,
	},

	mixins: [
		browserCheck,
	],

	props: {
		displayName: {
			type: String,
			default: null,
		},
		user: {
			type: String,
			default: '',
		},
		gridBlur: {
			type: Number,
			default: 0,
		},
	},

	data() {
		return {
			hasPicture: false,
			useCssBlurFilter: true,
			blur: 0,
			blurredBackgroundImage: null,
			blurredBackgroundImageCache: {},
			blurredBackgroundImageSource: null,
			pendingGenerateBlurredBackgroundImageCount: 0,
			isDestroyed: false,
		}
	},

	computed: {
		backgroundColor() {
			// If the prop is empty. We're not checking for the default value
			// because the user's displayName might be '?'
			if (!this.displayName) {
				return `var(--color-text-maxcontrast)`
			} else {
				const color = usernameToColor(this.displayName)
				return `rgb(${color.r}, ${color.g}, ${color.b})`
			}
		},
		backgroundImage() {
			return this.useCssBlurFilter ? this.backgroundImageUrl : this.blurredBackgroundImage
		},
		backgroundImageUrl() {
			if (!this.user) {
				return null
			}

			return generateUrl(`avatar/${this.user}/300`)
		},
		backgroundBlur() {
			return this.gridBlur ? this.gridBlur : this.blur
		},
		backgroundStyle() {
			if (!this.useCssBlurFilter) {
				return {}
			}

			return {
				filter: `blur(${this.backgroundBlur}px)`,
			}
		},
		// Special computed property to combine the properties that should be
		// watched to set (or not) the blurred background image source.
		backgroundImageUrlToBlur() {
			if (this.useCssBlurFilter) {
				return null
			}

			return this.backgroundImageUrl
		},
		// Special computed property to combine the properties that should be
		// watched to generate (or not) the blurred background image.
		generatedBackgroundBlur() {
			if (!this.hasPicture || this.useCssBlurFilter) {
				return false
			}

			if (!this.blurredBackgroundImageSource) {
				return false
			}

			return this.backgroundBlur
		},
	},

	watch: {
		backgroundImageUrlToBlur: {
			immediate: true,
			handler() {
				this.blurredBackgroundImageSource = null

				if (!this.backgroundImageUrlToBlur) {
					return
				}

				const image = new Image()
				image.onload = () => {
					createImageBitmap(image).then(imageBitmap => {
						this.blurredBackgroundImageSource = imageBitmap
					})
				}
				image.src = this.backgroundImageUrlToBlur
			},
		},
		generatedBackgroundBlur: {
			immediate: true,
			handler() {
				if (this.generatedBackgroundBlur === false) {
					return
				}

				this.generateBlurredBackgroundImage()
			},
		},
	},

	async beforeMount() {
		if (this.isChrome) {
			this.useCssBlurFilter = false
		}

		if (!this.user) {
			return
		}

		// check if hasAvatar info is already known
		const userHasAvatar = getUserHasAvatar(this.user)
		if (typeof userHasAvatar === 'boolean') {
			this.hasPicture = userHasAvatar
			return
		}

		try {
			await axios.get(generateUrl(`avatar/${this.user}/300`))

			this.hasPicture = true
			setUserHasAvatar(this.user, true)
		} catch (exception) {
			console.debug(exception)
		}
	},

	async mounted() {
		if (!this.gridBlur) {
			// Initialise blur
			this.setBlur({
				width: this.$refs['darkener'].clientWidth,
				height: this.$refs['darkener'].clientHeight,
			})
		}
	},

	beforeDestroy() {
		this.isDestroyed = true
	},

	methods: {
		// Calculate the background blur based on the height of the background element
		setBlur({ width, height }) {
			this.blur = this.$store.getters.getBlurRadius(width, height)
		},

		generateBlurredBackgroundImage() {
			// Reset image source so the width and height are adjusted to
			// the element rather than to the previous image being shown.
			this.$refs.backgroundImage.src = ''

			let width = this.$refs.backgroundImage.width
			let height = this.$refs.backgroundImage.height

			// Restore the current background so it is shown instead of an empty
			// background while the new one is being generated.
			this.$refs.backgroundImage.src = this.blurredBackgroundImage

			const sourceAspectRatio = this.blurredBackgroundImageSource.width / this.blurredBackgroundImageSource.height
			const canvasAspectRatio = width / height

			if (canvasAspectRatio > sourceAspectRatio) {
				height = width / sourceAspectRatio
			} else if (canvasAspectRatio < sourceAspectRatio) {
				width = height * sourceAspectRatio
			}

			const cacheId = this.backgroundImageUrl + '-' + width + '-' + height + '-' + this.backgroundBlur
			if (this.blurredBackgroundImageCache[cacheId]) {
				this.blurredBackgroundImage = this.blurredBackgroundImageCache[cacheId]

				return
			}

			if (this.pendingGenerateBlurredBackgroundImageCount) {
				this.pendingGenerateBlurredBackgroundImageCount++

				return
			}

			this.pendingGenerateBlurredBackgroundImageCount = 1

			blur(this.blurredBackgroundImageSource, width, height, this.backgroundBlur).then(image => {
				if (this.isDestroyed) {
					return
				}

				this.blurredBackgroundImage = image
				this.blurredBackgroundImageCache[cacheId] = this.blurredBackgroundImage

				const generateBlurredBackgroundImageCalledAgain = this.pendingGenerateBlurredBackgroundImageCount > 1

				this.pendingGenerateBlurredBackgroundImageCount = 0

				if (generateBlurredBackgroundImageCalledAgain) {
					this.generateBlurredBackgroundImage()
				}
			})
		},
	},
}
</script>

<style lang="scss" scoped>
.video-background {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	&__picture {
		/* Make pic to at least 100% wide and tall */
		min-width: 105%;
		min-height: 105%;

		/* Setting width & height to auto prevents the browser from stretching or squishing the pic */
		width: auto;
		height: auto;

		/* Center the video */
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%)
	}

	h3 {
		color: white;
		position: absolute;
		top: 40%;
		left: 50%;
		font-size: 50px;
		font-weight: 500;
		text-transform: uppercase;
	}
}

.darken {
	background-color: black;
	opacity: 12%;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

</style>