mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
de8657bf3b
* fix: WaterMark blink when scale of window * chore: fix mutation --------- Co-authored-by: afc163 <afc163@gmail.com>
75 lines
2.0 KiB
TypeScript
75 lines
2.0 KiB
TypeScript
import * as React from 'react';
|
|
|
|
import { getStyleStr } from './utils';
|
|
|
|
/**
|
|
* Base size of the canvas, 1 for parallel layout and 2 for alternate layout
|
|
* Only alternate layout is currently supported
|
|
*/
|
|
export const BaseSize = 2;
|
|
export const FontGap = 3;
|
|
|
|
// Prevent external hidden elements from adding accent styles
|
|
const emphasizedStyle = {
|
|
visibility: 'visible !important',
|
|
};
|
|
|
|
export type AppendWatermark = (
|
|
base64Url: string,
|
|
markWidth: number,
|
|
container: HTMLElement,
|
|
) => void;
|
|
|
|
export default function useWatermark(
|
|
markStyle: React.CSSProperties,
|
|
): [
|
|
appendWatermark: AppendWatermark,
|
|
removeWatermark: (container: HTMLElement) => void,
|
|
isWatermarkEle: (ele: Node) => boolean,
|
|
] {
|
|
const [watermarkMap] = React.useState(() => new Map<HTMLElement, HTMLDivElement>());
|
|
|
|
const appendWatermark = (base64Url: string, markWidth: number, container: HTMLElement) => {
|
|
if (container) {
|
|
if (!watermarkMap.get(container)) {
|
|
const newWatermarkEle = document.createElement('div');
|
|
watermarkMap.set(container, newWatermarkEle);
|
|
}
|
|
|
|
const watermarkEle = watermarkMap.get(container)!;
|
|
|
|
watermarkEle.setAttribute(
|
|
'style',
|
|
getStyleStr({
|
|
...markStyle,
|
|
backgroundImage: `url('${base64Url}')`,
|
|
backgroundSize: `${Math.floor(markWidth)}px`,
|
|
...(emphasizedStyle as React.CSSProperties),
|
|
}),
|
|
);
|
|
// Prevents using the browser `Hide Element` to hide watermarks
|
|
watermarkEle.removeAttribute('class');
|
|
|
|
if (watermarkEle.parentElement !== container) {
|
|
container.append(watermarkEle);
|
|
}
|
|
}
|
|
|
|
return watermarkMap.get(container);
|
|
};
|
|
|
|
const removeWatermark = (container: HTMLElement) => {
|
|
const watermarkEle = watermarkMap.get(container);
|
|
|
|
if (watermarkEle && container) {
|
|
container.removeChild(watermarkEle);
|
|
}
|
|
|
|
watermarkMap.delete(container);
|
|
};
|
|
|
|
const isWatermarkEle = (ele: any) => Array.from(watermarkMap.values()).includes(ele);
|
|
|
|
return [appendWatermark, removeWatermark, isWatermarkEle];
|
|
}
|