Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@editorjs/link-autocomplete
Advanced tools
An upgraded version of base inline link tool with your server's search.
Get the package
npm i --save-dev @editorjs/link-autocomplete
yarn add -D @editorjs/link-autocomplete
You can use package from jsDelivr CDN.
<script src="https://cdn.jsdelivr.net/npm/@editorjs/link-autocomplete"></script>
Add a new Tool to the tools
property of the Editor.js initial config.
var editor = EditorJS({
...
/**
* Tools list
*/
tools: {
link: {
class: LinkAutocomplete,
config: {
endpoint: 'http://localhost:3000/',
queryParam: 'search'
}
}
},
...
});
Search requests will be sent to the server by GET
requests with a search string as a query param.
List of server connection params which may be configured.
endpoint
— URL of the server's endpoint for getting suggestions.
queryParam
— param name to be sent with the search string.
If there is no endpoint
then tool will work only for pasted links.
For endpoint requests server should answer with a JSON containing following properties:
success
(boolean
) — state of processing: true
or false
items
({name: string, href: string, description?: string}
) — an array of found items. Each item must contain name
and href
params. The description
param is optional. You can also return any other fields which will be stored in a link dataset.Content-Type: application/json
.
{
"success": true,
"items": [
{
"href": "https://codex.so/editor",
"name": "The first item",
"description": ""
},
{
"href": "https://codex.so/media",
"name": "The second item",
"description": ""
}
]
}
Marked text will be wrapped with a a
tag as a usual link.
Additional data will be store in element's dataset: data-name
, data-description
and other custom fields.
{
"type" : "text",
"data" : {
"text" : "Create a directory for your module, enter it and run <a href=\"https://codex.so/\" data-name=\"CodeX Site\">npm init</a> command."
}
}
By default, shortcut CMD (CTRL) + K
is used for pasting links as usual.
There is a few phrases to be translated.
UI items:
Paste or search
— placeholder for an input field if server endpoint passed.Paste a link
— placeholder for the same field if server endpoint is missing.Error messages:
Cannot process search request because of
— message before error's text in notification for a bad server response.Server responded with invalid data
— bad server's responseLink URL is invalid
— pasted link url is badi18n: {
messages: {
tools: {
LinkAutocomplete: {
'Paste or search': '...',
'Paste a link': '...',
'Cannot process search request because of': '...',
'Server responded with invalid data': '...',
'Link URL is invalid': '...'
}
}
}
},
If you're using this tool and editor.js in your business, please consider supporting their maintenance and evolution.
http://opencollective.com/editorjs
CodeX is a team of digital specialists around the world interested in building high-quality open source products on a global market. We are open for young people who want to constantly improve their skills and grow professionally with experiments in leading technologies.
🌐 | Join 👋 | ||
---|---|---|---|
codex.so | codex.so/join | @codex_team | @codex_team |
FAQs
Link Autocomplete Inline Tool for EditorJS
The npm package @editorjs/link-autocomplete receives a total of 269 weekly downloads. As such, @editorjs/link-autocomplete popularity was classified as not popular.
We found that @editorjs/link-autocomplete 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.