Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@appigram/react-editor-js
Advanced tools
Unofficial react component for editorjs (https://editorjs.io/)
Unofficial react component for Editor.js (https://editorjs.io/).
You can see react-editor-js in action on both codesandbox and netlify.
npm i @appigram/react-editor-js --save
# or
yarn add @appigram/react-editor-js
You have to install the required peerDependencies (eg. React >= 16.8
), which
are listed by the command:
npm info "@appigram/react-editor-js@latest" peerDependencies
If using npm 5+, use this shortcut:
npx install-peerdeps --dev @appigram/react-editor-js
# or
yarn add @appigram/react-editor-js -D --peer
// index.js
import EditorJs from '@appigram/react-editor-js'
const App = () => {
return <EditorJs data={data} />
}
Whereas data
looks similar to this example. It is
based on the example output presented on editorjs.io.
EditorJs
passes all given props straight to the editorjs
instance. It is
basically just a wrapper component in React. Take a look at the
configuration page in the editor.js documentation
for more details.
// index.js
import EditorJs from '@appigram/react-editor-js'
const App = () => {
const editor = null
const onReady = () => {
// https://editorjs.io/configuration#editor-modifications-callback
console.log('Editor.js is ready to work!')
}
const onChange = () => {
// https://editorjs.io/configuration#editor-modifications-callback
console.log("Now I know that Editor's content changed!")
}
const onSave = async () => {
// https://editorjs.io/saving-data
try {
const outputData = await editor.save()
console.log('Article data: ', outputData)
} catch (e) {
console.log('Saving failed: ', e)
}
}
return (
<div>
<button onClick={onSave}>Save</button>
{/* docs: https://editorjs.io/configuration */}
<EditorJs
data={data}
// will be `editorjs` by default
holder="custom-editor-container"
onReady={onReady}
onChange={onChange}
editorInstance={editorInstance => {
// invoked once the editorInstance is ready
editor = editorInstance
}}
>
<div id="custom-editor-container" />
</EditorJs>
</div>
)
}
If you want to add more tools
simply pass a tools
property to the EditorJs
component:
// index.js
import EditorJs from '@appigram/react-editor-js'
import Header from '@editorjs/header'
const App = () => {
return <EditorJs data={data} tools={{ header: Header }} />
}
EditorJs
already comes with a basic config for @editorjs/paragraph
and @editorjs/header. Take a
look on their Github page to find more available
plugins (or take a look at the storybook example).
Name | Type | Default | Description |
---|---|---|---|
reinitializeOnPropsChange | boolean | false | editor-js is initialised again on componentDidUpdate |
This project is not affiliated, associated, authorized, endorsed by or in any way officially connected to EditorJS (editorjs.io).
Thanks goes to these wonderful people (emoji key):
Stefan Natter 💻 📖 💡 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
Unofficial react component for editorjs (https://editorjs.io/)
We found that @appigram/react-editor-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.