增加input组件
parent
acc957341a
commit
1003ec1e0d
16
build.dev.js
16
build.dev.js
|
@ -87,12 +87,22 @@ function mkWCFile({ style, html, js }) {
|
||||||
/import ([\w]*) from '([a-z0-9\/\.\-_]*)'/g,
|
/import ([\w]*) from '([a-z0-9\/\.\-_]*)'/g,
|
||||||
'import $1 from "$2.js"'
|
'import $1 from "$2.js"'
|
||||||
)
|
)
|
||||||
|
.replace(/constructor\([^)]?\)\s+\{/, 'constructor() {\n super()')
|
||||||
.replace(
|
.replace(
|
||||||
'/* render */',
|
'/* render */',
|
||||||
`
|
`
|
||||||
super()
|
Object.defineProperty(this, 'root', {
|
||||||
this.root = this.attachShadow({ mode: 'open' })
|
value: this.attachShadow({ mode: 'open' }),
|
||||||
this.props = ${props}
|
writable: true,
|
||||||
|
enumerable: false,
|
||||||
|
configurable: true
|
||||||
|
})
|
||||||
|
Object.defineProperty(this, 'props', {
|
||||||
|
value: ${props},
|
||||||
|
writable: true,
|
||||||
|
enumerable: false,
|
||||||
|
configurable: true
|
||||||
|
})
|
||||||
|
|
||||||
this.root.innerHTML = \`<style>${style}</style>${html}\`
|
this.root.innerHTML = \`<style>${style}</style>${html}\`
|
||||||
`
|
`
|
||||||
|
|
|
@ -100,8 +100,19 @@ function mkWCFile({ style, html, js }) {
|
||||||
'/* render */',
|
'/* render */',
|
||||||
`
|
`
|
||||||
super()
|
super()
|
||||||
this.root = this.attachShadow({ mode: 'open' })
|
|
||||||
this.props = ${props}
|
Object.defineProperty(this, 'root', {
|
||||||
|
value: this.attachShadow({ mode: 'open' }),
|
||||||
|
writable: true,
|
||||||
|
enumerable: false,
|
||||||
|
configurable: true
|
||||||
|
})
|
||||||
|
Object.defineProperty(this, 'props', {
|
||||||
|
value: ${props},
|
||||||
|
writable: true,
|
||||||
|
enumerable: false,
|
||||||
|
configurable: true
|
||||||
|
})
|
||||||
|
|
||||||
this.root.innerHTML = \`<style>${style}</style>${html}\`
|
this.root.innerHTML = \`<style>${style}</style>${html}\`
|
||||||
`
|
`
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<label>
|
<label>
|
||||||
<slot name="left"></slot>
|
<slot class="prepend" name="prepend"></slot>
|
||||||
<input />
|
${input}
|
||||||
<wc-icon></wc-icon>
|
<wc-icon class="icon"></wc-icon>
|
||||||
<slot class="append" name="append"></slot>
|
<slot class="append" name="append"></slot>
|
||||||
</label>
|
</label>
|
||||||
</template>
|
</template>
|
||||||
|
@ -12,23 +12,26 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
color: nth($cd, 2);
|
color: nth($cd, 2);
|
||||||
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
min-width: 32px;
|
min-width: 64px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
border: 1px solid nth($cp, 3);
|
border: 1px solid nth($cp, 3);
|
||||||
border-radius: 4px;
|
border-radius: inherit;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
cursor: inherit;
|
cursor: text;
|
||||||
|
|
||||||
input,
|
input,
|
||||||
textarea {
|
textarea {
|
||||||
|
width: 100%;
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: inherit;
|
border-radius: inherit;
|
||||||
|
@ -37,15 +40,60 @@ label {
|
||||||
background: none;
|
background: none;
|
||||||
outline: none;
|
outline: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
cursor: inherit;
|
||||||
}
|
}
|
||||||
|
textarea {
|
||||||
|
height: 100%;
|
||||||
|
padding: 5px;
|
||||||
|
resize: none;
|
||||||
|
}
|
||||||
|
.prepend,
|
||||||
.append {
|
.append {
|
||||||
display: inherit;
|
display: none;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
width: auto;
|
width: auto;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
padding: 0 18px;
|
padding: 0 10px;
|
||||||
|
background: nth($cp, 1);
|
||||||
|
}
|
||||||
|
.prepend {
|
||||||
|
border-right: 1px solid nth($cp, 3);
|
||||||
|
border-radius: 4px 0 0 4px;
|
||||||
|
}
|
||||||
|
.append {
|
||||||
border-left: 1px solid nth($cp, 3);
|
border-left: 1px solid nth($cp, 3);
|
||||||
border-radius: 0 4px 4px 0;
|
border-radius: 0 4px 4px 0;
|
||||||
|
}
|
||||||
|
&[prepend] .prepend {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
&[append] .append {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
/* ----- */
|
||||||
|
.icon {
|
||||||
|
padding: 0 5px;
|
||||||
|
--size: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* --- */
|
||||||
|
:host([disabled]) label {
|
||||||
background: nth($cp, 1);
|
background: nth($cp, 1);
|
||||||
|
cursor: not-allowed;
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
|
:host(:focus-within) {
|
||||||
|
box-shadow: 0 0 3px nth($ct, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
:host([type='textarea']) {
|
||||||
|
display: flex;
|
||||||
|
height: 80px;
|
||||||
|
label {
|
||||||
|
overflow: auto;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -53,18 +101,142 @@ label {
|
||||||
<script>
|
<script>
|
||||||
import '../icon/index'
|
import '../icon/index'
|
||||||
|
|
||||||
|
const TYPES = ['text', 'textarea', 'password']
|
||||||
|
const INPUTS = {
|
||||||
|
text: '<input spellcheck="false">',
|
||||||
|
textarea: '<textarea spellcheck="false"></textarea>'
|
||||||
|
}
|
||||||
|
|
||||||
export default class Input {
|
export default class Input {
|
||||||
props = {
|
props = {
|
||||||
value: '',
|
value: '',
|
||||||
defaultValue: '',
|
icon: '',
|
||||||
placeholder: ''
|
type: 'text',
|
||||||
|
label: '',
|
||||||
|
placeholder: '',
|
||||||
|
autofocus: false,
|
||||||
|
disabled: false
|
||||||
}
|
}
|
||||||
constructor() {
|
constructor() {
|
||||||
|
var type = this.getAttribute('type')
|
||||||
|
var input = ''
|
||||||
|
if (type !== 'textarea') {
|
||||||
|
type = 'text'
|
||||||
|
}
|
||||||
|
input = INPUTS[type]
|
||||||
|
|
||||||
/* render */
|
/* render */
|
||||||
|
|
||||||
|
this.props.type = type
|
||||||
|
|
||||||
this.__OUTER__ = this.root.children[1]
|
this.__OUTER__ = this.root.children[1]
|
||||||
|
this.__PREPEND__ = this.__OUTER__.children[0]
|
||||||
this.__INPUT__ = this.__OUTER__.children[1]
|
this.__INPUT__ = this.__OUTER__.children[1]
|
||||||
this.__ICO__ = this.__OUTER__.children[2]
|
this.__ICO__ = this.__OUTER__.children[2]
|
||||||
|
this.__APPEND__ = this.__OUTER__.children[3]
|
||||||
|
}
|
||||||
|
|
||||||
|
get disabled() {
|
||||||
|
return this.props.disabled
|
||||||
|
}
|
||||||
|
|
||||||
|
set disabled(val) {
|
||||||
|
var type = typeof val
|
||||||
|
|
||||||
|
if (val === this.props.disabled) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if ((type === 'boolean' && val) || type !== 'boolean') {
|
||||||
|
this.props.disabled = true
|
||||||
|
this.setAttribute('disabled', '')
|
||||||
|
this.__INPUT__.setAttribute('disabled', '')
|
||||||
|
} else {
|
||||||
|
this.props.disabled = false
|
||||||
|
this.removeAttribute('disabled')
|
||||||
|
this.__INPUT__.removeAttribute('disabled')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
get value() {
|
||||||
|
return this.__INPUT__.value
|
||||||
|
}
|
||||||
|
|
||||||
|
set value(val) {
|
||||||
|
this.props.value = val
|
||||||
|
this.__INPUT__.value = val
|
||||||
|
}
|
||||||
|
|
||||||
|
get type() {
|
||||||
|
return this.__INPUT__.type
|
||||||
|
}
|
||||||
|
|
||||||
|
set type(val) {
|
||||||
|
if (val !== 'textarea') {
|
||||||
|
this.__INPUT__.type = val
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
mounted() {
|
||||||
|
var prepend = this.__PREPEND__.assignedNodes()
|
||||||
|
var append = this.__APPEND__.assignedNodes()
|
||||||
|
|
||||||
|
// 相同插槽, 只允许1个
|
||||||
|
while (prepend.length > 1) {
|
||||||
|
this.removeChild(prepend.pop())
|
||||||
|
}
|
||||||
|
while (append.length > 1) {
|
||||||
|
this.removeChild(append.pop())
|
||||||
|
}
|
||||||
|
|
||||||
|
if (prepend.length && this.props.type !== 'textarea') {
|
||||||
|
this.__OUTER__.setAttribute('prepend', '')
|
||||||
|
}
|
||||||
|
if (append.length && this.props.type !== 'textarea') {
|
||||||
|
this.__OUTER__.setAttribute('append', '')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
watch(name, old, val) {
|
||||||
|
if (old === val) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
switch (name) {
|
||||||
|
case 'icon':
|
||||||
|
this.props.icon = val
|
||||||
|
if (val) {
|
||||||
|
this.__ICO__.setAttribute('is', val)
|
||||||
|
} else {
|
||||||
|
this.removeAttribute('icon')
|
||||||
|
this.__ICO__.removeAttribute('is')
|
||||||
|
}
|
||||||
|
break
|
||||||
|
|
||||||
|
case 'autofocus':
|
||||||
|
setTimeout(_ => {
|
||||||
|
this.__INPUT__.focus()
|
||||||
|
}, 10)
|
||||||
|
break
|
||||||
|
|
||||||
|
// label和placeholder 功能相同
|
||||||
|
case 'label':
|
||||||
|
case 'placeholder':
|
||||||
|
this.__INPUT__.setAttribute('placeholder', val)
|
||||||
|
break
|
||||||
|
|
||||||
|
case 'type':
|
||||||
|
if (~TYPES.indexOf(val)) {
|
||||||
|
this.type = val
|
||||||
|
} else {
|
||||||
|
this.type = 'text'
|
||||||
|
}
|
||||||
|
break
|
||||||
|
|
||||||
|
case 'disabled':
|
||||||
|
if (val === '') {
|
||||||
|
this[name] = true
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -5,16 +5,14 @@
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
:host {
|
:host {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
color: nth($cd, 2);
|
color: nth($cd, 2);
|
||||||
}
|
}
|
||||||
:host(:not([is])) {
|
:host(:not([is])) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.icon {
|
.icon {
|
||||||
width: inherit;
|
width: var(--size, 32px);
|
||||||
height: inherit;
|
height: var(--size, 32px);
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
vertical-align: -0.1em;
|
vertical-align: -0.1em;
|
||||||
|
|
||||||
|
|
Reference in New Issue