npm install grapesjs grapesjs-click
import grapesjs from 'grapesjs'
import grapesjsClick, { getMouseListener, showGrabbedInfo, hideGrabbedInfo } from 'grapesjs-click'
const pluginOptions = {
hasAutoDropped: boolean // optional, default to true
}
const editor = grapesjs.init({
// ...
plugins: [
grapesjsClick
],
pluginOpts: {
[grapesjsClick]: pluginOptions
}
// ...
})
import grapesjs, { usePlugin } from 'grapesjs'
import grapesjsClick, { getMouseListener, showGrabbedInfo, hideGrabbedInfo } from 'grapesjs-click'
import type { PluginOptions, CommandOptions } from 'grapesjs-click'
const pluginOptions: PluginOptions = {
hasAutoDropped: boolean // optional, default to true
}
const editor = grapesjs.init({
// ...
plugins: [
usePlugin(grapesjsClick, pluginOptions)
]
// ...
})
const commandOptions: CommandOptions = {
id: string // required, grapesjs block identifier
}
editor.runCommand('click:grab-block', commandOptions)
const commandOptions: CommandOptions = {
id: string // optional, grabbed block id by default
}
editor.runCommand('click:drop-block', commandOptions)
const commandOptions: CommandOptions = {
id: string // optional, selected component by default
}
editor.runCommand('click:grab-component', commandOptions)
const commandOptions: CommandOptions = {
id: string // optional, grabbed component id by default
}
editor.runCommand('click:drop-component', commandOptions)
import type { MouseListener } from 'grapesjs-click'
// Your custom HTML element to display block or component info.
const grabbedInfoEl = document.getElementById('grabbed-info')
// An utility to make your custom HTML element follow the mouse cursor.
const mouseListener: MouseListener = getMouseListener(editor, grabbedInfoEl)
Full demonstration in the
src/example.ts
file.
editor.on('click:grab-block', (block: Block) => {
const label = block.getLabel()
const category = block.getCategoryLabel()
grabbedInfoEl.textContent = `${label} (${category})`
showGrabbedInfo(grabbedInfoEl, mouseListener)
})
editor.on('click:drop-block', () => {
grabbedInfoEl.textContent = ''
grabbedInfoEl.style.top = '0'
grabbedInfoEl.style.left = '0'
hideGrabbedInfo(grabbedInfoEl, mouseListener)
})
editor.on('click:grab-component', (component: Component) => {
const { name, type } = component.props()
const label = name || type
grabbedInfoEl.textContent = label
showGrabbedInfo(grabbedInfoEl, mouseListener)
})
editor.on('click:drop-component', (component: Component) => {
grabbedInfoEl.textContent = ''
grabbedInfoEl.style.top = '0'
grabbedInfoEl.style.left = '0'
hideGrabbedInfo(grabbedInfoEl, mouseListener)
})
{
// Drop the grabbed block or component when a component is selected in the canvas.
hasAutoDropped: boolean // optional, default to true
}
If you have a question about how grapesjs-click
works or an idea to improve it, the Discussions tab in GitHub is the place to be.
However, if you get an error, you should open an issue.
Distributed under the BSD 3-Clause License. See LICENSE for more information.
Benjamin Grand @bgrand_ch