regexper-static/src/js/parser/javascript/subexp.js

78 lines
1.5 KiB
JavaScript
Raw Normal View History

import _ from 'lodash';
import Base from './base.js';
var groupCounter = 1;
export default _.extend({}, Base, {
2014-12-08 02:16:23 +00:00
type: 'subexp',
labelMap: {
'?:': '',
'?=': 'positive lookahead',
'?!': 'negative lookahead'
},
render() {
var label = this.groupLabel();
if (label) {
this.label = this.container.text()
.addClass('subexp-label')
.attr({
text: label
});
this.outline = this.container.rect()
.addClass('subexp-outline')
.attr({
rx: 3,
ry: 3
});
this.regexp.setContainer(this.container.group());
2014-12-08 02:16:23 +00:00
this.regexp.render();
} else {
this.regexp.setContainer(this.container);
2014-12-08 02:16:23 +00:00
this.regexp.render();
}
},
position() {
var box;
this.regexp.position();
if (this.outline) {
box = this.label.getBBox();
this.label.transform(Snap.matrix()
.translate(0, box.height));
this.regexp.container.transform(Snap.matrix()
.translate(10, 10 + box.height));
2014-12-10 00:02:31 +00:00
box = this.regexp.getBBox();
2014-12-08 02:16:23 +00:00
this.outline
.transform(Snap.matrix()
.translate(box.x - 10, box.y - 10))
.attr({
width: box.width + 20,
height: box.height + 20
});
2014-12-08 02:16:23 +00:00
}
},
groupLabel() {
if (_.has(this.labelMap, this._capture.textValue)) {
return this.labelMap[this._capture.textValue];
} else {
return 'group #' + (groupCounter++);
2014-12-08 02:16:23 +00:00
}
},
resetCounter() {
groupCounter = 1;
},
});