DEMO: https://ba5ik7.github.io/ngx-editorjs2
Ngx-EditorJs2 is an Angular-based, highly extensible block-style editor inspired by Editor.js. It allows users to create and manage rich text content using a variety of customizable blocks while leveraging Angular's reactive capabilities.
- Angular 19+
- For legacy Angular support, use ngx-editorjs
- 📝 Modular Block System – Supports paragraph, header, and other content blocks.
- 🔄 Reactive Data Streams – Uses RxJS for efficient state management.
- 🎛 Drag & Drop – Easily reorder blocks with smooth animations.
- ✍ Inline Toolbar – Provides text formatting options when selecting text.
- 🔧 Customizable – Easily extendable with new block types and actions.
To install Ngx-EditorJs2, run:
npm install @tmdjr/ngx-editorjs2
Import the Component into your Angular Standalone Component:
import { NgxEditorJs2Component } from '@tmdjr/ngx-editor-js2';
@Component({
selector: 'some-component',
imports: [NgxEditorJs2Component],
template: `
<ngx-editor-js2
[blocks]="initialBlocks"
[requestBlocks]="requestBlocks"
(blocksRequested)="handleBlocks($event)">
</ngx-editor-js2>
`,
})
- Implementation found in the Demo Src
Property | Type | Description |
---|---|---|
blocks |
NgxEditorJsBlock[] | null |
List of blocks to initialize the editor with. |
requestBlocks |
any |
When the value changes blocksRequested will emit the current state of the blocks. |
Property | Type | Description |
---|---|---|
blocksRequested |
NgxEditorJsBlock[] |
Emits the current state of blocks in the Form Group. Trigger when the requestBlocks value changes |
Ngx-EditorJs2 comes with built-in block components:
- ParagraphBlockComponent – Standard text block.
- HeaderBlockComponent – Allows different heading levels.
You can also add custom blocks by implementing the NGX_EDITORJS_OPTIONS
provider:
npm install @tmdjr/ngx-editor-js2-image
import { NGX_EDITORJS_OPTIONS } from '@tmdjr/ngx-editor-js2';
import { NgxEditorJs2ImageComponent } from '@tmdjr/ngx-editor-js2-image';
export const appConfig: ApplicationConfig = {
providers: [
{
provide: NGX_EDITORJS_OPTIONS,
useValue: {
consumerSupportedBlocks: [
{
// Customize the block name.
name: 'Image',
component: NgxEditorJs2ImageComponent,
// Must match the component name.
componentInstanceName: 'NgxEditorJs2ImageComponent',
},
],
},
},
],
};
To contribute, clone the repository and install dependencies:
git clone git@github.com:Ba5ik7/ngx-editorjs2.git
cd ngx-editorjs2
npm i
Build the library:
npm run build-ngx-editor-js2
Build Customs Blocks:
npm run build-ngx-editor-js2-image
// etc...
Run the development server:
npm run start-demo
If you want to live reload the library, run the following commands in succession:
npm run watch-ngx-editor-js2 // Important to run 1st
npm run watch-ngx-editor-js2-image
// etc...
npm run start-demo
Ngx-EditorJs2 is built on Angular's reactive architecture, using RxJS to manage state and data streams. The library is composed of several Services and Directives that handle different aspects of the editor:
graph TD;
NgxEditorJs2Component -->|Contains| EditorJsComponent;
EditorJsComponent -->|Handles Blocks| ParagraphBlockComponent;
EditorJsComponent -->|Handles Blocks| HeaderBlockComponent;
NgxEditorJs2Component -->|Uses Service| NgxEditorJs2Service;
EditorJsComponent -->|Uses Service| EditorJsService;
EditorJsService -->|Manages| BlockMovementService;
EditorJsService -->|Manages| ToolFabService;
EditorJsComponent -->|Uses Toolbar| ToolbarComponent;
ToolbarComponent -->|Has| ToolbarBlocksComponent;
ToolbarComponent -->|Has| ToolbarBlockOptionsComponent;
EditorJsComponent -->|Uses| ToolbarInlineComponent;
Service | Purpose |
---|---|
NgxEditorJs2Service |
Manages available block types and loaded blocks. |
EditorJsService |
Handles block rendering and form controls. |
BlockMovementService |
Manages drag-and-drop & reordering. |
ToolbarInlineService |
Manages inline text formatting. |
ToolFabService |
Provides contextual toolbars for block actions. |
Ngx-EditorJs2 follows a structured approach where each block component:
- Implements the
BlockComponent
interface to ensure consistency. - Uses
hostDirectives
to inherit required behaviors such as drag-and-drop. - Uses
host
CSS classes to apply styling and animations. - Uses a
formGroup
, which integrates with the larger form structure that holds all blocks.
Each block in Ngx-EditorJs2 is part of a larger formGroup
, allowing seamless state management across the entire editor. This design ensures that:
- Each block maintains its own FormControl, enabling real-time data binding.
- The editor-level formGroup acts as a centralized store, making it easier to retrieve or modify block data.
- Blocks can interact with services and directives, enhancing their capabilities dynamically.
MIT License © 2025 Wesley DuSell