npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@interopio/workspaces-ui-web-components

v1.0.1

Published

Web components version of the workspaces ui component

Downloads

161

Readme

@interopio/workspaces-ui-web-components

This is a library based on Web Components for building a custom Workspaces App for io.Connect Desktop or io.Connect Browser projects. Internally, the @interopio/workspaces-ui-web-components library uses the lit package.

Prerequisites

To be able to create and use a Workspaces App, the following is required:

Installation

To use the library in your project, execute the following command:

npm install @interopio/workspaces-ui-web-components

Usage

The @interopio/workspaces-ui-web-components library exports default Web Components and types for that enable you to customize the structure of your Workspaces App. The library also exposes an API with methods that provide the default Workspaces App functionalities. You can use the default components directly, or you can replace them with your custom ones.

Creating Custom Components

To create a custom component for your Workspaces App, it's recommended to define a custom class the implements the interface of the respective default component exported by the library. This will help you determine the default properties that will be set by the library and passed to your custom component.

The following example demonstrates how to implement custom components for the Workspaces Logo element, the Workspace Tab element, and the Group Header Buttons element of the Workspaces App:

import { GroupHeaderButtonsElement, WorkspacesLogoElement, WorkspaceTabElement, } from "@interopio/workspaces-ui-web-components";

// Replacing the Workspaces App logo.
export class CustomWorkspacesLogo extends HTMLElement implements WorkspacesLogoElement {
    constructor() {
        super();

        const shadow = this.attachShadow({ mode: "open" });
        const customLogo = document.createElement("div");

        customLogo.innerHTML = "My Custom Logo";
        shadow.appendChild(customLogo);
    }
};

customElements.define("custom-workspaces-logo", CustomWorkspacesLogo);

// Replacing the default Workspace tab with a custom one.
// This will replace all Workspace tabs in the Workspaces App.
export class CustomWorkspacesTab extends HTMLElement implements WorkspaceTabElement {
    private customContent: HTMLDivElement;
    private _isSelected = false;

    constructor() {
        super();

        const shadow = this.attachShadow({ mode: "open" });

        this.customContent = document.createElement("div");
        this.changeSelectedText();

        shadow.appendChild(this.customContent);
    }

    public get isSelected(): boolean {
        return this._isSelected;
    }

    public set isSelected(value: boolean) {
        this._isSelected = value;
        this.changeSelectedText();
    }

    private changeSelectedText() {
        this.customContent.innerHTML = this.isSelected ? "Selected" : "Not Selected";
    }
};

customElements.define("custom-workspaces-tab", CustomWorkspacesTab);

// Replacing the default group header buttons with a custom button.
// This will replace the buttons in all window groups within the Workspace.
export class CustomGroupHeaderButtons extends HTMLElement implements GroupHeaderButtonsElement {
    constructor() {
        super();

        let count = 0;

        const shadow = this.attachShadow({ mode: "open" });
        const btn = document.createElement("button");

        btn.innerText = "Add";
        btn.addEventListener("click", () => {
            count++;
            span.innerText = count.toString();
        });

        const span = document.createElement("span");

        span.innerText = "0";

        shadow.appendChild(btn);
        shadow.appendChild(span);
    }
};

customElements.define("custom-group-header-buttons", CustomGroupHeaderButtons);

Creating a Custom Workspaces App

After defining your custom components, you must pass them to the main Workspaces component by using its components property in order to create your custom Workspaces App. You must also initialize the respective io.Connect library with the proper configuration and either pass the initialized API object as a value to the io property of the Workspaces component, or attach it to the global window object. For io.Connect Desktop projects, you must initialize and configure the @interopio/desktop library. For io.Connect Browser projects, you must initialize and configure either the @interopio/browser-platform or the @interopio/browser library, depending on whether you'll use the Workspaces App as a Main app. Without the properly initialized io.Connect API object, the @interopio/workspaces-ui-web-components library won't be able to function.

io.Connect Desktop

The following example demonstrates how to create a custom Workspaces App for an io.Connect Desktop project and properly initialize the @interopio/desktop library:

import Workspaces from "@interopio/workspaces-ui-web-components";
import IODesktop from "@interopio/desktop";
import IOWorkspaces from "@interopio/workspaces-api";
import { CustomWorkspacesLogo, CustomWorkspacesTab, CustomGroupHeaderButtons } from "./MyCustomComponents"

// Configuration for the `@interopio/desktop` library.
// It's mandatory to provide the factory function for initializing the Workspaces API,
// and also to initialize the App Management API in `"skipIcons"` or `"full"` mode.
const config = {
    libraries: [IOWorkspaces],
    appManager: "skipIcons"
};

// Initializing the `@interopio/desktop` library.
const io = await IODesktop(config);

// Attaching the initialized API object to the global `window` object.
window.io = io;

// Alternatively, you can use the `io` property of the instantiated `Workspaces` component
// to pass the initialized io.Connect API to the `@interopio/workspaces-ui-web-components` library:
// workspacesElement.io = io;

const workspacesElement = new Workspaces();

// Passing custom components to the `Workspaces` component.
workspacesElement.components = {
    header: {
        logo: CustomWorkspacesLogo,
        workspaceTab: CustomWorkspacesTab
    },
    groupHeader: {
        buttons: CustomGroupHeaderButtons
    }
};

// Rendering the Workspaces App.
document.body.appendChild(workspacesElement);

io.Connect Browser

The following example demonstrates how to create a custom Workspaces App for an io.Connect Browser project and properly enable Workspaces when your Workspaces App will be used as a Main app as well:

import Workspaces from "@interopio/workspaces-ui-web-components";
import IOBrowserPlatform from "@interopio/browser-platform";
import IOWorkspaces from "@interopio/workspaces-api";
import { CustomWorkspacesLogo, CustomWorkspacesTab, CustomGroupHeaderButtons } from "./MyCustomComponents"

// Configuration for the `@interopio/browser-platform` library.
const config = {
    licenseKey: "my-license-key",
    workspaces: {
        // Provide the location of your Workspaces App.
        src: "https://my-workspaces-app.com",
        // Specify that your Workspaces App will be a Main app too.
        isFrame: true
    },
    browser: {
        // Provide the factory function for initializing the Workspaces API.
        libraries: [IOWorkspaces]
    }
};

// Initializing the `@interopio/browser-platform` library.
const { io } = await IOBrowserPlatform(config);

// Attaching the initialized API object to the global `window` object.
window.io = io;

// Alternatively, you can use the `io` property of the instantiated `Workspaces` component
// to pass the initialized io.Connect API to the `@interopio/workspaces-ui-web-components` library:
// workspacesElement.io = io;

const workspacesElement = new Workspaces();

// Passing custom components to the `Workspaces` component.
workspacesElement.components = {
    header: {
        logo: CustomWorkspacesLogo,
        workspaceTab: CustomWorkspacesTab
    },
    groupHeader: {
        buttons: CustomGroupHeaderButtons
    }
};

// Rendering the Workspaces App.
document.body.appendChild(workspacesElement);