2025-04-30 19:13:03 +08:00
|
|
|
import { useAppStore } from '@/store/modules/app'
|
|
|
|
import { watch } from 'vue'
|
|
|
|
|
2023-02-11 00:44:00 +08:00
|
|
|
const domSymbol = Symbol('watermark-dom')
|
|
|
|
|
|
|
|
export function useWatermark(appendEl: HTMLElement | null = document.body) {
|
|
|
|
let func: Fn = () => {}
|
|
|
|
const id = domSymbol.toString()
|
2025-04-30 19:13:03 +08:00
|
|
|
const appStore = useAppStore()
|
|
|
|
let watermarkStr = ''
|
|
|
|
|
2023-02-11 00:44:00 +08:00
|
|
|
const clear = () => {
|
|
|
|
const domId = document.getElementById(id)
|
|
|
|
if (domId) {
|
|
|
|
const el = appendEl
|
|
|
|
el && el.removeChild(domId)
|
|
|
|
}
|
|
|
|
window.removeEventListener('resize', func)
|
|
|
|
}
|
|
|
|
const createWatermark = (str: string) => {
|
|
|
|
clear()
|
|
|
|
|
|
|
|
const can = document.createElement('canvas')
|
|
|
|
can.width = 300
|
|
|
|
can.height = 240
|
|
|
|
|
|
|
|
const cans = can.getContext('2d')
|
|
|
|
if (cans) {
|
|
|
|
cans.rotate((-20 * Math.PI) / 120)
|
|
|
|
cans.font = '15px Vedana'
|
2025-04-30 19:13:03 +08:00
|
|
|
cans.fillStyle = appStore.getIsDark ? 'rgba(255, 255, 255, 0.15)' : 'rgba(0, 0, 0, 0.15)'
|
2023-02-11 00:44:00 +08:00
|
|
|
cans.textAlign = 'left'
|
|
|
|
cans.textBaseline = 'middle'
|
|
|
|
cans.fillText(str, can.width / 20, can.height)
|
|
|
|
}
|
|
|
|
|
|
|
|
const div = document.createElement('div')
|
|
|
|
div.id = id
|
|
|
|
div.style.pointerEvents = 'none'
|
|
|
|
div.style.top = '0px'
|
|
|
|
div.style.left = '0px'
|
|
|
|
div.style.position = 'absolute'
|
|
|
|
div.style.zIndex = '100000000'
|
|
|
|
div.style.width = document.documentElement.clientWidth + 'px'
|
|
|
|
div.style.height = document.documentElement.clientHeight + 'px'
|
|
|
|
div.style.background = 'url(' + can.toDataURL('image/png') + ') left top repeat'
|
|
|
|
const el = appendEl
|
|
|
|
el && el.appendChild(div)
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
|
|
|
function setWatermark(str: string) {
|
2025-04-30 19:13:03 +08:00
|
|
|
watermarkStr = str
|
2023-02-11 00:44:00 +08:00
|
|
|
createWatermark(str)
|
|
|
|
func = () => {
|
|
|
|
createWatermark(str)
|
|
|
|
}
|
|
|
|
window.addEventListener('resize', func)
|
|
|
|
}
|
|
|
|
|
2025-04-30 19:13:03 +08:00
|
|
|
// 监听主题变化
|
|
|
|
watch(
|
|
|
|
() => appStore.getIsDark,
|
|
|
|
() => {
|
|
|
|
if (watermarkStr) {
|
|
|
|
createWatermark(watermarkStr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2023-02-11 00:44:00 +08:00
|
|
|
return { setWatermark, clear }
|
|
|
|
}
|