describe('unwrapping', function() {
it('unwraps DocumentTextElement from its parent DocumentNodeElement if it\'s its only child', function() {
- var c = canvas.fromXML('<section><div>Alice has a cat</div></section>'),
+ var c = canvas.fromXML('<section>Alice <span>has a</span> cat</section>'),
section = c.doc(),
- text = section.children()[0].children()[0];
+ text = section.children()[1].children()[0];
text.unwrap();
- expect(section.children().length).to.equal(1);
+ expect(section.children().length).to.equal(1, 'section has one child');
expect(section.children()[0].getText()).to.equal('Alice has a cat');
})
});
}
},
unwrap: function() {
- if(this.parent().children().length === 1) {
- var parent = this.parent();
- parent.after(this);
+ var parent = this.parent();
+ if(parent.children().length === 1) {
+ var grandParent = parent.parent();
+ if(grandParent) {
+ var grandParentChildren = grandParent.children(),
+ idx = grandParent.childIndex(parent),
+ prev = idx - 1 > -1 ? grandParentChildren[idx-1] : null,
+ next = idx + 1 < grandParentChildren.length ? grandParentChildren[idx+1] : null;
+ if(prev && next) {
+ prev.setText(prev.getText() + this.getText() + next.getText());
+ next.detach();
+ } else if (prev || next) {
+ var target = prev ? prev : next;
+ target.setText(target.getText() + this.getText());
+ } else {
+ parent.after(this);
+ }
+ } else {
+ parent.after(this);
+ }
parent.detach();
}
},