Skip to content
Snippets Groups Projects
load.ts 2.88 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*
    Copyright 2022 The Matrix.org Foundation C.I.C.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    import { isMobile } from "./common";
    import { toggleIframe } from "./iframe";
    
    const parentHostRoot = ( document.querySelector("#chatterbox-script") as HTMLScriptElement).src;
    const hostRoot = new URL(parentHostRoot).origin;
    
    export function loadStartButton() {
        loadCSS();
        const container = document.createElement("div");
        container.className = "start";
    
    RMidhunSuresh's avatar
    RMidhunSuresh committed
        const button = createStartButton();
        container.appendChild(button);
        document.body.appendChild(container);
        if (window.localStorage.getItem("chatterbox-should-load-in-background")) {
            /**
             * If chatterbox made it to the timeline before, load the chatterbox app in background.
             * This will let us watch for new messages and show a notification badge as needed.
             */
            loadIframe(true);
            toggleIframe();
        }
    }
    
    function createStartButton() {
    
        const button = document.createElement("button");
        button.className = "start-chat-btn";
    
        button.setAttribute('aria-label', 'Start chat');
    
        button.onclick = () => (window as any).isIframeLoaded? toggleIframe() : loadIframe();
    
    RMidhunSuresh's avatar
    RMidhunSuresh committed
        button.appendChild(createNotificationBadge());
        return button;
    }
    
    function createNotificationBadge() {
        const notificationBadge = document.createElement("span");
        notificationBadge.className = "notification-badge hidden";
        return notificationBadge;
    
    }
    
    function loadCSS() {
        const linkElement = document.createElement("link") as HTMLLinkElement;
        linkElement.rel = "stylesheet";
        linkElement.href = new URL("CSS_FILE_NAME", parentHostRoot).href;
        document.head.appendChild(linkElement);
    }
    
    
    RMidhunSuresh's avatar
    RMidhunSuresh committed
    function loadIframe(minimized = false) {
    
        const iframe = document.createElement("iframe");
        const configLocation = (window as any).CHATTERBOX_CONFIG_LOCATION;
        if (!configLocation) {
            throw new Error("CHATTERBOX_CONFIG_LOCATION is not set");
        }
        iframe.src = new URL(
    
    RMidhunSuresh's avatar
    RMidhunSuresh committed
            `../chatterbox.html?config=${configLocation}${minimized? "&minimized=true": ""}`,
    
            hostRoot
        ).href;
        iframe.className = "chatterbox-iframe";
        document.body.appendChild(iframe);
        (window as any).isIframeLoaded = true;
    
    RMidhunSuresh's avatar
    RMidhunSuresh committed
        document .querySelector(".start-chat-btn") .classList.add("start-background-minimized");
    
        if (isMobile()) {
            (document.querySelector(".start") as HTMLDivElement).style.display =
                "none";
        }
    }