Compare commits

...

3 Commits

Author SHA1 Message Date
57ea079eaf add. ime for real 2022-06-09 02:29:42 +02:00
9c513f8319 add ime =w= 2022-06-09 02:29:36 +02:00
af8a9e6763 dark mode 2022-06-09 02:18:01 +02:00
5 changed files with 52 additions and 6 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "heonian-ime"]
path = heonian-ime
url = https://git.succubi.services/heonian.org/heonian-ime

1
heonian-ime Submodule

@ -0,0 +1 @@
Subproject commit 76bc6baf11f2b21f365e6f2ef36c05b00ea04c84

View File

@ -37,6 +37,7 @@
</main> </main>
<script src="./heonian-ime/ime.js"></script>
<script src="./main.js"></script> <script src="./main.js"></script>
</body> </body>
</html> </html>

View File

@ -32,19 +32,33 @@
:root { :root {
--font: "Helvetica Neue", Helvetica, Arial, sans-serif; --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
--font-h: "heonian", "Helvatica Neue", Helvetica, Arial, sans-serif; --font-h: "heonian", "Helvatica Neue", Helvetica, Arial, sans-serif;
--nice-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); --fg: rgb(0,0,0);
--grey: rgb(226, 226, 226); --bg: rgb(255,255,255);
--darkgrey: rgb(150, 150, 150); --grey: rgb(152, 152, 152);
--darkgrey: rgb(100, 100, 100);
--link: rgb(27 120 151);
}
@media (prefers-color-scheme: dark) {
:root {
--fg: rgb(255,255,255);
--bg: rgb(0,0,0);
--grey: rgb(226, 226, 226);
--darkgrey: rgb(215, 215, 215);
--link: rgb(27 120 151);
}
} }
body { body {
margin: 0; margin: 0;
padding: 0; padding: 0;
font-family: var(--font); font-family: var(--font);
color: var(--fg);
background-color: var(--bg);
} }
a { a {
color: rgb(27 120 151); color: var(--link);
text-decoration: none; text-decoration: none;
} }
@ -87,6 +101,9 @@ header #search button {
text-align: center; text-align: center;
height: 2rem; height: 2rem;
border-left: 1px solid var(--grey); border-left: 1px solid var(--grey);
color: var(--grey);
transition: 0.3s color ease;
cursor: pointer;
} }
header input { header input {
@ -100,6 +117,8 @@ header input {
font-weight: 100; font-weight: 100;
transition: border-color 0.3s; transition: border-color 0.3s;
width: calc(100% - 52px - 24px); width: calc(100% - 52px - 24px);
background-color: var(--bg);
color: var(--fg);
} }
header input:focus { header input:focus {
@ -145,7 +164,7 @@ main {
opacity: 0; opacity: 0;
max-width: 600px; max-width: 600px;
margin: auto; margin: auto;
margin-top: 1rem; margin-top: calc(1rem + 24px);
padding-left: 1rem; padding-left: 1rem;
padding-right: 1rem; padding-right: 1rem;
} }
@ -168,6 +187,10 @@ main {
border-bottom: 1px solid var(--darkgrey); border-bottom: 1px solid var(--darkgrey);
} }
.result:first-child {
padding-top: 0;
}
.result-meaning { .result-meaning {
padding-bottom: 8px; padding-bottom: 8px;
} }

20
main.js
View File

@ -5,6 +5,19 @@ let searchDictionary = {};
let header = null; let header = null;
let main = null; let main = null;
let ime = null;
function toggleIME() {
if (ime == null) {
ime = new HeonianIME(header.querySelector("input"));
header.querySelector("#search button").style.color = "var(--fg)";
} else {
ime.imeDetach();
ime = null;
header.querySelector("#search button").style.color = "var(--grey)";
}
}
function animateHeader(inout = false) { function animateHeader(inout = false) {
//todo: debounce this //todo: debounce this
if (inout) { if (inout) {
@ -47,10 +60,14 @@ document.addEventListener("keydown", (e) => {
if (!header.querySelector("input").matches(":focus") && !header.classList.contains("fullscreen")) { if (!header.querySelector("input").matches(":focus") && !header.classList.contains("fullscreen")) {
e.preventDefault(); e.preventDefault();
animateHeader(true); animateHeader(true);
} else if (header.querySelector("input").matches(":focus") && ime != null) {
toggleIME();
} else if (header.querySelector("input").matches(":focus")) {
header.querySelector("input").value = "";
} }
} }
if (e.keyCode === 13) { if (e.keyCode === 13) {
if (header.querySelector("input").matches(":focus")) { if (header.querySelector("input").matches(":focus") && ime == null) {
//search //search
e.preventDefault(); e.preventDefault();
if (header.classList.contains("fullscreen")) { if (header.classList.contains("fullscreen")) {
@ -262,5 +279,6 @@ function doSearch() {
window.onload = () => { window.onload = () => {
header = document.querySelector("header"); header = document.querySelector("header");
main = document.querySelector("main"); main = document.querySelector("main");
header.querySelector("#search button").onclick = () => {toggleIME();};
loadDictionary(); loadDictionary();
} }