iceshrimp-legacy/packages/client/src/directives/adaptive-border.ts

30 lines
702 B
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import { Directive } from "vue";
2021-12-25 17:42:50 +01:00
export default {
mounted(src, binding, vn) {
const getBgColor = (el: HTMLElement) => {
const style = window.getComputedStyle(el);
2023-01-13 05:40:33 +01:00
if (
style.backgroundColor &&
!["rgba(0, 0, 0, 0)", "rgba(0,0,0,0)", "transparent"].includes(
style.backgroundColor,
)
) {
2021-12-25 17:42:50 +01:00
return style.backgroundColor;
} else {
2023-01-13 05:40:33 +01:00
return el.parentElement ? getBgColor(el.parentElement) : "transparent";
2021-12-25 17:42:50 +01:00
}
};
2023-01-13 05:40:33 +01:00
2021-12-25 17:42:50 +01:00
const parentBg = getBgColor(src.parentElement);
const myBg = window.getComputedStyle(src).backgroundColor;
if (parentBg === myBg) {
2023-01-13 05:40:33 +01:00
src.style.borderColor = "var(--divider)";
2021-12-25 17:42:50 +01:00
} else {
src.style.borderColor = myBg;
}
},
} as Directive;