/numba-solidjs

This tool provides easy assigning the numbers to your designs.

Primary LanguageTypeScriptMIT LicenseMIT

NUMBA

License: MIT

Figma plugin for easy numbering with 1-click.

Installation

Install it with pnpm:

pnpm i

Getting started with plugin development

First start vite:

pnpm dev

It will automatically build if you make changes to the code.

Then in Figma go to File Menu > Plugins > Development > Import plugin from manifest... and select the manifest.json file.

Build

Builds the app for production to the dist folder.

pnpm build

Update to new versions

Please refer to the Release-Assets page for this and other information.

Architecture

How rendering works

Renderer architecture displayed on the scheme:

mermaid
graph LR

subgraph Figma
  M[main]
end

M ----|message| S[Store]

subgraph UI
  H[Hooks] -->|dispatch| S

  C1[Component] --> H
  C2[Component] --> H
  C3[Component] --> H

  S -->|render| C1
  S -->|render| C2
  S -->|render| C3
end

File structure

├── manifest.json
├── src
|  ├── app.tsx
|  ├── components
|  |  ├── ComponentName.module.css
|  |  ├── ComponentName.stories.tsx
|  |  └── ComponentName.tsx
|  ├── constants.ts
|  ├── lib
|  |  ├── dispatch.ts
|  |  ├── hooks
|  |  ├── store.ts
|  |  └── utils
|  └── main.ts
└──   types
  • /manifest.json - Figma plugin need to be configured with manifest.json should contains main and ui threads.
  • /src
    • app.tsx - Core of UI renderer based on Solid.
    • /components - UI functions that return JSX and called by JSX in other components.
    • /constants - Literal values that can be called from any expression.
    • /lib
      • /dispatch - A function to posts a message to the main and ui threads.
      • /hooks - Functions to reuse stateful logic with fully isolated states.
      • /store.ts - Proxy objects that allow a tree of signals to be independently tracked and modified.
      • /utils - Helper functions.
    • /main.ts - Functions that can create/update specific Figma nodes and handle the messages.
    • /types - Common type of components.