Adding first cut of code to render alternations

Still need to implement lines to the individual parts
This commit is contained in:
Jeff Avallone
2014-11-30 17:54:12 -05:00
parent ed2c26c39e
commit f8cded8eac
5 changed files with 44 additions and 12 deletions
+31 -5
View File
@@ -2,11 +2,37 @@ import _ from 'lodash';
import Base from './base.js';
export default _.extend({}, Base, {
render(container) {
this.contents = _.map(this.matches(), match => {
var content = container.group();
match.render(content);
return content;
});
},
position() {
var center,
positions;
_.invoke(this.matches(), 'position');
positions = _.chain(this.contents)
.map(content => {
return { box: content.getBBox(), content };
});
center = positions.reduce((center, pos) => {
return Math.max(center, pos.box.cx);
}, 0).value();
positions.reduce((offset, pos) => {
pos.content.transform(Snap.matrix()
.translate(center - pos.box.cx, offset));
return offset + pos.box.height + 5;
}, 0);
},
matches() {
if (this.elements[1].regexp) {
return [this.match].concat(this.elements[1].regexp.matches());
} else {
return [this.match];
}
return [this.match].concat(_.map(this.alternates.elements, _.property('match')));
}
});