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
|
<!--
- SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="clear-at-select">
<label class="clear-at-select__label" for="clearStatus">
{{ $t('user_status', 'Clear status after') }}
</label>
<NcSelect input-id="clearStatus"
class="clear-at-select__select"
:options="options"
:value="option"
:clearable="false"
placement="top"
@option:selected="select" />
</div>
</template>
<script>
import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js'
import { getAllClearAtOptions } from '../services/clearAtOptionsService.js'
import { clearAtFilter } from '../filters/clearAtFilter.js'
export default {
name: 'ClearAtSelect',
components: {
NcSelect,
},
props: {
clearAt: {
type: Object,
default: null,
},
},
data() {
return {
options: getAllClearAtOptions(),
}
},
computed: {
/**
* Returns an object of the currently selected option
*
* @return {object}
*/
option() {
return {
clearAt: this.clearAt,
label: clearAtFilter(this.clearAt),
}
},
},
methods: {
/**
* Triggered when the user selects a new option.
*
* @param {object=} option The new selected option
*/
select(option) {
if (!option) {
return
}
this.$emit('select-clear-at', option.clearAt)
},
},
}
</script>
<style lang="scss" scoped>
.clear-at-select {
display: flex;
margin-bottom: 10px;
align-items: center;
&__label {
margin-right: 12px;
}
&__select {
flex-grow: 1;
min-width: 215px;
}
}
</style>
|