-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddText.js
101 lines (91 loc) · 3.21 KB
/
addText.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import React, { Component } from 'react';
import { Row, Col, Button } from 'react-bootstrap';
import { EditorState, convertToRaw, ContentState } from 'draft-js';
import { Editor } from 'react-draft-wysiwyg';
import draftToHtml from 'draftjs-to-html';
import htmlToDraft from 'html-to-draftjs';
import htmlToImage from 'html-to-image';
import '../../../node_modules/react-draft-wysiwyg/dist/react-draft-wysiwyg.css';
export default class AddTextScreen extends Component {
constructor(props) {
super(props);
this.state = {
editorState: EditorState.createEmpty(),
code: this.props.code
}
console.log("code ====> " + this.state.code);
}
state = {
editorState: null,
code: '',
}
onEditorStateChange = (editorState) => {
this.setState({
editorState,
});
};
handleText = () => {
var htmlCode = draftToHtml(convertToRaw(this.state.editorState.getCurrentContent()));
let handle = this.props.handleAddText;
var node = document.querySelector('.public-DraftStyleDefault-ltr');
htmlToImage.toPng(node).then(function (dataUrl) {
handle(dataUrl, htmlCode);
});
}
render () {
if (this.state.code !== "") {
const blocksFromHtml = htmlToDraft(this.state.code);
const { contentBlocks, entityMap } = blocksFromHtml;
const contentState = ContentState.createFromBlockArray(contentBlocks, entityMap);
this.state.editorState = EditorState.createWithContent(contentState);
console.log("editorState ===> " + JSON.stringify(this.state.editorState));
}
return (
<div className="galaryStyle">
<Row className="imageGalaryStyle">
<Editor
editorState={this.state.editorState}
wrapperClassName="wrapper-class"
editorClassName="editor-class"
toolbarClassName="toolbar-class"
localization={{ locale: 'en', translations: editorLabels }}
onEditorStateChange={this.onEditorStateChange}
/>
</Row>
<Row style={{bottom: 0}}>
<Col md></Col>
<Col md>
<Row>
<Col md></Col>
<Col md>
<Button onClick={this.handleText}>Add Text</Button>
</Col>
</Row>
</Col>
</Row>
</div>
)
}
}
const editorLabels = {
'generic.add' : 'Add',
'generic.cancel' : 'Cancel',
'components.controls.fontfamily.fontfamily': 'Font',
'components.controls.history.history': 'History',
'components.controls.history.undo': 'Undo',
'components.controls.history.redo': 'Redo',
}
let styles = {
divImgStyle: {
marginBottom: 10,
},
imageStyle: {
borderRadius: 4,
},
selectedImgStyle: {
borderRadius: 4,
borderColor: 'fuchsia',
borderWidth: 6,
borderStyle: 'solid'
}
}