Merge branch 'master' of ssh://github.com/bd-js/wcui

master
chenjiajian 2023-04-06 18:50:35 +08:00
commit 624f275cee
5 changed files with 98 additions and 36 deletions

View File

@ -241,7 +241,6 @@ class Color extends Component {
position: absolute; position: absolute;
left: 0; left: 0;
top: 0; top: 0;
z-index: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
content: ''; content: '';
@ -256,7 +255,6 @@ class Color extends Component {
.thumb { .thumb {
position: absolute; position: absolute;
z-index: 99;
width: 0; width: 0;
height: 0; height: 0;
@ -293,7 +291,6 @@ class Color extends Component {
position: absolute; position: absolute;
left: 0; left: 0;
top: 0; top: 0;
z-index: 0;
width: 12px; width: 12px;
height: 0; height: 0;
@ -310,7 +307,6 @@ class Color extends Component {
} }
.hue { .hue {
position: relative; position: relative;
z-index: 1;
display: block; display: block;
width: 12px; width: 12px;
height: 180px; height: 180px;
@ -330,7 +326,6 @@ class Color extends Component {
position: absolute; position: absolute;
left: 0; left: 0;
top: 0; top: 0;
z-index: 0;
width: 100%; width: 100%;
height: 12px; height: 12px;
background: linear-gradient(to right, transparent, #f00); background: linear-gradient(to right, transparent, #f00);
@ -340,7 +335,6 @@ class Color extends Component {
position: absolute; position: absolute;
left: 100%; left: 100%;
top: 0; top: 0;
z-index: 0;
width: 0; width: 0;
height: 12px; height: 12px;
@ -358,7 +352,6 @@ class Color extends Component {
.alpha { .alpha {
position: relative; position: relative;
z-index: 9;
display: block; display: block;
width: 100%; width: 100%;
height: 12px; height: 12px;

View File

@ -57,7 +57,7 @@ class Drawer extends Component {
position: fixed; position: fixed;
left: 0; left: 0;
top: 0; top: 0;
z-index: 99; z-index: 9;
width: 100%; width: 100%;
height: 100%; height: 100%;
background: rgba(0, 0, 0, 0.3); background: rgba(0, 0, 0, 0.3);
@ -100,6 +100,7 @@ class Drawer extends Component {
:host([from='left']), :host([from='left']),
:host([from='right']) { :host([from='right']) {
.drawer { .drawer {
top: 0;
width: 50%; width: 50%;
height: 100%; height: 100%;
} }
@ -107,29 +108,22 @@ class Drawer extends Component {
:host([from='top']), :host([from='top']),
:host([from='bottom']) { :host([from='bottom']) {
.drawer { .drawer {
left: 0;
width: 100%; width: 100%;
height: 50%; height: 50%;
} }
} }
:host([from='left']) .drawer { :host([from='left']) .drawer {
left: 0; left: 0;
top: 0;
transform: translateX(-100%);
}
:host([from='top']) .drawer {
left: 0;
top: 0;
transform: translateY(-100%);
} }
:host([from='right']) .drawer { :host([from='right']) .drawer {
right: 0; right: 0;
}
:host([from='top']) .drawer {
top: 0; top: 0;
transform: translateX(100%);
} }
:host([from='bottom']) .drawer { :host([from='bottom']) .drawer {
left: 0;
bottom: 0; bottom: 0;
transform: translateY(100%);
} }
` `
] ]

View File

@ -75,7 +75,6 @@ class TextArea extends Component {
position: absolute; position: absolute;
right: 4px; right: 4px;
bottom: 2px; bottom: 2px;
z-index: 1;
line-height: 1; line-height: 1;
font-size: 12px; font-size: 12px;
color: var(--color-grey-2); color: var(--color-grey-2);

View File

@ -23,12 +23,21 @@ const LANG_TITLE = '提示'
const LANG_BTNS = ['取消', '确定'] const LANG_BTNS = ['取消', '确定']
// 要保证弹层唯一的类型 // 要保证弹层唯一的类型
const UNIQUE_TYPES = ['alert', 'confirm', 'prompt'] const UNIQUE_TYPES = ['alert', 'confirm', 'prompt']
const BUILDIN_TYPES = UNIQUE_TYPES.concat(['notify', 'toast'])
class Layer extends Component { class Layer extends Component {
static props = { static props = {
type: '', type: {
type: String,
default: null,
observer(v) {
this.#wrapped = !BUILDIN_TYPES.includes(v)
}
},
fixed: false,
mask: false, mask: false,
title: { type: String, default: LANG_TITLE, attribute: false }, 'mask-close': false,
title: { type: String, default: '', attribute: false },
content: { type: String, default: '', attribute: false }, content: { type: String, default: '', attribute: false },
btns: [] btns: []
} }
@ -44,6 +53,7 @@ class Layer extends Component {
left: 0; left: 0;
top: 0; top: 0;
width: 100%; width: 100%;
height: 0;
} }
:host([type]) { :host([type]) {
display: flex; display: flex;
@ -76,9 +86,6 @@ class Layer extends Component {
transform: scale(1.01); transform: scale(1.01);
transition: transform 0.1s linear; transition: transform 0.1s linear;
} }
&.blur {
backdrop-filter: blur(5px);
}
&:active { &:active {
z-index: 65536; z-index: 65536;
@ -255,10 +262,16 @@ class Layer extends Component {
} }
} }
} }
:host([blurry]) {
.layer {
backdrop-filter: blur(5px);
}
}
` `
] ]
#wrapped = null #wrapped = false
#dragIns = null #dragIns = null
#resolve = null #resolve = null
@ -275,6 +288,27 @@ class Layer extends Component {
this.promise.host = this this.promise.host = this
} }
#toggleDrag() {
// 这3类弹层不允许拖拽
if (UNIQUE_TYPES.includes(this.type)) {
return
}
if (this.fixed) {
// 如之前有拖拽实例, 先销毁
if (this.#dragIns) {
this.#dragIns.destroy()
this.#dragIns = null
}
return
}
let $title = this.$refs.box.firstElementChild
this.#dragIns = new Drag(this.$refs.box).by($title, {
overflow: !!this.overflow
})
}
#intercept(value) { #intercept(value) {
if (this.intercept) { if (this.intercept) {
this.intercept(value, _ => { this.intercept(value, _ => {
@ -296,6 +330,33 @@ class Layer extends Component {
}) })
} }
// 有遮罩层时
if (this.mask) {
this.$on('click', ev => {
let path = ev.composedPath()
if (path[0] === ev.currentTarget) {
if (UNIQUE_TYPES.includes(this.type)) {
this.$refs.box.classList.toggle('scale', true)
setTimeout(_ => {
this.$refs.box.classList.remove('scale')
}, 100)
} else if (this['mask-close']) {
if (this.#wrapped === false) {
this.#reject()
}
this.close()
}
}
})
if (this['mask-color']) {
this.style.backgroundColor = this['mask-color']
}
}
this.#toggleDrag()
this.$refs.box.$animate() this.$refs.box.$animate()
} }
@ -303,6 +364,12 @@ class Layer extends Component {
this.$refs.box.$animate() this.$refs.box.$animate()
} }
show() {
if (this.#wrapped) {
this.type = 'common'
}
}
/** /**
* 关闭实例 * 关闭实例
* @param force {Boolean} 是否强制关闭 * @param force {Boolean} 是否强制关闭
@ -311,7 +378,7 @@ class Layer extends Component {
// //
if (this.#wrapped) { if (this.#wrapped) {
this.removeAttribute('common') this.type = null
this.$emit('close') this.$emit('close')
} else { } else {
// 有拖拽实例, 先销毁 // 有拖拽实例, 先销毁
@ -344,8 +411,11 @@ class Layer extends Component {
// 按钮的点击事件 // 按钮的点击事件
handleBtnClick(ev) { handleBtnClick(ev) {
if (ev.target.tagName === 'BUTTON') { if (
let idx = +ev.target.dataset.idx ev.target.tagName === 'BUTTON' ||
ev.target.className === 'notify-button'
) {
let idx = +ev.target.dataset.idx || 0
switch (this.type) { switch (this.type) {
case 'alert': case 'alert':
@ -378,14 +448,23 @@ class Layer extends Component {
class="layer__title noselect" class="layer__title noselect"
style=${styleMap({ display: !!this.title ? '' : 'none' })} style=${styleMap({ display: !!this.title ? '' : 'none' })}
> >
${this.title}${this.type === 'notify' ${this.title}
? html`<wc-icon name="close"></wc-icon>` ${this.type === 'notify'
? html`<wc-icon
name="close"
class="notify-button"
@click=${this.handleBtnClick}
></wc-icon>`
: ''} : ''}
</div> </div>
<div class="layer__content"> <div class="layer__content">
<slot></slot> <slot></slot>
</div> </div>
<div class="layer__ctrl noselect" @click=${this.handleBtnClick}> <div
class="layer__ctrl noselect"
style=${styleMap({ display: this.btns.length ? '' : 'none' })}
@click=${this.handleBtnClick}
>
${this.btns.map((s, i) => html`<button data-idx=${i}>${s}</button>`)} ${this.btns.map((s, i) => html`<button data-idx=${i}>${s}</button>`)}
</div> </div>
</div> </div>
@ -463,12 +542,10 @@ function layer(opt = {}) {
layDom.type = opt.type layDom.type = opt.type
layDom.title = opt.title layDom.title = opt.title
if (opt.hasOwnProperty('fixed')) {
layDom.fixed = opt.fixed layDom.fixed = !!opt.fixed
}
layDom.innerHTML = content layDom.innerHTML = content
layDom.wrapped = false // 用于区分是API创建的还是包裹现有的节点
document.body.appendChild(layDom) document.body.appendChild(layDom)
return layDom.promise return layDom.promise

View File

@ -55,7 +55,6 @@ class Scroll extends Component {
position: absolute; position: absolute;
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
z-index: 10240;
opacity: 0; opacity: 0;
user-select: none; user-select: none;
transition: opacity 0.3s linear, visibility 0.3s linear; transition: opacity 0.3s linear, visibility 0.3s linear;