feat(watermark): support custom style (#3634)

This commit is contained in:
kian 2024-03-02 10:05:24 +08:00 committed by GitHub
parent aef90aa2a0
commit ca3ddd19f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 64 additions and 14 deletions

View File

@ -10,14 +10,34 @@ type UseWatermarkRes = {
setWatermark: (str: string) => void; setWatermark: (str: string) => void;
clear: () => void; clear: () => void;
clearAll: () => void; clearAll: () => void;
waterMarkOptions?: waterMarkOptionsType;
obInstance?: MutationObserver; obInstance?: MutationObserver;
targetElement?: HTMLElement; targetElement?: HTMLElement;
parentElement?: HTMLElement; parentElement?: HTMLElement;
}; };
type waterMarkOptionsType = {
// 自定义水印的文字大小
fontSize?: number;
// 自定义水印的文字颜色
fontColor?: string;
// 自定义水印的文字字体
fontFamily?: string;
// 自定义水印的文字对齐方式
textAlign?: CanvasTextAlign;
// 自定义水印的文字基线
textBaseline?: CanvasTextBaseline;
// 自定义水印的文字倾斜角度
rotate?: number;
};
const sourceMap = new Map<Symbol, Omit<UseWatermarkRes, 'clearAll'>>(); const sourceMap = new Map<Symbol, Omit<UseWatermarkRes, 'clearAll'>>();
function createBase64(str: string) { function findTargetNode(el) {
return Array.from(sourceMap.values()).find((item) => item.targetElement === el);
}
function createBase64(str: string, waterMarkOptions: waterMarkOptionsType) {
const can = document.createElement('canvas'); const can = document.createElement('canvas');
const width = 300; const width = 300;
const height = 240; const height = 240;
@ -25,19 +45,30 @@ function createBase64(str: string) {
const cans = can.getContext('2d'); const cans = can.getContext('2d');
if (cans) { if (cans) {
cans.rotate((-20 * Math.PI) / 180); const fontFamily = waterMarkOptions?.fontFamily || 'Vedana';
cans.font = '15px Vedana'; const fontSize = waterMarkOptions?.fontSize || 15;
cans.fillStyle = 'rgba(0, 0, 0, 0.15)'; const fontColor = waterMarkOptions?.fontColor || 'rgba(0, 0, 0, 0.15)';
cans.textAlign = 'left'; const textAlign = waterMarkOptions?.textAlign || 'left';
cans.textBaseline = 'middle'; const textBaseline = waterMarkOptions?.textBaseline || 'middle';
const rotate = waterMarkOptions?.rotate || 20;
cans.rotate((-rotate * Math.PI) / 180);
cans.font = `${fontSize}px ${fontFamily}`;
cans.fillStyle = fontColor;
cans.textAlign = textAlign;
cans.textBaseline = textBaseline;
cans.fillText(str, width / 20, height); cans.fillText(str, width / 20, height);
// todo 自定义水印样式
} }
return can.toDataURL('image/png'); return can.toDataURL('image/png');
} }
const resetWatermarkStyle = (element: HTMLElement, watermarkText: string) => { const resetWatermarkStyle = (
element: HTMLElement,
watermarkText: string,
waterMarkOptions: waterMarkOptionsType,
) => {
element.className = '__' + watermarkSymbol; element.className = '__' + watermarkSymbol;
element.style.pointerEvents = 'none'; element.style.pointerEvents = 'none';
element.style.display = 'block';
element.style.visibility = 'visible';
element.style.top = '0px'; element.style.top = '0px';
element.style.left = '0px'; element.style.left = '0px';
element.style.position = 'absolute'; element.style.position = 'absolute';
@ -46,6 +77,7 @@ const resetWatermarkStyle = (element: HTMLElement, watermarkText: string) => {
element.style.width = '100%'; element.style.width = '100%';
element.style.background = `url(${createBase64( element.style.background = `url(${createBase64(
unref(updateWatermarkText) || watermarkText, unref(updateWatermarkText) || watermarkText,
waterMarkOptions,
)}) left top repeat`; )}) left top repeat`;
}; };
@ -53,7 +85,7 @@ const obFn = () => {
const obInstance = new MutationObserver((mutationRecords) => { const obInstance = new MutationObserver((mutationRecords) => {
for (const mutation of mutationRecords) { for (const mutation of mutationRecords) {
for (const node of Array.from(mutation.removedNodes)) { for (const node of Array.from(mutation.removedNodes)) {
const target = Array.from(sourceMap.values()).find((item) => item.targetElement === node); const target = findTargetNode(node);
if (!target) return; if (!target) return;
const { targetElement, parentElement } = target; const { targetElement, parentElement } = target;
// 父元素的子元素水印如果被删除 重新插入被删除的水印(防篡改,插入通过控制台删除的水印) // 父元素的子元素水印如果被删除 重新插入被删除的水印(防篡改,插入通过控制台删除的水印)
@ -63,8 +95,14 @@ const obFn = () => {
} }
if (mutation.attributeName === 'style' && mutation.target) { if (mutation.attributeName === 'style' && mutation.target) {
const _target = mutation.target as HTMLElement; const _target = mutation.target as HTMLElement;
if (_target.className === '__' + watermarkSymbol) { const target = findTargetNode(_target);
resetWatermarkStyle(_target as HTMLElement, _target?.['data-watermark-text']); if (target) {
const { waterMarkOptions = {} } = target;
resetWatermarkStyle(
_target as HTMLElement,
_target?.['data-watermark-text'],
waterMarkOptions,
);
} }
} }
} }
@ -74,6 +112,7 @@ const obFn = () => {
export function useWatermark( export function useWatermark(
appendEl: Ref<HTMLElement | null> = ref(document.body) as Ref<HTMLElement>, appendEl: Ref<HTMLElement | null> = ref(document.body) as Ref<HTMLElement>,
waterMarkOptions: waterMarkOptionsType = {},
): UseWatermarkRes { ): UseWatermarkRes {
const domSymbol = Symbol(watermarkSymbol); const domSymbol = Symbol(watermarkSymbol);
const appendElRaw = unref(appendEl); const appendElRaw = unref(appendEl);
@ -115,7 +154,7 @@ export function useWatermark(
el.style.height = `${options.height}px`; el.style.height = `${options.height}px`;
} }
if (isDef(options.str)) { if (isDef(options.str)) {
el.style.background = `url(${createBase64(options.str)}) left top repeat`; el.style.background = `url(${createBase64(options.str, waterMarkOptions)}) left top repeat`;
} }
} }
@ -129,7 +168,7 @@ export function useWatermark(
div['data-watermark-text'] = str; //自定义属性 用于恢复水印 div['data-watermark-text'] = str; //自定义属性 用于恢复水印
updateWatermarkText.value = str; updateWatermarkText.value = str;
watermarkEl.value = div; watermarkEl.value = div;
resetWatermarkStyle(div, str); resetWatermarkStyle(div, str, waterMarkOptions);
const el = unref(appendEl); const el = unref(appendEl);
if (!el) return; if (!el) return;
const { clientHeight: height, clientWidth: width } = el; const { clientHeight: height, clientWidth: width } = el;
@ -141,6 +180,7 @@ export function useWatermark(
parentElement: el, parentElement: el,
targetElement: div, targetElement: div,
obInstance: obFn(), obInstance: obFn(),
waterMarkOptions,
}); });
sourceMap.get(domSymbol)?.obInstance?.observe(el, { sourceMap.get(domSymbol)?.obInstance?.observe(el, {
childList: true, // 子节点的变动(指新增,删除或者更改) childList: true, // 子节点的变动(指新增,删除或者更改)

View File

@ -7,6 +7,9 @@
<a-button type="primary" class="mr-2" @click="setWatermark2('WaterMark Info2')"> <a-button type="primary" class="mr-2" @click="setWatermark2('WaterMark Info2')">
Create Watermark2 Create Watermark2
</a-button> </a-button>
<a-button type="primary" class="mr-2" @click="setWatermark3('Custome Style WaterMark')">
Create custom style Watermark
</a-button>
<a-button color="error" class="mr-2" @click="clear"> Clear Watermark1 </a-button> <a-button color="error" class="mr-2" @click="clear"> Clear Watermark1 </a-button>
<a-button color="error" class="mr-2" @click="clearAll"> ClearAll </a-button> <a-button color="error" class="mr-2" @click="clearAll"> ClearAll </a-button>
<a-button color="warning" class="mr-2" @click="setWatermark('WaterMark Info New')"> <a-button color="warning" class="mr-2" @click="setWatermark('WaterMark Info New')">
@ -16,13 +19,20 @@
</PageWrapper> </PageWrapper>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import { onUnmounted } from 'vue'; import { onUnmounted, ref } from 'vue';
import { CollapseContainer } from '@/components/Container'; import { CollapseContainer } from '@/components/Container';
import { useWatermark } from '@/hooks/web/useWatermark'; import { useWatermark } from '@/hooks/web/useWatermark';
import { PageWrapper } from '@/components/Page'; import { PageWrapper } from '@/components/Page';
const app = ref(document.body);
const { setWatermark, clear, clearAll } = useWatermark(); const { setWatermark, clear, clearAll } = useWatermark();
const { setWatermark: setWatermark2 } = useWatermark(); const { setWatermark: setWatermark2 } = useWatermark();
const { setWatermark: setWatermark3 } = useWatermark(app, {
fontColor: 'red',
fontSize:12,
rotate:30
});
onUnmounted(() => { onUnmounted(() => {
clearAll(); clearAll();