Sharkey/src/client/app/common/views/components/ui/select.vue

204 lines
3.4 KiB
Vue
Raw Normal View History

2018-06-14 14:23:50 +03:00
<template>
<div class="ui-select" :class="[{ focused, filled }, styl]">
<div class="icon" ref="icon"><slot name="icon"></slot></div>
<div class="input" @click="focus">
<span class="label" ref="label"><slot name="label"></slot></span>
<div class="prefix" ref="prefix"><slot name="prefix"></slot></div>
<select ref="input"
:value="v"
:required="required"
@input="$emit('input', $event.target.value)"
@focus="focused = true"
@blur="focused = false">
<slot></slot>
</select>
<div class="suffix"><slot name="suffix"></slot></div>
</div>
<div class="text"><slot name="text"></slot></div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: {
value: {
required: false
},
required: {
type: Boolean,
required: false
2018-09-29 03:11:06 +03:00
},
styl: {
type: String,
required: false,
default: 'line'
2018-06-14 14:23:50 +03:00
}
},
data() {
return {
v: this.value,
2018-09-29 03:11:06 +03:00
focused: false
2018-06-14 14:23:50 +03:00
};
},
computed: {
filled(): boolean {
return this.v != '' && this.v != null;
}
},
watch: {
value(v) {
this.v = v;
}
},
mounted() {
if (this.$refs.prefix) {
this.$refs.label.style.left = (this.$refs.prefix.offsetLeft + this.$refs.prefix.offsetWidth) + 'px';
}
},
methods: {
focus() {
this.$refs.input.focus();
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 13:59:19 +03:00
root(fill)
2018-06-14 14:23:50 +03:00
margin 32px 0
> .icon
position absolute
top 0
left 0
width 24px
text-align center
line-height 32px
color rgba(#000, 0.54)
&:not(:empty) + .input
margin-left 28px
> .input
display flex
if fill
padding 6px 12px
background rgba(#000, 0.035)
border-radius 6px
else
&:before
content ''
display block
position absolute
bottom 0
left 0
right 0
height 1px
2018-09-27 16:50:34 +03:00
background var(--inputBorder)
2018-06-14 14:23:50 +03:00
&:after
content ''
display block
position absolute
bottom 0
left 0
right 0
height 2px
2018-09-26 14:19:35 +03:00
background var(--primary)
2018-06-14 14:23:50 +03:00
opacity 0
transform scaleX(0.12)
transition border 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1)
will-change border opacity transform
> .label
position absolute
top fill ? 6px : 0
left 0
pointer-events none
transition 0.4s cubic-bezier(0.25, 0.8, 0.25, 1)
transition-duration 0.3s
font-size 16px
line-height 32px
color rgba(#000, 0.54)
pointer-events none
//will-change transform
transform-origin top left
transform scale(1)
> select
display block
flex 1
width 100%
padding 0
font inherit
font-weight fill ? bold : normal
font-size 16px
height 32px
2018-09-27 16:50:34 +03:00
color var(--inputText)
2018-06-14 14:23:50 +03:00
background transparent
border none
border-radius 0
outline none
box-shadow none
2018-06-15 01:56:56 +03:00
*
color #000
2018-06-14 14:23:50 +03:00
> .prefix
> .suffix
display block
align-self center
justify-self center
font-size 16px
line-height 32px
color rgba(#000, 0.54)
pointer-events none
> *
display block
min-width 16px
> .prefix
padding-right 4px
> .suffix
padding-left 4px
> .text
margin 6px 0
font-size 13px
*
margin 0
&.focused
> .input
if fill
background rgba(#000, 0.05)
else
&:after
opacity 1
transform scaleX(1)
> .label
2018-09-26 14:19:35 +03:00
color var(--primary)
2018-06-14 14:23:50 +03:00
&.focused
&.filled
> .input
> .label
2018-06-14 15:38:39 +03:00
top fill ? -24px : -17px
2018-06-14 14:23:50 +03:00
left 0 !important
2018-06-14 15:38:39 +03:00
transform scale(0.75)
2018-06-14 14:23:50 +03:00
2018-09-28 13:59:19 +03:00
.ui-select
2018-06-14 14:23:50 +03:00
&.fill
2018-09-28 13:59:19 +03:00
root(true)
2018-06-14 14:23:50 +03:00
&:not(.fill)
2018-09-28 13:59:19 +03:00
root(false)
2018-06-14 14:23:50 +03:00
</style>