Skip to content

Commit 452b864

Browse files
committed
Adapting demo
1 parent 4d2d96b commit 452b864

14 files changed

+190
-342
lines changed

.gitignore

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
demo/
2-
3-
!demo/main.js
4-
!demo/index.html
1+
_site/

demo/diff-area.js

-218
This file was deleted.

demo/diff.css

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ body {
99
vertical-align: text-top;
1010
}
1111

12-
.removed {
12+
.diff-delete {
1313
background-color: #ffecec
1414
}
15-
.inserted {
15+
.diff-equal {
16+
background-color: #ffffee
17+
}
18+
.diff-insert {
1619
background-color: #eaffea
1720
}

demo/diffDecorator.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
var React = require('react');
2+
var Draft = require('draft-js');
3+
4+
/**
5+
* @param {Strategies} strategies
6+
* @returns {Draft.Decorator}
7+
*/
8+
function diffDecorator(strategies) {
9+
return new Draft.CompositeDecorator([
10+
{
11+
strategy: strategies.getEqualStrategy(),
12+
component: EqualSpan
13+
},
14+
{
15+
strategy: strategies.getDeleteStrategy(),
16+
component: DeleteSpan
17+
},
18+
{
19+
strategy: strategies.getInsertStrategy(),
20+
component: InsertSpan
21+
}
22+
]);
23+
}
24+
25+
// Decorators
26+
27+
var InsertSpan = function (props) {
28+
return <span {...props} className="diff-insert">{props.children}</span>;
29+
};
30+
31+
var EqualSpan = function (props) {
32+
return <span {...props} className="diff-equal">{props.children}</span>;
33+
};
34+
35+
var DeleteSpan = function (props) {
36+
return <span {...props} className="diff-delete">{props.children}</span>;
37+
};
38+
39+
module.exports = diffDecorator;

0 commit comments

Comments
 (0)