[skip ci] Update Monaco; Fix code scanning errors

This commit is contained in:
Vendicated 2023-04-29 04:16:28 +02:00
parent a2e03084b0
commit bf795c49df
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905
4 changed files with 63 additions and 47 deletions

View File

@ -16,7 +16,7 @@ chrome.webRequest.onHeadersReceived.addListener(
// In main frame requests, the CSP needs to be removed to enable fetching of custom css // In main frame requests, the CSP needs to be removed to enable fetching of custom css
// as desired by the user // as desired by the user
removeFirst(responseHeaders, h => h.name.toLowerCase() === "content-security-policy"); removeFirst(responseHeaders, h => h.name.toLowerCase() === "content-security-policy");
} else if (type === "stylesheet" && url.startsWith("https://raw.githubusercontent.com")) { } else if (type === "stylesheet" && url.startsWith("https://raw.githubusercontent.com/")) {
// Most users will load css from GitHub, but GitHub doesn't set the correct content type, // Most users will load css from GitHub, but GitHub doesn't set the correct content type,
// so we fix it here // so we fix it here
removeFirst(responseHeaders, h => h.name.toLowerCase() === "content-type"); removeFirst(responseHeaders, h => h.name.toLowerCase() === "content-type");

View File

@ -1,52 +1,66 @@
<!doctype html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<meta charset="utf-8" />
<title>Vencord QuickCSS Editor</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.37.1/min/vs/editor/editor.main.min.css"
integrity="sha512-wB3xfL98hWg1bpkVYSyL0js/Jx9s7FsDg9aYO6nOMSJTgPuk/PFqxXQJKKSUjteZjeYrfgo9NFBOA1r9HwDuZw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<style>
html,
body,
#container {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
</head>
<head> <body>
<meta charset="utf-8"> <div id="container"></div>
<title>Vencord QuickCSS Editor</title> <script
<link rel="stylesheet" data-name="vs/editor/editor.main" src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.37.1/min/vs/loader.min.js"
href="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.34.0/min/vs/editor/editor.main.min.css"> integrity="sha512-A+6SvPGkIN9Rf0mUXmW4xh7rDvALXf/f0VtOUiHlDUSPknu2kcfz1KzLpOJyL2pO+nZS13hhIjLqVgiQExLJrw=="
<style> crossorigin="anonymous"
html, referrerpolicy="no-referrer"
body, ></script>
#container {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
</head>
<body> <script>
<div id="container"></div> require.config({
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.34.0/min/vs/loader.min.js"></script> paths: {
vs: "https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.37.1/min/vs",
},
});
<script> require(["vs/editor/editor.main"], () => {
require.config({ paths: { 'vs': 'https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.34.0/min/vs' } }); getCurrentCss().then((css) => {
require(["vs/editor/editor.main"], () => { var editor = monaco.editor.create(
getCurrentCss().then(css => { document.getElementById("container"),
var editor = monaco.editor.create(document.getElementById('container'), { {
value: css, value: css,
language: 'css', language: "css",
theme: getTheme(), theme: getTheme(),
}); }
editor.onDidChangeModelContent(() => );
setCss(editor.getValue()) editor.onDidChangeModelContent(() =>
); setCss(editor.getValue())
window.addEventListener("resize", () => { );
// make monaco re-layout window.addEventListener("resize", () => {
editor.layout(); // make monaco re-layout
editor.layout();
});
}); });
}); });
}); </script>
</body>
</script>
</body>
</html> </html>

View File

@ -51,7 +51,7 @@ const SearchResultClasses = findByPropsLazy("message", "searchResult");
let AutoModEmbed: React.ComponentType<any> = () => null; let AutoModEmbed: React.ComponentType<any> = () => null;
const messageLinkRegex = /(?<!<)https?:\/\/(?:\w+\.)?discord(?:app)?\.com\/channels\/(\d{17,20}|@me)\/(\d{17,20})\/(\d{17,20})/g; const messageLinkRegex = /(?<!<)https?:\/\/(?:\w+\.)?discord(?:app)?\.com\/channels\/(\d{17,20}|@me)\/(\d{17,20})\/(\d{17,20})/g;
const tenorRegex = /https:\/\/(?:www.)?tenor\.com/; const tenorRegex = /^https:\/\/(?:www\.)?tenor\.com\//;
interface Attachment { interface Attachment {
height: number; height: number;

View File

@ -108,6 +108,8 @@ export interface PluginDef {
flux?: { flux?: {
[E in FluxEvents]?: (event: any) => void; [E in FluxEvents]?: (event: any) => void;
}; };
tags?: string[];
} }
export enum OptionType { export enum OptionType {