summaryrefslogtreecommitdiff
path: root/src/main/resources/META-INF
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-02-15 14:29:41 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-02-15 14:29:41 +0100
commit6bfb3fb2a531c47d9e6cf8ba39fe62714cbe3ffd (patch)
tree8e26cda61f161d2bc67d3e4ecc43d3b523cdad40 /src/main/resources/META-INF
parent22747a00099d8624d862707c8140f9514388c5a5 (diff)
Web: Remove AdminElement and components.js.
Change-Id: Ib829e99069229866a18e2a5356330bcf952b08d4
Diffstat (limited to 'src/main/resources/META-INF')
-rw-r--r--src/main/resources/META-INF/resources/cms2/admin/AdminElement.js50
-rw-r--r--src/main/resources/META-INF/resources/cms2/admin/index.html2
-rw-r--r--src/main/resources/META-INF/resources/cms2/components.js2
3 files changed, 0 insertions, 54 deletions
diff --git a/src/main/resources/META-INF/resources/cms2/admin/AdminElement.js b/src/main/resources/META-INF/resources/cms2/admin/AdminElement.js
deleted file mode 100644
index 36db08d..0000000
--- a/src/main/resources/META-INF/resources/cms2/admin/AdminElement.js
+++ /dev/null
@@ -1,50 +0,0 @@
-import {html, render} from "../../web_modules/lit-html.js";
-import {createStore} from "../../web_modules/redux.js";
-
-export class AdminElement extends HTMLElement {
- constructor() {
- super();
- this.attachShadow({mode: "open"});
- this.store = createStore(this.update.bind(this), {switched: false});
- this.store.subscribe(this.render.bind(this));
- }
-
- static get observedAttributes() {
- return ["greetee"];
- }
-
- connectedCallback () {
- this.render();
- }
-
- attributeChangedCallback(name, oldValue, newValue) {
- this.render();
- }
-
- onSwitchClicked(event) {
- this.store.dispatch({ type: "SWITCH" });
- }
-
- update(state, action) {
- console.log(`Processing action: ${JSON.stringify(action)}`);
- switch (action.type) {
- case "SWITCH":
- state.switched = !state.switched;
- break;
- }
- return state;
- }
-
- render() {
- let state = this.store.getState();
- let greetee = state.switched ? "Andreas" : this.getAttribute("greetee");
-
- const template = html`
- <p>Hello ${greetee}! <button @click=${this.onSwitchClicked.bind(this)}>Switch</button></p>
- `;
-
- render(template, this.shadowRoot);
- }
-}
-
-customElements.define("mlk-admin", AdminElement);
diff --git a/src/main/resources/META-INF/resources/cms2/admin/index.html b/src/main/resources/META-INF/resources/cms2/admin/index.html
index 9e49564..b0da45d 100644
--- a/src/main/resources/META-INF/resources/cms2/admin/index.html
+++ b/src/main/resources/META-INF/resources/cms2/admin/index.html
@@ -4,8 +4,6 @@
<head>
<meta charset="UTF-8">
<title>MulkCMS Admin</title>
-
- <script type="module" src="/cms2/components.js"></script>
</head>
<body>
diff --git a/src/main/resources/META-INF/resources/cms2/components.js b/src/main/resources/META-INF/resources/cms2/components.js
deleted file mode 100644
index 61d4657..0000000
--- a/src/main/resources/META-INF/resources/cms2/components.js
+++ /dev/null
@@ -1,2 +0,0 @@
-import {AdminElement} from "./admin/AdminElement.js";
-