akkoma-fe/src/components/opacity_input/opacity_input.vue

49 lines
967 B
Vue
Raw Normal View History

2018-10-07 16:59:22 +00:00
<template>
2019-07-05 07:17:44 +00:00
<div
class="opacity-control style-control"
:class="{ disabled: !present || disabled }"
>
<label
:for="name"
class="label"
>
{{ $t('settings.style.common.opacity') }}
</label>
<Checkbox
2019-07-05 07:17:44 +00:00
v-if="typeof fallback !== 'undefined'"
:checked="present"
:disabled="disabled"
class="opt"
2020-01-12 15:59:41 +00:00
@change="$emit('input', !present ? fallback : undefined)"
2019-07-05 07:17:44 +00:00
/>
<input
:id="name"
class="input-number"
type="number"
:value="value || fallback"
:disabled="!present || disabled"
max="1"
min="0"
step=".05"
@input="$emit('input', $event.target.value)"
>
</div>
2018-10-07 16:59:22 +00:00
</template>
<script>
import Checkbox from '../checkbox/checkbox.vue'
2018-10-07 16:59:22 +00:00
export default {
components: {
Checkbox
},
2020-01-12 15:59:41 +00:00
props: [
'name', 'value', 'fallback', 'disabled'
],
2018-10-07 16:59:22 +00:00
computed: {
present () {
return typeof this.value !== 'undefined'
}
}
}
</script>