This tool allows you to create Personality block in your articles.
npm i --save codex.editor.personality
Include module in your application
var cdxEditorPersonality = require('exports-loader?cdxEditorPersonality!codex.editor.personality');
Include CSS filee
@import url("~codex.editor.personality/personality.css");
You will need exports-loader
, css-loader
and file-loader
.
- Download folder
- Add
personality.js
andpersonality.css
files on your page
Pass new tool to the codex.editor.start
method in tools
array:
personality: {
type : 'personality',
displayInToolbox : true,
iconClassname : 'cdx-personality-icon',
prepare : cdxEditorPersonality.prepare,
render : cdxEditorPersonality.render,
save : cdxEditorPersonality.save,
validate : cdxEditorPersonality.validate,
destroy : cdxEditorPersonality.destroy,
enableLineBreaks : true,
showInlineToolbar: true,
config: {
uploadURL: '/uploadPhoto',
}
}
- Specify
config.uploadURL
with route for file uploading.
To set personality photo, you will need server-side image uploader method.
Tool will send selected file on the route passed with config.uploadURL
. Then you free to implement your own file-saving scheme.
Expected server response format:
{
"success": 1,
"data" : {
"url" : "/uploaded/file/path.jpg"
}
}
API oriented, open-source, block-styled Edtior.
https://github.com/codex-team/codex.editor
We are small team of Web-developing fans consisting of IFMO students and graduates located in St. Petersburg, Russia. Fell free to give us a feedback on team@ifmo.su
Telegram: https://t.me/codex_team
Instagram: https://www.instagram.com/codex_team