|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
* @Github:
|
|
|
|
|
* @Date: 2019-12-16 15:50:45
|
|
|
|
|
* @LastEditors : tangjiang
|
|
|
|
|
* @LastEditTime : 2019-12-24 09:44:03
|
|
|
|
|
* @LastEditTime : 2019-12-27 08:57:37
|
|
|
|
|
*/
|
|
|
|
|
import Quill from "quill";
|
|
|
|
|
|
|
|
|
@ -15,25 +15,38 @@ export default class ImageBlot extends BlockEmbed {
|
|
|
|
|
static create(value) {
|
|
|
|
|
|
|
|
|
|
const node = super.create();
|
|
|
|
|
|
|
|
|
|
node.setAttribute('alt', value.alt);
|
|
|
|
|
node.setAttribute('src', value.url);
|
|
|
|
|
|
|
|
|
|
console.log('~~~~~~~~~~~', node, value);
|
|
|
|
|
node.addEventListener('click', function () {
|
|
|
|
|
value.onclick(value.url);
|
|
|
|
|
}, false);
|
|
|
|
|
if (value.width) {
|
|
|
|
|
node.setAttribute('width', value.width);
|
|
|
|
|
}
|
|
|
|
|
if (value.height) {
|
|
|
|
|
node.setAttribute('height', value.height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (value.id) {
|
|
|
|
|
node.setAttribute('id', value.id);
|
|
|
|
|
}
|
|
|
|
|
// 宽度和高度都不存在时,
|
|
|
|
|
if (!value.width && !value.height) {
|
|
|
|
|
node.setAttribute('display', 'block');
|
|
|
|
|
// node.setAttribute('display', 'block');
|
|
|
|
|
node.setAttribute('width', '100%');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
node.setAttribute('style', { cursor: 'pointer' });
|
|
|
|
|
|
|
|
|
|
// if (node.onclick) {
|
|
|
|
|
// console.log('image 有图片点击事件======》》》》》》');
|
|
|
|
|
// // node.setAttribute('onclick', node.onCLick);
|
|
|
|
|
// }
|
|
|
|
|
// 给图片添加点击事件
|
|
|
|
|
node.onclick = () => {
|
|
|
|
|
value.onClick && value.onClick(value.url);
|
|
|
|
|
}
|
|
|
|
|
// node.onclick = () => {
|
|
|
|
|
// value.onClick && value.onClick(value.url);
|
|
|
|
|
// }
|
|
|
|
|
return node;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -45,7 +58,9 @@ export default class ImageBlot extends BlockEmbed {
|
|
|
|
|
onclick: node.onclick,
|
|
|
|
|
width: node.width,
|
|
|
|
|
height: node.height,
|
|
|
|
|
display: node.getAttribute('display')
|
|
|
|
|
display: node.getAttribute('display'),
|
|
|
|
|
id: node.id,
|
|
|
|
|
style: node.style
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|