Improve "Run JavaScript" dialog
This commit is contained in:
parent
a54ed665bf
commit
2f9a12c2da
6 changed files with 128 additions and 110 deletions
|
@ -37,5 +37,9 @@ window.addEventListener("DOMContentLoaded", function(e) {
|
|||
JavaScriptMode = require("ace/mode/javascript").Mode;
|
||||
TextMode = require("ace/mode/text").Mode;
|
||||
EditSession = require("ace/edit_session").EditSession;
|
||||
editor = ace.edit('ace-div');
|
||||
|
||||
const isDark = Zotero.getMainWindow()?.matchMedia('(prefers-color-scheme: dark)').matches;
|
||||
editor = ace.edit('ace-div', {
|
||||
theme: isDark ? 'ace/theme/monokai' : 'ace/theme/chrome'
|
||||
});
|
||||
}, false);
|
|
@ -1,7 +1,7 @@
|
|||
<html>
|
||||
<html id="run-js">
|
||||
<head>
|
||||
<title>Run JavaScript</title>
|
||||
<link href="chrome://zotero/skin/runJS.css" rel="stylesheet"/>
|
||||
<link href="chrome://zotero-platform/content/zotero.css" rel="stylesheet"/>
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
|
|
|
@ -93,9 +93,15 @@ window.addEventListener("load", function (e) {
|
|||
// TODO: Enable if we modify to autocomplete from the Zotero API
|
||||
//enableLiveAutocompletion: true,
|
||||
highlightActiveLine: false,
|
||||
showGutter: false,
|
||||
theme: "ace/theme/chrome",
|
||||
showGutter: false
|
||||
});
|
||||
codeEditor.on('input', handleInput);
|
||||
codeEditor.focus();
|
||||
|
||||
const isDarkMQL = Zotero.getMainWindow()?.matchMedia('(prefers-color-scheme: dark)');
|
||||
isDarkMQL.addEventListener("change", (ev) => {
|
||||
codeEditor.setOptions({
|
||||
theme: ev.matches ? 'ace/theme/monokai' : 'ace/theme/chrome'
|
||||
});
|
||||
});
|
||||
}, false);
|
||||
|
|
|
@ -1,81 +0,0 @@
|
|||
body {
|
||||
font-family: Helvetica, sans-serif;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
nav {
|
||||
padding: 8px 5px 5px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
#help-button {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
#run-label {
|
||||
margin-left: 2px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
main {
|
||||
display: flex;
|
||||
justify-content: stretch;
|
||||
height: calc(100% - 38px);
|
||||
}
|
||||
|
||||
.textbox-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
flex-grow: 1;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.textbox-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.textbox-label {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
#run-as-async-label {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
label {
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
input[type=checkbox] {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 1px solid gray;
|
||||
}
|
||||
|
||||
iframe, textarea {
|
||||
flex-grow: 1;
|
||||
margin: 5px 0;
|
||||
font-family: Monaco, Consolas, Inconsolata, monospace;
|
||||
font-size: 12px;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
textarea.error {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.editor-code {
|
||||
flex: 1;
|
||||
}
|
|
@ -40,7 +40,8 @@
|
|||
@import "components/notesList";
|
||||
@import "components/progressMeter";
|
||||
@import "components/publications-dialog";
|
||||
@import "components/rtfScan.scss";
|
||||
@import "components/rtfScan";
|
||||
@import "components/runJS";
|
||||
@import "components/search";
|
||||
@import "components/selectItemsDialog";
|
||||
@import "components/spinner";
|
||||
|
|
88
scss/components/_runJS.scss
Normal file
88
scss/components/_runJS.scss
Normal file
|
@ -0,0 +1,88 @@
|
|||
#run-js {
|
||||
body {
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
nav {
|
||||
padding: 8px 5px 5px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
#help-button {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
#run-label {
|
||||
margin-left: 2px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
main {
|
||||
display: flex;
|
||||
justify-content: stretch;
|
||||
height: calc(100% - 38px);
|
||||
}
|
||||
|
||||
.textbox-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
flex-grow: 1;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.textbox-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.textbox-label {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
#run-as-async-label {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
label {
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
input[type=checkbox] {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: var(--material-panedivider);;
|
||||
}
|
||||
|
||||
iframe,
|
||||
textarea {
|
||||
flex-grow: 1;
|
||||
margin: 5px 0;
|
||||
font-family: Monaco, Consolas, Inconsolata, monospace;
|
||||
font-size: 12px;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
textarea {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
textarea.error {
|
||||
color: var(--accent-red);
|
||||
}
|
||||
|
||||
.editor-code {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue