codex_editor | Unsorted

Telegram-канал codex_editor - Editor.js 🤩

269

Users and collaborators community Ask a question or leave a feedback about Editor.js https://github.com/codex-team/editor.js Please, write in English. 💝 Support project: http://opencollective.com/editorjs

Subscribe to a channel

Editor.js 🤩

Скажите с а есть в эдитор js компонент кнопка?

Читать полностью…

Editor.js 🤩

📦 @editorjs/editorjs 2.30.7 was published

Читать полностью…

Editor.js 🤩

📦 @editorjs/editorjs 2.31.0-rc.4 was published

Читать полностью…

Editor.js 🤩

📦 @editorjs/helpers 1.0.1 was published

Читать полностью…

Editor.js 🤩

📦 @editorjs/caret 1.0.3 was published

Читать полностью…

Editor.js 🤩

click Play with demo button.

Читать полностью…

Editor.js 🤩

where can I see the demo of editor.js?

Читать полностью…

Editor.js 🤩

You can create custom tools with your markup and logic

Читать полностью…

Editor.js 🤩

here is my code


import { useEffect, useRef } from 'react';
import EditorJS, { PasteEvent } from '@editorjs/editorjs';
import Table from '@editorjs/table';
import Image from '@editorjs/image';

export class CustomImage extends Image {
constructor(params) {
super(params);
}
onPaste(event: PasteEvent){
console.log('img', { event });
}
}

export class CustomTable extends Table {
constructor(params) {
super(params);
}
onPaste(event: PasteEvent) {
console.log('img', { event });
}
}

const Editor = () => {
const editorInstance = useRef(null);
const editorHolderRef = useRef(null);
useEffect(() => {
const editor = new EditorJS({
holder: 'editorjs',
tools: {
table: CustomTable,
image: CustomImage,
},
});
editorInstance.current = editor;
handler(editorHolderRef.current);
}, []);

const handler = (div) => {
div.addEventListener('paste', (event) => {
event.preventDefault();
const pasteData = event.clipboardData || window.clipboardData;
console.log(pasteData.types);
});
};
return (
<div
id='editorjs'
ref={editorHolderRef}
style={{ border: '1px solid #ccc', padding: '10px', width: '100vw' }}
/>
);
};
function App() {
return (
<>
<h1>editorjs</h1>
<Editor />
</>
);
}

Читать полностью…

Editor.js 🤩

Hey, we’re working on it. You can follow the progress in this repo: https://github.com/editor-js/document-model. This is an epic feature, so sponsorship really helps us move faster. DM me if you’d like to help and get it sooner

Читать полностью…

Editor.js 🤩

📦 @editorjs/editorjs 2.31.0-rc.2 was published

Читать полностью…

Editor.js 🤩

So any quick solution ?

Читать полностью…

Editor.js 🤩

Hey. It will work flawlessly in 3.0 which is under development at the moment. The best way to help shipping it faster is a donation on OpenCollective.
https://opencollective.com/editorjs

Читать полностью…

Editor.js 🤩

📦 editorjs/embed">@editorjs/embed 2.7.6 was published

Читать полностью…

Editor.js 🤩

📦 editorjs/embed">@editorjs/embed 2.7.5 was published

Читать полностью…

Editor.js 🤩

📦 @editorjs/editorjs 2.31.0-rc.5 was published

Читать полностью…

Editor.js 🤩

Has anyone tried creating animations like this in editorJS? https://x.com/zack_overflow/status/1853494692169896361

How did / would you go about it?

Читать полностью…

Editor.js 🤩

📦 @editorjs/editorjs 2.31.0-rc.3 was published

Читать полностью…

Editor.js 🤩

📦 @editorjs/dom 1.0.1 was published

Читать полностью…

Editor.js 🤩

Bug placeholder if input space

Читать полностью…

Editor.js 🤩

https://editorjs.io/

Читать полностью…

Editor.js 🤩

📦 editorjs/image">@editorjs/image 2.10.0 was published

Читать полностью…

Editor.js 🤩

Hey everyone! I was wondering if it was possible to make Editor.js work on my own custom html?

I created the buttons/editable div myself and want the logic to be from Editor.js. Is this possible? and if so how?

Читать полностью…

Editor.js 🤩

hey guys, can you help me with the issue
i have an editorjs instance on my react app
and i want to paste data on my editor as table from excel file, but instead of pasting as table it paste as picture
clipboard data have 4 types 'text/plain', 'text/html', 'text/rtf', 'Files'
but my CustomImage tool shows me only 1 type 'Files'
CustomTable tool didn't show me anything
deps
"@editorjs/editorjs": "^2.30.6",
"@editorjs/image": "^2.9.3",
"@editorjs/table": "^2.4.2",


i attached video

Читать полностью…

Editor.js 🤩

Hi, I saw this project and instantly fell in love with it... We where thinking about implementing collaborative editing since it's on the roadmap and we have quite a bit of experience with websockets.

Anybody already working on this feature?

Читать полностью…

Editor.js 🤩

Within a couple of weeks

Читать полностью…

Editor.js 🤩

When is it expected to be release? Time is the main problem

Читать полностью…

Editor.js 🤩

Hi everyone. Been using editorjs for a while for our CMS. The main problem I have is with the undo. Even with the undo plugin it has many issues. Anyone interested to fix this permanently ? I would pay for that. Message me privately if interested

Читать полностью…

Editor.js 🤩

📦 editorjs/underline">@editorjs/underline 1.2.1 was published

Читать полностью…

Editor.js 🤩

📦 @editorjs/caret 1.0.2 was published

Читать полностью…
Subscribe to a channel