summaryrefslogtreecommitdiff
path: root/src/main/resources/META-INF
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-02-15 20:40:30 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-02-15 20:40:30 +0100
commitb3a2c48f559d80c6ff3fd676a3a0a28f75645b57 (patch)
treef75f0d7edf4195d3fb773338aec52a861f42ddf6 /src/main/resources/META-INF
parentf550d24f4badd85f29d7741d3ab8efe2b81c05ee (diff)
Use Flow to typecheck JavaScript code.
Change-Id: I9c0c9b5aa74d592a04eb6533e64669f1896fb7cd
Diffstat (limited to 'src/main/resources/META-INF')
-rw-r--r--src/main/resources/META-INF/resources/.flowconfig8
-rw-r--r--src/main/resources/META-INF/resources/bookmarks/MlkBookmarkSubmissionForm.js50
-rw-r--r--src/main/resources/META-INF/resources/package.json1
-rw-r--r--src/main/resources/META-INF/resources/yarn.lock5
4 files changed, 49 insertions, 15 deletions
diff --git a/src/main/resources/META-INF/resources/.flowconfig b/src/main/resources/META-INF/resources/.flowconfig
new file mode 100644
index 0000000..fe59993
--- /dev/null
+++ b/src/main/resources/META-INF/resources/.flowconfig
@@ -0,0 +1,8 @@
+[libs]
+
+[ignore]
+<PROJECT_ROOT>/node_modules/.*
+
+[options]
+emoji=true
+module.system.node.resolve_dirname=node_modules
diff --git a/src/main/resources/META-INF/resources/bookmarks/MlkBookmarkSubmissionForm.js b/src/main/resources/META-INF/resources/bookmarks/MlkBookmarkSubmissionForm.js
index 012a314..41892c1 100644
--- a/src/main/resources/META-INF/resources/bookmarks/MlkBookmarkSubmissionForm.js
+++ b/src/main/resources/META-INF/resources/bookmarks/MlkBookmarkSubmissionForm.js
@@ -1,3 +1,5 @@
+// @flow
+
import ProgressSpinner from "../web_modules/elix/define/ProgressSpinner.js";
const template = document.createElement('template');
@@ -33,18 +35,27 @@ template.innerHTML = `
</form>`;
export class MlkBookmarkSubmissionForm extends HTMLElement {
+ /*::
+ descriptionInput: HTMLTextAreaElement;
+ titleInput: HTMLInputElement;
+ uriInput: HTMLInputElement;
+ uriSpinner: ProgressSpinner;
+ */
+
constructor() {
super();
- this.onUriBlur = this.onUriBlur.bind(this);
-
let shadow = this.attachShadow({mode: "open"});
- this.shadowRoot.appendChild(template.content.cloneNode(true));
-
- this.descriptionInput = shadow.getElementById('description-input');
- this.titleInput = shadow.getElementById('title-input');
- this.uriInput = shadow.getElementById('uri-input');
- this.uriSpinner = shadow.getElementById('uri-spinner');
+ shadow.appendChild(template.content.cloneNode(true));
+
+ this.descriptionInput =
+ this.cast(shadow.getElementById('description-input'));
+ this.titleInput =
+ this.cast(shadow.getElementById('title-input'));
+ this.uriInput =
+ this.cast(shadow.getElementById('uri-input'));
+ this.uriSpinner =
+ this.cast(shadow.getElementById('uri-spinner'));
}
static get observedAttributes() {
@@ -52,21 +63,20 @@ export class MlkBookmarkSubmissionForm extends HTMLElement {
}
connectedCallback () {
- this.uriInput.addEventListener('blur', this.onUriBlur);
+ this.uriInput.addEventListener('blur', this.onUriBlur.bind(this));
this.uriInput.value = this.uri || "";
- this.titleInput.value = this.title || "";
+ this.titleInput.value = this.titleText || "";
this.descriptionInput.innerText = this.description || "";
}
- attributeChangedCallback(name, oldValue, newValue) {
- this.render();
+ attributeChangedCallback(name /*:string*/, oldValue /*:string*/, newValue /*:string*/) {
}
get uri() {
return this.getAttribute("uri");
}
- get title() {
+ get titleText() {
return this.getAttribute("title");
}
@@ -93,8 +103,8 @@ export class MlkBookmarkSubmissionForm extends HTMLElement {
this.uriSpinner.hidden = false;
this.uriSpinner.playing = true;
let searchParams = new URLSearchParams({'uri': this.uriInput.value});
- console.log(`/bookmarks/page-info?${searchParams}`);
- let fetchUrl = new URL(`/bookmarks/page-info?${searchParams}`, document.URL);
+ console.log(`/bookmarks/page-info?${searchParams.toString()}`);
+ let fetchUrl = new URL(`/bookmarks/page-info?${searchParams.toString()}`, document.URL);
let r = await fetch(fetchUrl);
this.uriSpinner.hidden = true;
this.uriSpinner.playing = false;
@@ -106,6 +116,16 @@ export class MlkBookmarkSubmissionForm extends HTMLElement {
let pageInfo = await r.json();
this.titleInput.value = pageInfo.title;
}
+
+ cast/*:: <T>*/(x /*: ?Object*/) /*: T*/ {
+ if (x === null || x === undefined) {
+ throw "unexpected null or undefined";
+ } else {
+ /*:: (x: T); */
+ return x;
+ }
+ }
+
}
customElements.define("mlk-bookmark-submission-form", MlkBookmarkSubmissionForm);
diff --git a/src/main/resources/META-INF/resources/package.json b/src/main/resources/META-INF/resources/package.json
index d0657d4..dc8cdeb 100644
--- a/src/main/resources/META-INF/resources/package.json
+++ b/src/main/resources/META-INF/resources/package.json
@@ -13,6 +13,7 @@
"sanitize.css": "^11.0.0"
},
"devDependencies": {
+ "flow-bin": "^0.118.0",
"snowpack": "^1.1.0"
},
"snowpack": {
diff --git a/src/main/resources/META-INF/resources/yarn.lock b/src/main/resources/META-INF/resources/yarn.lock
index 2b69a44..1a2a5a1 100644
--- a/src/main/resources/META-INF/resources/yarn.lock
+++ b/src/main/resources/META-INF/resources/yarn.lock
@@ -1051,6 +1051,11 @@ find-package-json@^1.2.0:
resolved "https://registry.yarnpkg.com/find-package-json/-/find-package-json-1.2.0.tgz#4057d1b943f82d8445fe52dc9cf456f6b8b58083"
integrity sha512-+SOGcLGYDJHtyqHd87ysBhmaeQ95oWspDKnMXBrnQ9Eq4OkLNqejgoaD8xVWu6GPa0B6roa6KinCMEMcVeqONw==
+flow-bin@^0.118.0:
+ version "0.118.0"
+ resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.118.0.tgz#fb706364a58c682d67a2ca7df39396467dc397d1"
+ integrity sha512-jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg==
+
fs.realpath@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"