// @name popup-inject
// @description 向网页中插入一个侧边按钮和一个弹窗
// @version 1.0.6
// @author paso
;(function () {
'use strict'
const _injectHtml = (config, resolve) => {
document.head.insertAdjacentHTML(
'beforeend',
`
<style data-namespace="${config.namespace}">
.${config.namespace} {
color: black;
}
.${config.namespace} * {
box-sizing: border-box;
}
.${config.namespace} *::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.${config.namespace} *::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0, 0, 0, 0.5);
}
.${config.namespace} *::-webkit-scrollbar-track {
border-radius: 4px;
background-color: transparent;
}
.${config.namespace} .flex {
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: flex-start;
}
.${config.namespace} .flex.col {
flex-direction: column;
}
.${config.namespace} .sticky-bar {
position: fixed;
top: ${config.location};
left: 0;
transform: translateX(calc(12px - ${config.collapse}));
z-index: 99999999;
background: #3D7FFF;
color: white;
padding: 2px 10px 2px 4px;
cursor: pointer;
user-select: none;
border-radius: 0 12px 12px 0;
box-shadow: 0 2px 4px 1px #0006;
transition: transform 0.5s ease;
}
.${config.namespace} .sticky-bar:hover {
transform: none;
}
.${config.namespace} .mask {
position: fixed;
inset: 0;
padding: 24px;
overflow: auto;
z-index: 99999999;
background-color: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity .6s;
}
.${config.namespace}.open .mask {
opacity: 1;
pointer-events: all;
}
.${config.namespace} .popup {
position: relative;
margin: auto;
padding: 16px;
background: #f0f2f5;
border-radius: 2px;
box-shadow: 0 1px 12px 2px rgba(0, 0, 0, 0.4);
transform: scale(0);
transition: transform .3s;
}
.${config.namespace}.open .popup {
transform: scale(1);
}
.${config.namespace} label {
margin-top: .5em;
margin-bottom: 0;
user-select: none;
}
.${config.namespace} .monospace {
font-family: v-mono, Consolas, SFMono-Regular, Menlo, Courier, v-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, monospace, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.${config.namespace} .button {
user-select: none;
min-width: unset;
min-height: unset;
margin: unset;
padding: 4px 16px;
color: #fff;
border: 1px solid #3D7FFF;
border-radius: 2px;
background: #3D7FFF;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
}
.${config.namespace} textarea {
background: white;
resize: vertical;
}
.${config.namespace} .input, .${config.namespace} .button {
height: 32px;
transition: all 0.3s, height 0s;
}
.${config.namespace} .button:before, .${config.namespace} .button:after {
content: none;
}
.${config.namespace} .button:hover, .${config.namespace} .button:focus {
border-color: #669eff;
background: #669eff;
}
.${config.namespace} .button:active {
border-color: #295ed9;
background: #295ed9;
}
.${config.namespace} .input {
padding: 4px 8px;
background: white;
border: 1px solid #d9d9d9;
border-radius: 2px;
}
.${config.namespace} .input:hover {
border-color: #669eff;
outline: 0;
}
.${config.namespace} .input:focus {
border-color: #669eff;
box-shadow: 0 0 0 2px rgba(61, 127, 255, 0.2);
border-right-width: 1px;
outline: 0;
}
${config.style.replaceAll(/<\/?style>/g, '')}
</style>`
)
const container = createElement('div', { class: config.namespace, 'data-version': 'v1.0.5' })
const stickyBar = createElement('div', { class: 'sticky-bar' }, config.actionName)
const mask = createElement('div', { class: 'mask' })
const popup = createElement('div', { class: 'popup flex col' }, config.content)
container.append(stickyBar, mask)
mask.append(popup)
excludeClick(mask, popup, () => {
container.classList.remove('open')
config.onPopHide && config.onPopHide()
})
withDrag(
stickyBar,
(e, d) => {
requestAnimationFrame(() => {
let height = document.documentElement.clientHeight - d.outerHeight
let newTop = e.pageY - d.innerOffsetY
if (newTop >= 0 && newTop <= height) {
stickyBar.style.top = `${newTop}px`
}
})
},
() => {
container.classList.add('open')
config.onPopShow && config.onPopShow()
}
)
document.body.append(container)
// ---- other code
resolve && resolve({ container, stickyBar, mask, popup })
}
function createElement(tag, attrs, children) {
const el = document.createElement(tag)
if (attrs) {
Object.entries(attrs).forEach(([k, v]) => {
el.setAttribute(k, v)
})
}
if (children instanceof HTMLElement) {
el.append(children)
} else if (typeof children === 'string') {
el.innerHTML = children
}
return el
}
function excludeClick(included, excluded, onClick) {
const _data = {
excludeDown: false,
inIncluded: false,
inExcluded: false
}
excluded.addEventListener('mousedown', () => (_data.excludeDown = true))
excluded.addEventListener('mouseup', () => (_data.excludeDown = false))
excluded.addEventListener('mouseenter', () => (_data.inExcluded = true))
excluded.addEventListener('mouseleave', () => (_data.inExcluded = false))
included.addEventListener('mouseenter', () => (_data.inIncluded = true))
included.addEventListener('mouseleave', () => (_data.inIncluded = false))
included.addEventListener('click', (e) => {
if (_data.inIncluded && !_data.inExcluded) {
if (_data.excludeDown) {
_data.excludeDown = false
} else {
onClick?.(e)
}
}
})
}
function withDrag(el, onMove, onClick) {
const _data = {
outerHeight: 0,
innerOffsetY: 0,
justClick: false
}
const onElMouseMove = (e) => {
_data.justClick = false
onMove?.(e, _data)
}
const onElMouseUp = leftKey(() => {
document.removeEventListener('mousemove', onElMouseMove)
document.removeEventListener('mouseup', onElMouseUp)
})
el.addEventListener(
'mousedown',
leftKey((e) => {
_data.justClick = true
const elComputedStyle = window.getComputedStyle(el)
_data.innerOffsetY = e.pageY - getNumber(elComputedStyle.top)
_data.outerHeight =
el.clientHeight + getNumber(elComputedStyle.borderTopWidth) + getNumber(elComputedStyle.borderBottomWidth)
document.addEventListener('mousemove', onElMouseMove)
document.addEventListener('mouseup', onElMouseUp)
})
)
el.addEventListener(
'mouseup',
leftKey((e) => {
if (_data.justClick) {
onClick?.(e, _data)
_data.justClick = false
}
onElMouseUp()
e.stopPropagation()
})
)
}
function leftKey(fn) {
return (...args) => {
let key = args && args[0] && args[0].button
if (key === 0 || key === void 0) {
fn.apply(this, args)
}
}
}
function getNumber(str) {
if (str) {
let mArr = str.match(/\d+(\.\d*)?|\.\d+/)
if (mArr && mArr.length) {
return parseFloat(mArr[0])
}
}
return void 0
}
function _checkConfig(config) {
if (!config) throw new Error('config is required. you should call window.paso.injectPopup(config)')
if (!config.namespace) throw new Error('config.namespace is required and it cannot be empty.')
if (!/^[-\w]+$/.test(config.namespace)) throw new Error('config.namespace must match the regex /^[-\\w]+$/.')
}
if (!window.paso || !(window.paso instanceof Object)) window.paso = {}
window.paso.injectPopup = (config) => {
_checkConfig(config)
const _config = Object.assign(
{},
{
namespace: '',
actionName: 'Action',
collapse: '100%',
location: '25%',
content: '<label>Hello World</label>',
style: '',
onPopShow() {},
onPopHide() {}
},
config
)
return new Promise((resolve) => {
_injectHtml(_config, resolve)
})
}
})()