Skip to content

Latest commit

 

History

History
211 lines (150 loc) · 7.28 KB

README.md

File metadata and controls

211 lines (150 loc) · 7.28 KB

ignite-element

CI Build npm version License: MIT

Table of Contents

  1. Features
  2. Installation
  3. Quickstart
  4. Custom Styles
  5. Contributing
  6. Feedback

Features

  • Plug-and-Play Adapters: Easily integrate Redux, MobX, or XState with prebuilt adapters.
  • State Management Modes: Support for shared and isolated state components.
  • Flexible Style Support: Inject global styles or define custom styles for your components.
  • Modern Templating: Use lit-html for dynamic, efficient templates.
  • Developer Friendly: A consistent API for managing state across different libraries.

Quickstart

Here’s how to set up your first ignite-element project:

Install ignite-element with your preferred state management library:

npm install ignite-element redux @reduxjs/toolkit

Or for XState:

npm install ignite-element xstate

Examples:

Shared vs. Isolated Components

ignite-element offers two approaches to state management for web components

Feature Shared Components Isolated Components
State Sharing Shared across all instances Independent for each instance
Use Case Global state like shopping cart or theme Local state like form inputs
Performance Impact Updates re-render all shared components Updates only re-render the specific instance

Initializing ignite-element

Both shared and isolated components require initializing an instance of igniteElement. For example:

import { igniteCore } from "ignite-element";
import counterMachine from "./stateMachine"; // or Redux store

const igniteElement = igniteCore({
  adapter: "xstate", // Replace with "redux" for Redux
  source: counterMachine, // Replace with Redux store for Redux
});

Shared Components

Shared components share the same state across all instances. This is useful for global states like shopping carts or user session data, where every component reflects the same underlying state.

Example Use Case:: A shopping cart summary that updates across the entire app.

igniteElement.shared("cart-summary", (state, send) => {
  return html`
    <div>
      <h3>Cart Summary</h3>
      <p>Total Items: ${state.totalItems}</p>
      <button @click=${() => send({ type: "CLEAR_CART" })}>Clear Cart</button>
    </div>
  `;
});

Isolated Components

Isolated components have independent state management. Each component instance operates in its own scope, ensuring no interference with other components.

Example Use Case:: Independent product quantity selectors for an e-commerce site.

igniteElement.isolated("product-counter", (state, send) => {
  return html`
    <div>
      <h3>Product Counter</h3>
      <p>Quantity: ${state.quantity}</p>
      <button @click=${() => send({ type: "DECREASE" })}>-</button>
      <button @click=${() => send({ type: "INCREASE" })}>+</button>
    </div>
  `;
});

Styling with ignite-element

Note: If using preprocessed styles (e.g., SCSS or Tailwind CSS), ensure the styles are compiled to a distributable .css file before referencing it in styles.paths. For example, use a build script like:

sass ./src/styles.scss ./dist/styles.css

And add the path

const igniteElement = igniteCore({
  adapter: "xstate",
  source: counterMachine,
  styles: {
    paths: ["./dist/styles.css"],
  },
});

Note: If styles.paths and styles.custom are not provided, no additional styles will be applied to your components. Ensure you configure at least one of these options to style your components effectively.

Using the styles.custom Property: The styles.custom property allows you to directly inject CSS rules into your ignite-element components. This is particularly useful for small customizations or inline styles that don't require a separate stylesheet.

const igniteElement = igniteCore({
  adapter: "xstate",
  source: counterMachine,
  styles: {
    custom: `
      .custom-margin {
        margin-bottom: 3rem;
      }
    `,
  },
});

This approach is ideal for dynamically generated styles or when external stylesheets are not necessary. However, for larger stylesheets or frameworks like Tailwind CSS, consider using the styles.paths property to reference your compiled CSS file.

Best Practices for Styling

  • Use styles.paths for global stylesheets like Tailwind or SCSS.
  • Use styles.custom for inline styles shared across multiple components.
  • Combine styles.paths and styles.custom to create reusable, flexible designs.

For an example of using styles.custom, see the MobX example in the repository. This demonstrates how to define and apply custom inline styles effectively.

Contributing

Contributions are welcome! Please follow these steps to get started:

Clone the repository

git clone https://github.com/0xjcf/ignite-element.git

Install dependencies:

npm install

Note: Ensure you are using a compatible Node.js version as specified in the package.json or .nvmrc file.

Build the project:

npm run build

Running Examples Locally

Example Scripts

You can explore usage examples by running the provided scripts from the root of the repository:

  • XState Example: npm run examples:xstate
  • Redux Example: npm run examples:redux
  • MobX Example: npm run examples:mobx

Before running any examples, ensure the project is built by executing:

npm run build

These commands start a local development server for each example.

Feedback

I would love to hear your thoughts on ignite-element! If you encounter issues, have feature requests, or want to share ideas, feel free to:

Your contributions help make ignite-element better for everyone!