svelte-web-blocks
v0.0.14
Published
An Open Source Implementation of Svelte Components for Web Development using Google Blockly
Readme
svelte-web-blocks
An Open Source Implementation of Svelte Components for Web Development using Google Blockly
Description
This project provides Svelte components for visual programming using Google Blockly. It allows developers to create block-based programming interfaces within Svelte applications, making it easier to implement visual programming features in your web projects.
Features
- 🔌 Seamless Blockly integration with Svelte
- 🧩 Custom block definitions and toolbox configuration
- 📝 Code generation for multiple languages
- 🎨 Customizable workspace themes
- 📱 Responsive design and mobile support
- 🔍 Live preview of generated code
- 📊 DOM inspection and visualization
- 🔄 Bidirectional JSON conversion
Installation
npm install svelte-web-blocksSetup Configuration
XML File Imports
This package uses XML files for Blockly toolbox definitions. If you're using Vite and encounter errors about "No loader configured for .xml files", add the following plugin to your vite.config.js/ts:
// vite-plugin-xml.js
import fs from 'fs';
import path from 'path';
export default function xmlPlugin() {
return {
name: 'vite-plugin-xml',
transform(_code: string, id: string) {
if (id.endsWith('.xml?raw')) {
const filePath = id.replace('?raw', '');
const content = fs.readFileSync(filePath, 'utf-8');
return {
code: `export default ${JSON.stringify(content)};`,
map: null
};
}
}
};
}Then update your vite.config.js/ts:
// vite.config.js/ts
import { defineConfig } from 'vite';
import { sveltekit } from '@sveltejs/kit/vite';
import xmlPlugin from './path/to/vite-plugin-xml.js';
export default defineConfig({
plugins: [
sveltekit(),
xmlPlugin()
]
});Usage
Basic Example with BlocklyEditor
<script>
import { BlocklyEditor } from 'svelte-web-blocks';
let editor;
let jsonOutput = '';
function handleEditorChange(event) {
if (event.detail && event.detail.json) {
jsonOutput = event.detail.json;
}
}
function clearWorkspace() {
if (editor) {
editor.clearWorkspace();
}
}
</script>
<div class="editor-container" style="height: 600px;">
<BlocklyEditor
bind:this={editor}
showCodeView={true}
showJsonView={true}
on:change={handleEditorChange}
/>
</div>
<div class="controls">
<button on:click={clearWorkspace}>Clear Workspace</button>
</div>Loading from JSON
<script>
import { BlocklyEditor } from 'svelte-web-blocks';
let editor;
let jsonInput = `[
{
"type": "document",
"properties": {
"title": "My Web Page"
},
"children": [
{
"type": "heading",
"properties": {
"text": "Hello World"
}
}
]
}
]`;
function loadJson() {
if (editor && jsonInput) {
editor.loadFromJson(jsonInput);
}
}
</script>
<div class="editor-container" style="height: 600px;">
<BlocklyEditor bind:this={editor} />
</div>
<div class="json-input">
<textarea bind:value={jsonInput} rows="10"></textarea>
<button on:click={loadJson}>Load from JSON</button>
</div>Key Components
Main Components
- BlocklyEditor: Full-featured editor with tabs for Blocks, JSON, HTML, Preview, and DOM inspection
- BlocklyWorkspace: Simple Blockly workspace without preview
- BlocklyWorkspaceWithPreview: Workspace with HTML preview functionality
Example Components
- BasicBlockly: Simple implementation showing HTML generation from blocks
- BlocklyToJson: Demonstrates how to convert Blockly workspace to JSON
- JsonToBlocks: Shows conversion from JSON structures to Blockly blocks
- HtmlToPug: Provides transformation from HTML to PUG format
Utility Functions
createBlocksFromJson: Convert JSON to Blockly blocksconvertHTMLToPug: Transform HTML to PUG formatinitializeBlocks: Load all block definitions and generators
Example Use Cases
This package supports various workflows:
- Creating web components visually with blocks
- Converting JSON specifications to visual blocks
- Generating HTML code from blocks
- Transforming HTML to PUG
- Live previewing generated components
- Inspecting the DOM structure of components
Quick Integration Guide
Basic HTML Generation
<script> import { BasicBlockly } from 'svelte-web-blocks'; </script> <BasicBlockly />JSON Generation
<script> import { BlocklyToJson } from 'svelte-web-blocks'; </script> <BlocklyToJson />JSON to Blocks Conversion
<script> import { JsonToBlocks } from 'svelte-web-blocks'; </script> <JsonToBlocks />HTML to PUG Conversion
<script> import { HtmlToPug } from 'svelte-web-blocks'; </script> <HtmlToPug />
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- Google Blockly
- Svelte
- All contributors who help improve this project
