summaryrefslogtreecommitdiffstats
path: root/src/components/ProcessingScreen.vue
blob: 42ca511bb39bef406f17e09931e3080644c8b021 (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
<template>
	<div>
		<EmptyContent :description="desc"
			:name="title"
			class="processing-screen__wrapper">
			<template #icon>
				<IconContact :size="20" />
			</template>
		</EmptyContent>
		<div class="processing-screen__progress">
			<progress :max="total" :value="progress" />
		</div>
	</div>
</template>

<script>
import { NcEmptyContent as EmptyContent } from '@nextcloud/vue'
import IconContact from 'vue-material-design-icons/AccountMultiple.vue'
export default {
	name: 'ProcessingScreen',

	components: {
		EmptyContent,
		IconContact,
	},

	props: {
		total: {
			type: Number,
			required: true,
		},
		progress: {
			type: Number,
			required: true,
		},
		desc: {
			type: String,
			required: true,
		},
		title: {
			type: String,
			required: true,
		},
	},
}
</script>

<style lang="scss" scoped>
.processing-screen {
	&__wrapper {
		display: flex;
		flex-direction: column;
		width: auto;
		margin: 50px;

		// Progress &desc wrapper
		&::v-deep > p {
			display: flex;
			align-items: center;
			flex-direction: column;
			width: 80%;
			margin: auto;
		}
	}

	&__progress {
		padding: 0 12px;
	}
}
</style>