You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vizality/renderer/src/modules/components/PopupWindow.jsx

33 lines
1.1 KiB

import { getModule } from '@vizality/webpack';
import { Regexes } from '@vizality/constants';
import AsyncComponent from './AsyncComponent';
export default AsyncComponent.from((async props => {
const DiscordPopoutWindow = getModule(m => m.DecoratedComponent?.render);
class PopupWindow extends DiscordPopoutWindow {
constructor (props) {
super(props);
props.withTitleBar = true;
}
componentDidMount () {
const instance = this.getDecoratedComponentInstance();
const { guestWindow } = instance.props;
document.querySelectorAll('style').forEach(style => {
guestWindow.document.head.appendChild(
document.importNode(style, true)
);
});
document.querySelectorAll(`link[rel='stylesheet']`).forEach(stylesheet => {
if (stylesheet.href.startsWith('https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/')) return;
if (new RegExp(Regexes.DISCORD).test(stylesheet.href)) return;
guestWindow.document.head.appendChild(
document.importNode(stylesheet, true)
);
});
}
}
return PopupWindow;
})());