blob: bdc8af426aba5d39c707fc0983196c00322cf57b (
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
|
<template>
<div class="progress-indicator-wrapper">
<div class="progress-indicator" :style="indicatorStyle"></div>
<p v-if="hasDescription" class="progress-indicator-description">
{{ description }}
</p>
<p v-else class="progress-indicator-description-default">
{{ $gettext('Lade...') }}
</p>
</div>
</template>
<script>
export default {
name: 'studip-progress-indicator',
props: {
description: {
type: String,
required: false
},
size: {
type: Number,
default: 32
}
},
computed: {
indicatorStyle() {
return {
backgroundSize: `${this.size}px`,
height: `${this.size}px`
};
},
hasDescription () {
return this.description?.trim().length > 0;
}
}
}
</script>
|