2021-12-25 16:42:50 +00:00
|
|
|
import { Directive } from 'vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
mounted(src, binding, vn) {
|
|
|
|
const getBgColor = (el: HTMLElement) => {
|
|
|
|
const style = window.getComputedStyle(el);
|
|
|
|
if (style.backgroundColor && !['rgba(0, 0, 0, 0)', 'rgba(0,0,0,0)', 'transparent'].includes(style.backgroundColor)) {
|
|
|
|
return style.backgroundColor;
|
|
|
|
} else {
|
|
|
|
return el.parentElement ? getBgColor(el.parentElement) : 'transparent';
|
|
|
|
}
|
2022-06-10 05:36:55 +00:00
|
|
|
};
|
2021-12-25 16:42:50 +00:00
|
|
|
|
|
|
|
const parentBg = getBgColor(src.parentElement);
|
|
|
|
|
|
|
|
const myBg = window.getComputedStyle(src).backgroundColor;
|
|
|
|
|
|
|
|
if (parentBg === myBg) {
|
|
|
|
src.style.borderColor = 'var(--divider)';
|
|
|
|
} else {
|
|
|
|
src.style.borderColor = myBg;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
} as Directive;
|