Skip to content
/ ui Public

Shared Web Components with theming for use across HOTOSM tools.

License

Notifications You must be signed in to change notification settings

hotosm/ui

Repository files navigation

HOT Shared UI

HOT

Shared Web Components with theming for use across HOTOSM tools.

Publish CDN Deploy Publish Docs Package version Downloads License

📖 Documentation: https://hotosm.github.io/ui/

🖥️ Source Code: https://github.com/hotosm/ui


Shared UI components with theming for use across HOTOSM tools, to reduce code duplication.

The components are Web Components, currently written in Lit, using TypeScript.

Compositie components (header, sidebar, etc) are generated using Shoelace, with the remaining low-level components exported from the Shoelace library too.

Install

There are two options for install:

  • NPM: appropriate for applications that have installable dependencies.
  • CDN: appropriate for HTML / Markdown / HTMX.

Components Bundle

  • This is the compiled JavaScript bundle generated from the TypeScript code.
  • The components require no additional dependencies and are minified.

Via NPM

  • Install package @hotosm/ui as a dependency in your package.json.
  • Import the components.
<script>
  import '@hotosm/ui/dist/style.css';
  import '@hotosm/ui/dist/components.js';
</script>

// Use the components in your templates
<hot-header @login="someFunction()"> </hot-header>

Via CDN

// Import the styles (or create your own)
<link
  rel="stylesheet"
  href="https://s3.amazonaws.com/hotosm-ui/latest/style.css"
/>

// Import the components
<script
  type="module"
  src="https://cdn.jsdelivr.net/npm/@hotosm/ui@latest/dist/components.js"
></script>

<hot-header @login="someFunction()> </hot-header>

The jsdelivr CDN only includes package releases, with @latest pointing to the most recent tagged release.

There is also an S3-based CDN, where latest tracks the main branch of the repo: https://s3.amazonaws.com/hotosm-ui/latest/dist/components.js

ES Modules

  • Using the TypeScript ES Modules allows for cherry-picking components, so 'tree-shaking' can remove the remaining ones you don't use.

  • If you are developing an application that uses @hotosm/ui components, including a bundler such as rollup/vite/webpack, this is probably the best approach.

  • However, you must first add Lit as a peerDependency in your package.json:

      "peerDependencies": {
        "lit": "^3.1.0"
      }

    Ideally the version of Lit installed should match the version used in hotosm/ui.

Example:

import '@hotosm/ui/components/header/header';

// Then in your template
<hot-header @login="${someFunction()}"></hot-header>

React

Versions of React below v19 require a specific 'wrapper' component to use the web components.

Use these instead of the standard @hotosm/ui/components/xxx:

pnpm install @hotosm/ui
import { Button } from '@hotosm/ui/react/Header'

const HomePage = ({}) => {
  return (
    <div className="your-css-classes">
      <div
        ...
      >
        <Header @onLogin="${someFunction()}" />
      </div>
    </div>
  );
};

export default HomePage;

Note that while web components must always have a closing tag, this is not required for the React wrappers.

Using Extra Shoelace Components

The UI library contains many composite components, such as headers, sidebars, tracking banners, etc, and does not re-invent the wheel for low-level components.

Shoelace is an excellent UI library that is exported directly from @hotosm/ui.

To access the low-level components, such as buttons, dropdowns, modals, etc, simply import the component of the same name from the [Shoelace docs] (https://shoelace.style):

import '@hotosm/ui/components/button/button';

// Then in your template
<hot-button disabled variant="secondary">Can't Click Me</hot-button>

If you are using a bundler, you must bundle the (icon) assets yourself, described in the Shoelace docs.

Example of bundling assets

  • To include the Shoelace assets in your final bundle (dist), you could add the following to your package.json:
  "scripts": {
    "clean-icons": "rm -rf public/assets/icons",
    "get-icons": "cp -r node_modules/@shoelace-style/shoelace/dist/assets/icons public/",
    "setup-dist": "pnpm run clean-icons && pnpm run get-icons",
  }
  • Now the Shoelace assets will be bundled with your dist, under /shoelace.
  • Following the example, also add public/assets/icons to your .gitignore file.