Update docs
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 3s

This commit is contained in:
2026-04-25 20:28:38 +02:00
parent de4b09324d
commit f4654a938a
20 changed files with 2120 additions and 1202 deletions

View File

@@ -1,67 +1,70 @@
# Global State Management: Atomic & Modular
SigPro leverages the native power and efficiency of **Signals** to create robust global stores with **0% complexity**. While other frameworks force you into heavy libraries and rigid boilerplate (Redux, Pinia, or Svelte Stores), SigPro treats "The Store" as a simple architectural choice: **defining a Signal outside of a component.**
SigPro leverages the native power and efficiency of **signals** to create robust global stores with **zero complexity**. While other frameworks force you into heavy libraries and rigid boilerplate (Redux, Pinia, or Svelte stores), SigPro treats “the store as a simple architectural choice: **defining a signal outside of a component.**
## Modular Organization (Zero Constraints)
You are not restricted to a single `store.js`. You can organize your state by **feature**, **domain**, or **page**. Since a SigPro store is just a standard JavaScript module exporting Signals, you can name your files whatever you like (`auth.js`, `cart.js`, `settings.js`) to keep your logic clean.
You are not restricted to a single `store.js`. You can organize your state by **feature**, **domain**, or **page**. Since a SigPro store is just a standard JavaScript module exporting signals, you can name your files whatever you like (`auth.js`, `cart.js`, `settings.js`) to keep your logic clean.
### 1. File-Based Stores (`<any-name>.js`)
Creating a dedicated file allows you to export only what you need. This modularity ensures **Tree Shaking** works perfectly—you never load state that isn't imported.
### 1. FileBased Stores (`<any-name>.js`)
Creating a dedicated file allows you to export only what you need. This modularity ensures **tree shaking** works perfectly you never load state that isnt imported.
```javascript
// auth.js
import SigPro from "sigpro";
import { $ } from 'sigpro'; // or just rely on global `$` after import
// A simple global signal
export const user = $({ name: "Guest", loggedIn: false });
// A persistent global signal (auto-syncs with localStorage via native key)
// A persistent global signal (autosyncs with localStorage)
export const theme = $("light", "app-theme-pref");
// A computed global signal that reacts to the 'user' signal
export const welcomeMessage = $(() => `Welcome back, ${user().name}!`);
```
### 2. Cross-Component Consumption
Once exported, these signals act as a **Single Source of Truth**. SigPro ensures that if a signal changes in one file, every component importing it across the entire app updates **atomically** without a full re-render.
### 2. CrossComponent Consumption
Once exported, these signals act as a **single source of truth**. SigPro ensures that if a signal changes in one file, every component importing it across the entire app updates **atomically** without a full rerender.
```javascript
// Profile.js
import { user } from "./auth.js";
const Profile = () => Div([
H2(user().name),
Button({ onclick: () => user({ name: "John Doe", loggedIn: true }) }, "Log In")
const Profile = () => div([
h2(() => user().name),
button({ onclick: () => user({ name: "John Doe", loggedIn: true }) }, "Log In")
]);
// Navbar.js
import { welcomeMessage, theme } from "./auth.js";
const Navbar = () => Nav({ class: theme }, [
Span(welcomeMessage)
const Navbar = () => nav({ class: () => theme() }, [
span(() => welcomeMessage())
]);
```
---
## Why SigPro Stores are Superior
## Why SigPro Stores Are Superior
| Feature | SigPro | Redux / Pinia / Svelte |
| :--- | :--- | :--- |
| **Boilerplate** | **0%** (Just a variable) | High (Actions, Reducers, Wrappers) |
| **Organization** | **Unlimited** (Any filename) | Often strictly "Store" or "Actions" |
| **Persistence** | **Native** (Just add a key) | Requires Middleware / Plugins |
| **Learning Curve** | **Instant** | Steep / Complex |
| **Bundle Size** | **0KB** (Part of the core) | 10KB - 30KB+ |
| Feature | SigPro | Redux / Pinia / Svelte |
| :-------------------- | :---------------------------- | :------------------------------ |
| **Boilerplate** | **0%** (just a variable) | High (actions, reducers, stores)|
| **Organization** | **Unlimited** (any filename) | Often strictly “store” files |
| **Persistence** | **Native** (just add a key) | Requires middleware / plugins |
| **Learning Curve** | **Instant** | Steep / complex |
| **Bundle Size** | **0KB** (part of core) | 10KB 30KB+ |
---
## The "Persistence" Advantage
The magic of SigPros `$(value, "key")` is that it works identically for local and global states. By simply adding a second argument, your Modular Store survives browser refreshes automatically. No manual `localStorage.getItem` or `JSON.parse` logic is ever required.
## The Persistence Advantage
The magic of SigPros `$(value, "key")` is that it works identically for local and global states. By simply adding a second argument, your modular store survives browser refreshes automatically. No manual `localStorage.getItem` or `JSON.parse` logic is ever required.
```javascript
// This single line creates a global, reactive,
// This single line creates a global, reactive,
// and persistent store for a shopping cart.
export const cart = $([], "session-cart");
```
@@ -69,7 +72,68 @@ export const cart = $([], "session-cart");
---
## Summary of Scopes
* **Local Scope:** Signal defined **inside** a component. Unique to every instance created.
* **Module Scope:** Signal defined **outside** a component (same file). Shared by all instances within that specific file.
* **Global Scope:** Signal defined in a **separate file**. Shared across the entire application by any importing module.
* **Persistent Scope:** Any Signal defined with a **key**. Shared globally and remembered after a page reload.
| Scope | Definition | Behaviour |
| :-------------- | :-------------------------------------------------------------- | :-------------------------------------------- |
| **Local** | Signal defined **inside** a component | Unique to every component instance |
| **Module** | Signal defined **outside** a component (same file) | Shared by all instances within that file |
| **Global** | Signal defined in a **separate file** and imported | Shared across the entire application |
| **Persistent** | Any Signal defined with a **key** (e.g., `$([], "cart")`) | Shared globally and persisted in `localStorage` |
---
## Complete Example Todo Store
```javascript
// store/todos.js
import { $ } from 'sigpro';
export const todos = $([], "todos");
export const filter = $("all");
export const addTodo = (text) => {
todos([...todos(), { id: Date.now(), text, done: false }]);
};
export const toggleTodo = (id) => {
todos(todos().map(t => t.id === id ? { ...t, done: !t.done } : t));
};
export const filteredTodos = $(() => {
const all = todos();
if (filter() === "active") return all.filter(t => !t.done);
if (filter() === "completed") return all.filter(t => t.done);
return all;
});
```
```javascript
// components/TodoApp.js
import { todos, filter, addTodo, toggleTodo, filteredTodos } from "../store/todos.js";
const TodoApp = () =>
div({ class: "todo-app" }, [
input({ placeholder: "Add todo...", onKeyDown: (e) => {
if (e.key === "Enter" && e.target.value) {
addTodo(e.target.value);
e.target.value = "";
}
}}),
div({ class: "filters" }, [
button({ onClick: () => filter("all") }, "All"),
button({ onClick: () => filter("active") }, "Active"),
button({ onClick: () => filter("completed") }, "Completed")
]),
ul(
each(filteredTodos,
(todo) => li([
input({ type: "checkbox", checked: () => todo.done, onInput: () => toggleTodo(todo.id) }),
span(() => todo.done ? s(todo.text) : todo.text)
]),
(todo) => todo.id
)
)
]);
mount(TodoApp, "#app");
```