0.6.2 • Published 17 days ago

@shlinkio/shlink-web-component v0.6.2

Weekly downloads
-
License
MIT
Repository
github
Last release
17 days ago

Shlink web component

Build Status Code Coverage GitHub release GitHub license Paypal Donate

Minimal UI to interact with Shlink on React applications.

Note This component was originally part of shlink-web-client, and it was extracted so that it could be used in other React-based apps

Installation

npm install @shlinkio/shlink-web-component

Basic usage

This package exports a ShlinkWebComponent react component, which renders a set of sections that can be used to provide a convenient UI to interact with every aspect of a Shlink server: short URLs, tags domains, etc.

The main prop is the apiClient, which is used by the component in order to know how to consume the server's API.

Its implementation is up to the consumer, which gives you the flexibility to directly interact with Shlink from the browser, or through some dedicated proxy or backend-for-frontend.

import { ShlinkWebComponent } from '@shlinkio/shlink-web-component';
import type { ShlinkApiClient } from '@shlinkio/shlink-js-sdk/api-contract';

export function App() {
  const apiClient: ShlinkApiClient = {
    // ...
  };

  return <ShlinkWebComponent apiClient={apiClient} />;
};

Note The API client has to fulfil the type defined in @shlinkio/shlink-js-sdk, but that package is an optional peer dependency. If you don't need to import from it to define your own implementation or to use the implementation provided there, feel free to skip it.

Also, this component re-exports the SDK types for your convenience, so you can choose to import from @shlinkio/shlink-js-sdk/api-contract or @shlinkio/shlink-web-component/api-contract.

Settings

It is possible to customize some aspects of the UI by providing some optional settings.

Settings can control default ordering for lists, real-time updates behavior, optional fields for short URL creation, etc.

import { ShlinkWebComponent } from '@shlinkio/shlink-web-component';
import type { Settings } from '@shlinkio/shlink-web-component';

export function App() {
  const settings: Settings = {};

  return (
    <ShlinkWebComponent settings={settings} {...} />
  );
};

Routes prefix

Sections are handled via client-side routing with react-router-dom. ShlinkWebComponent will add its own <BrowserRouter /> unless already rendered inside a router.

If you render it inside a router, make sure you pass the prefix for all routes handled by this component.

import { ShlinkWebComponent } from '@shlinkio/shlink-web-component';
import { BrowserRouter, Routes, Route } from 'react-router-dom';

export function App() {
  return (
    <BrowserRouter>
      <Routes>
        <Route path="/foo" element={<Foo />} />
        <Route path="/bar" element={<Bar />} />
        <Route path="/shlink-ui" element={<ShlinkWebComponent routesPrefix="/shlink-ui" {...} />} />
      </Routes>
    </BrowserRouter>
  );
};

Tag colors storage

One of the features on ShlinkWebComponent is generating and handling colors for short URL tags.

By default, all colors will be generated from scratch every time the component is rendered, but you can persist them between executions by providing an object implementing this type:

type TagColorsStorage = {
  getTagColors(): Record<string, string>;

  storeTagColors(colors: Record<string, string>): void;
};

For example, imagine you want to persist tag colors in the browser's local storage. You could do something like this:

import { ShlinkWebComponent } from '@shlinkio/shlink-web-component';
import type { TagColorsStorage } from '@shlinkio/shlink-web-component';

class TagColorsLocalStorage implements TagColorsStorage {
  constructor(private readonly localStorage: Storage) {
  }

  getTagColors(): Record<string, string> {
    const colors = this.localStorage.getItem('shlink_tag_colors');
    return colors ? JSON.parse(colors) : {};
  }

  storeTagColors(colors: Record<string, string>): void {
    this.localStorage.setItem('shlink_tag_colors', JSON.stringify(colors));
  }
}

export function App() {
  const tagColorsStorage = new TagColorsLocalStorage(window.localStorage);

  return (
    <ShlinkWebComponent
      tagColorsStorage={tagColorsStorage}
      {...}
    />
  );
};

Styles

Currently, this component depends on bootstrap, @shlinkio/shlink-frontend-kit and its own stylesheets for proper styling.

Make sure you import stylesheets in the order documented here for everything to work.

// src/index.scss
@import 'node_modules/@shlinkio/shlink-frontend-kit/dist/base'; // Before bootstrap stylesheet. Includes SASS var overrides
@import 'node_modules/bootstrap/scss/bootstrap.scss';
@import 'node_modules/@shlinkio/shlink-frontend-kit/dist/index'; // After bootstrap. Includes CSS overrides
@import 'node_modules/@shlinkio/shlink-web-component/dist/index';
import { Checkbox, changeThemeInMarkup } from '@shlinkio/shlink-frontend-kit';
import { ShlinkWebComponent } from '@shlinkio/shlink-web-component';
import { useEffect, useState } from 'react';
import './src/index.scss'; // The stylesheet above

export function App() {
  const [theme, setTheme] = useState<'light' | 'dark'>('light');

  useEffect(() => {
    changeThemeInMarkup(theme);
  }, [theme]);

  return (
    <>
      <Checkbox checked={theme === 'dark'} onChange={(checked) => setTheme(checked ? 'dark' : 'ligth')}>
        Dark theme
      </Checkbox>
      <ShlinkWebComponent {...} />
    </>
  );
};

Dev sandbox

Since this is a complex component, this project provides a convenient way to do some manual tests.

Simply run npm run dev or docker compose up, and a local vite server will be started on port 3002.

Then visit http://localhost:3002 to see your changes in real time.

0.6.2

17 days ago

0.6.1

24 days ago

0.6.0

2 months ago

0.5.0

3 months ago

0.4.1

5 months ago

0.4.0

5 months ago

0.3.5

7 months ago

0.3.4

8 months ago

0.3.3

8 months ago

0.3.2

8 months ago

0.3.1

8 months ago

0.3.0

9 months ago

0.2.0

9 months ago

0.1.1

9 months ago

0.1.0

9 months ago