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

50 lines
1011 B
JavaScript
Raw Normal View History

import _ from 'lodash';
var groupCounter = 1;
export default {
2014-12-08 02:16:23 +00:00
type: 'subexp',
labelMap: {
'?:': '',
'?=': 'positive lookahead',
'?!': 'negative lookahead'
},
_render() {
2014-12-17 20:12:04 +00:00
return this.regexp.render(this.container.group())
.then(this.renderLabeledBox.bind(this, this.label, this.regexp, {
padding: 10
}));
2014-12-08 02:16:23 +00:00
},
resetCounter() {
groupCounter = 1;
},
2014-12-15 00:08:14 +00:00
_getAnchor() {
var anchor = this.regexp.getAnchor(),
matrix = this.transform().localMatrix;
return _.extend(anchor, {
ax: matrix.x(anchor.ax, anchor.ay),
ax2: matrix.x(anchor.ax2, anchor.ay),
ay: matrix.y(anchor.ax, anchor.ay)
});
},
setup() {
if (_.has(this.labelMap, this.properties.capture.textValue)) {
this.label = this.labelMap[this.properties.capture.textValue];
} else {
this.label = 'group #' + (groupCounter++);
}
this.regexp = this.properties.regexp;
2014-12-17 20:12:04 +00:00
if (!this.label) {
this.proxy = this.regexp;
}
2014-12-15 00:08:14 +00:00
}
};