@@ -129,47 +106,4 @@ const Sticker = ({ content }) => html`
sendS
`
-function sendSticker(content) {
- window.parent.postMessage({
- api: "fromWidget",
- action: "m.sticker",
- requestId: `sticker-${Date.now()}`,
- widgetId,
- data: {
- name: content.body,
- content,
- },
- }, "*")
-}
-
-let widgetId = null
-
-window.onmessage = event => {
- if (!window.parent || !event.data) {
- return
- }
-
- const request = event.data
- if (!request.requestId || !request.widgetId || !request.action || request.api !== "toWidget") {
- return
- }
-
- if (widgetId) {
- if (widgetId !== request.widgetId) {
- return
- }
- } else {
- widgetId = request.widgetId
- }
-
- window.parent.postMessage({
- ...request,
- response: request.action === "capabilities" ? {
- capabilities: ["m.sticker"],
- } : {
- error: { message: "Action not supported" },
- },
- }, event.origin)
-}
-
render(html`<${App} />`, document.body)
diff --git a/web/spinner.js b/web/spinner.js
new file mode 100644
index 0000000..6462cde
--- /dev/null
+++ b/web/spinner.js
@@ -0,0 +1,31 @@
+// Copyright (c) 2020 Tulir Asokan
+//
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+import { html } from "https://unpkg.com/htm/preact/index.mjs?module"
+
+export const Spinner = ({ size = 40, noCenter = false, noMargin = false, green = false }) => {
+ let margin = 0
+ if (!isNaN(+size)) {
+ size = +size
+ margin = noMargin ? 0 : `${Math.round(size / 6)}px`
+ size = `${size}px`
+ }
+ const noInnerMargin = !noCenter || !margin
+ const comp = html`
+
+ `
+ if (!noCenter) {
+ return html`
${comp}
`
+ }
+ return comp
+}
diff --git a/web/widget-api.js b/web/widget-api.js
new file mode 100644
index 0000000..556537f
--- /dev/null
+++ b/web/widget-api.js
@@ -0,0 +1,47 @@
+// Copyright (c) 2020 Tulir Asokan
+//
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+let widgetId = null
+
+window.onmessage = event => {
+ if (!window.parent || !event.data) {
+ return
+ }
+
+ const request = event.data
+ if (!request.requestId || !request.widgetId || !request.action || request.api !== "toWidget") {
+ return
+ }
+
+ if (widgetId) {
+ if (widgetId !== request.widgetId) {
+ return
+ }
+ } else {
+ widgetId = request.widgetId
+ }
+
+ window.parent.postMessage({
+ ...request,
+ response: request.action === "capabilities" ? {
+ capabilities: ["m.sticker"],
+ } : {
+ error: { message: "Action not supported" },
+ },
+ }, event.origin)
+}
+
+export function sendSticker(content) {
+ window.parent.postMessage({
+ api: "fromWidget",
+ action: "m.sticker",
+ requestId: `sticker-${Date.now()}`,
+ widgetId,
+ data: {
+ name: content.body,
+ content,
+ },
+ }, "*")
+}