@opengeoweb-sandbox/plugin-interface
v1.5.1
Published
A TypeScript library for plugin management, built with React, TypeScript, and Vite.
Readme
Plugin Interface
A TypeScript library for plugin management, built with React, TypeScript, and Vite.
Automatic Releases
Releases are automatically created when code is merged to main using semantic-release. Use conventional commit messages to trigger version bumps.
Commit Types
| Commit Type | Version Bump | Example |
| ----------- | ------------ | ----------------------------- |
| fix: | Patch | fix: resolve memory leak |
| feat: | Minor | feat: add plugin validation |
| feat!: | Major | feat!: refactor plugin API |
Other types (docs:, test:, chore:, etc.) do not trigger releases.
Version Examples
| Current | Commit Type | New Version |
| ------- | ----------- | ----------- |
| 0.0.1 | fix: | 0.0.2 |
| 0.0.1 | feat: | 0.1.0 |
| 0.1.0 | feat!: | 1.0.0 |
Process
- Commit with conventional message (
fix:,feat:, etc.) - Merge to
mainbranch - CI/CD runs tests → builds → publishes (if tests pass)
Note: Only commits on main trigger releases. Multiple commits use the highest version bump type.
Plugin Generator
Generate a new plugin project from a template using an interactive prompt system or command-line arguments.
Quick Start
Using npx (recommended - no installation needed):
npx @opengeoweb-sandbox/plugin-interfaceOr install globally:
npm install -g @opengeoweb-sandbox/plugin-interface
create-pluginInteractive Mode (Recommended)
When you run create-plugin without arguments, you'll be prompted for all options:
npx @opengeoweb-sandbox/plugin-interfaceThe interactive prompts will ask for:
- Plugin name: Name of your plugin (e.g.,
MyAwesomePlugin) - Scopes: Multi-select interface to choose from available scopes:
time- Time state management (setTime events)animation- Animation time span management (start/end times)
- Initial version: Defaults to
1.0.0 - Output directory: Defaults to current directory
- Package name: Optional, defaults to
@your-org/<kebab-name>
Non-Interactive Mode
You can also provide all options via command-line arguments:
npx @opengeoweb-sandbox/plugin-interface MyPlugin \
--scopes time,animation \
--version 1.0.0 \
--output-dir ./ \
--package-name @myorg/my-pluginCommand-Line Options
<plugin-name>(required in non-interactive mode): Name of your plugin--scopes <scope1,scope2>: Comma-separated list of scopes (default:time)--version <version>: Initial version (default:1.0.0)--output-dir <dir>: Output directory (default: current directory)--package-name <name>: Package name (default:@your-org/<kebab-name>)
What Gets Generated
The generator creates a complete plugin project with:
- ✅ React component structure with scope integration
- ✅ TypeScript configuration
- ✅ Vite and Webpack build configs
- ✅ Storybook setup for development and testing
- ✅ Default scope functionality (state subscriptions, event handlers, controls)
- ✅ Interactive demo story with scope controls
- ✅ Proper plugin interface integration
- ✅ Example event handlers and initialization code
Example Usage
Interactive mode:
npx @opengeoweb-sandbox/plugin-interface
# Follow the promptsNon-interactive mode:
npx @opengeoweb-sandbox/plugin-interface WeatherWidget \
--scopes time,animation \
--version 0.1.0After generation:
cd weather-widget
npm install
npm run storybook # Start development server
npm run build:vite # Build for productionAvailable Scopes
time: Manages time state withsetTimeeventsanimation: Manages animation time spans withsetAnimationStartTime,setAnimationEndTime, andsetAnimationTimeSpanevents
The generated plugin includes example code for all selected scopes, including state subscriptions, event handlers, and UI controls for testing.
Developing the Generator
If you're making changes to the generator templates or code, you need to rebuild the generator before testing:
Workflow
Make changes to templates in
templates/plugin-template/or generator code insrc/generator/Build the generator to compile your changes:
npm run build:libRun the generator locally (relative path works):
node bin/create-plugin.jsTest the generated plugin:
cd [new-plugin-folder] npm install npm run storybook # Start Storybook to test your plugin
Quick Reference
# After making template changes
npm run build:lib
# Generate a new plugin
node bin/create-plugin.js
# Test the generated plugin
cd [new-plugin-folder]
npm install
npm run storybookDevelopment
npm install # Install dependencies
npm run dev # Development server
npm test # Run tests
npm run build:lib # Build library
npm run lint # Lint codeStorybook
Storybook provides an interactive development environment for exploring and testing plugin integrations in isolation.
Running Storybook
npm run dev # Start Storybook dev server (usually http://localhost:6006)Available Stories
Located in the ./dev folder:
- PluginIntegration: Shows real-time interaction with plugin state (time, animation, lifecycle controls)
Benefits
- Isolated Development: Test components without running the full application
- Live Documentation: Interactive examples with editable props via Controls panel
- Visual Testing: See component states and variations side-by-side
- Accessibility: Built-in a11y addon helps catch accessibility issues early
- Rapid Prototyping: Quickly iterate on plugin behavior and UI integration
Stories include comprehensive documentation explaining the plugin architecture, custom hooks, and usage patterns.
Time Scope API
import {
PluginManager,
setTime,
toIso8601Utc,
assertIso8601Utc,
type Iso8601Utc,
} from 'plugin-interface';
const manager = new PluginManager();
const instance =
/* previously registered plugin instance with 'time' scope */ null as any;
// Basic: pass a valid UTC timestamp literal (compile-time shape checked)
setTime(instance, '2024-10-10T10:10:10Z');
// From Date: convert explicitly
const isoFromDate = toIso8601Utc(new Date());
setTime(instance, isoFromDate);
// Dynamic strings: setTime performs runtime validation and throws on invalid input
const raw = await fetchSomeTimestamp();
setTime(instance, raw);
// Optional pre-validation for clearer local error handling
try {
const safe: Iso8601Utc = assertIso8601Utc(raw);
setTime(instance, safe);
} catch (err) {
console.error('Invalid time format', err);
}
// Explicit conversion example
const iso: Iso8601Utc = toIso8601Utc(new Date('2025-01-01T00:00:00.999Z'));
setTime(instance, iso);Time Format & Validation
- Format: UTC ISO 8601 at seconds precision (
YYYY-MM-DDTHH:MM:SSZ). - Compile-time: template literal type
Iso8601Utcvalidates only literal shapes. - Runtime:
setTimeand helpers validate strings; errors include actionable hints (e.g., milliseconds present).
Helpers
setTime(instance, iso): Dispatches thetimescopesetTimeevent ifisois valid.toIso8601Utc(date): Returns a compliant UTC string; removes milliseconds.assertIso8601Utc(str): Throws ifstris not compliant; narrows type toIso8601Utcwhen valid.
If you need offsets or milliseconds support in the future, extend the validation and helpers while preserving the current API surface.
