1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-02-13 11:44:55 +01:00
Ian Storm Taylor 11b2003f53 Remove data (#1244)
* remove data from event handler signatures

* standardize known transfer types

* add setEventTransfer to docs

* update examples, fix drag/drop

* fix tests and draggable attribute setting
2017-10-16 21:04:16 -07:00

38 lines
756 B
JavaScript

/** @jsx h */
import React from 'react'
import h from '../../helpers/h'
export const schema = {
nodes: {
image: (props) => {
return (
React.createElement('img', { src: props.node.data.get('src'), ...props.attributes })
)
}
}
}
export const state = (
<state>
<document>
<image src="https://example.com/image.png" />
</document>
</state>
)
export const output = `
<div data-slate-editor="true" contenteditable="true" role="textbox">
<div data-slate-void="true" draggable="true">
<div style="height:0;color:transparent">
<span>
<span></span>
</span>
</div>
<div contenteditable="false">
<img src="https://example.com/image.png">
</div>
</div>
</div>
`.trim()