76 lines
2.1 KiB
JavaScript
76 lines
2.1 KiB
JavaScript
export function createElement({ innerText, textContent, onclick, children = [], dataset, classList = [], ...attributes }, tagName = 'div') {
|
|
const element = document.createElement(tagName)
|
|
for (const key in attributes) {
|
|
element.setAttribute(key, attributes[key])
|
|
}
|
|
if (classList.length) element.classList.add(...classList)
|
|
if (innerText) element.innerText = innerText
|
|
if (textContent) element.textContent = textContent
|
|
if (onclick) element.onclick = onclick
|
|
if (dataset) Object.keys(dataset).forEach(key => element.dataset[key] = dataset[key])
|
|
if (children) children.forEach(child => element.appendChild(child))
|
|
return element
|
|
}
|
|
|
|
export function List(options) {
|
|
return createElement(options, 'ul')
|
|
}
|
|
|
|
export function ListItem(options) {
|
|
return createElement(options, 'li')
|
|
}
|
|
|
|
export function Span(options) {
|
|
return createElement(options, 'span')
|
|
}
|
|
|
|
export function Button(options) {
|
|
return createElement(options, 'button')
|
|
}
|
|
|
|
export function Input(options) {
|
|
return createElement(options, 'input')
|
|
}
|
|
|
|
export function Avatar(options) {
|
|
const element = createElement(options, 'img')
|
|
element.onerror = () => element.src = '/favicon.ico'
|
|
return element
|
|
}
|
|
|
|
// 弹出窗口, 高斯模糊背景, 进入离开动画过渡
|
|
export function Dialog(options) {
|
|
const element = createElement(options, 'div')
|
|
const content = createElement({ classList: ['content'] })
|
|
element.style.cssText = `
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1000;
|
|
width: 100%;
|
|
height: 100%;
|
|
backdrop-filter: blur(5px);
|
|
duration: 0.5s;
|
|
transition: all 0.5s;
|
|
`
|
|
content.classList.add('dialog')
|
|
content.style.cssText = `
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
padding: 1em;
|
|
background-color: #fff;
|
|
border-radius: 0.5em;
|
|
box-shadow: 0 0 1em #ccc;
|
|
`
|
|
element.appendChild(content)
|
|
// 点击空白处关闭
|
|
element.onclick = event => {
|
|
if (event.target === element) {
|
|
element.remove()
|
|
}
|
|
}
|
|
return element
|
|
}
|