|
|
@ -99,18 +99,14 @@ nopaque.corpus_analysis.query_builder.QueryBuilder = class QueryBuilder {
|
|
|
|
|
|
|
|
|
|
|
|
// Ensures that metadata is always at the end of the query and if an index is given, inserts the query chip at the given index and if there is a closing tag, inserts the query chip before the closing tag.
|
|
|
|
// Ensures that metadata is always at the end of the query and if an index is given, inserts the query chip at the given index and if there is a closing tag, inserts the query chip before the closing tag.
|
|
|
|
this.removePlaceholder();
|
|
|
|
this.removePlaceholder();
|
|
|
|
let lastChild = this.elements.queryInputField.lastChild;
|
|
|
|
|
|
|
|
let isLastChildTextAnnotation = lastChild && lastChild.dataset.type === 'text-annotation';
|
|
|
|
|
|
|
|
if (!index) {
|
|
|
|
if (!index) {
|
|
|
|
let closingTagElement = this.elements.queryInputField.querySelector('[data-closing-tag="true"]');
|
|
|
|
let closingTagElement = this.elements.queryInputField.querySelector('[data-closing-tag="true"]');
|
|
|
|
if (closingTagElement) {
|
|
|
|
if (closingTagElement) {
|
|
|
|
index = Array.from(this.elements.queryInputField.children).indexOf(closingTagElement);
|
|
|
|
index = Array.from(this.elements.queryInputField.children).indexOf(closingTagElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dataType !== 'text-annotation' && index) {
|
|
|
|
if (index) {
|
|
|
|
this.elements.queryInputField.insertBefore(queryChipElement, this.elements.queryChipElements[index]);
|
|
|
|
this.elements.queryInputField.insertBefore(queryChipElement, this.elements.queryChipElements[index]);
|
|
|
|
} else if (dataType !== 'text-annotation' && isLastChildTextAnnotation) {
|
|
|
|
|
|
|
|
this.elements.queryInputField.insertBefore(queryChipElement, lastChild);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
this.elements.queryInputField.appendChild(queryChipElement);
|
|
|
|
this.elements.queryInputField.appendChild(queryChipElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -149,9 +145,6 @@ nopaque.corpus_analysis.query_builder.QueryBuilder = class QueryBuilder {
|
|
|
|
case 'start-entity':
|
|
|
|
case 'start-entity':
|
|
|
|
this.extensions.structuralAttributeBuilderFunctions.editStartEntityChipElement(queryChipElement);
|
|
|
|
this.extensions.structuralAttributeBuilderFunctions.editStartEntityChipElement(queryChipElement);
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case 'text-annotation':
|
|
|
|
|
|
|
|
this.extensions.structuralAttributeBuilderFunctions.editTextAnnotationChipElement(queryChipElement);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'token':
|
|
|
|
case 'token':
|
|
|
|
let queryElementsContent = this.extensions.tokenAttributeBuilderFunctions.prepareTokenQueryElementsContent(queryChipElement);
|
|
|
|
let queryElementsContent = this.extensions.tokenAttributeBuilderFunctions.prepareTokenQueryElementsContent(queryChipElement);
|
|
|
|
this.extensions.tokenAttributeBuilderFunctions.editTokenChipElement(queryElementsContent);
|
|
|
|
this.extensions.tokenAttributeBuilderFunctions.editTokenChipElement(queryElementsContent);
|
|
|
@ -329,7 +322,7 @@ nopaque.corpus_analysis.query_builder.QueryBuilder = class QueryBuilder {
|
|
|
|
if (dropdownId === 'corpus-analysis-concordance-token-incidence-modifiers-dropdown') {
|
|
|
|
if (dropdownId === 'corpus-analysis-concordance-token-incidence-modifiers-dropdown') {
|
|
|
|
button.addEventListener('click', () => this.tokenIncidenceModifierHandler(button.dataset.token, button.innerHTML));
|
|
|
|
button.addEventListener('click', () => this.tokenIncidenceModifierHandler(button.dataset.token, button.innerHTML));
|
|
|
|
} else if (dropdownId === 'corpus-analysis-concordance-character-incidence-modifiers-dropdown') {
|
|
|
|
} else if (dropdownId === 'corpus-analysis-concordance-character-incidence-modifiers-dropdown') {
|
|
|
|
button.addEventListener('click', () => this.characterIncidenceModifierHandler(button));
|
|
|
|
button.addEventListener('click', () => this.extensions.tokenAttributeBuilderFunctions.characterIncidenceModifierHandler(button));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -360,7 +353,7 @@ nopaque.corpus_analysis.query_builder.QueryBuilder = class QueryBuilder {
|
|
|
|
let expertModeInputFieldValue = document.querySelector('#corpus-analysis-concordance-form-query').value;
|
|
|
|
let expertModeInputFieldValue = document.querySelector('#corpus-analysis-concordance-form-query').value;
|
|
|
|
let chipElements = this.parseTextToChip(expertModeInputFieldValue);
|
|
|
|
let chipElements = this.parseTextToChip(expertModeInputFieldValue);
|
|
|
|
let closingTagElements = ['end-sentence', 'end-entity'];
|
|
|
|
let closingTagElements = ['end-sentence', 'end-entity'];
|
|
|
|
let editableElements = ['start-entity', 'text-annotation', 'token'];
|
|
|
|
let editableElements = ['start-entity', 'token'];
|
|
|
|
for (let chipElement of chipElements) {
|
|
|
|
for (let chipElement of chipElements) {
|
|
|
|
let isClosingTag = closingTagElements.includes(chipElement['type']);
|
|
|
|
let isClosingTag = closingTagElements.includes(chipElement['type']);
|
|
|
|
let isEditable = editableElements.includes(chipElement['type']);
|
|
|
|
let isEditable = editableElements.includes(chipElement['type']);
|
|
|
@ -393,11 +386,7 @@ nopaque.corpus_analysis.query_builder.QueryBuilder = class QueryBuilder {
|
|
|
|
pretty: 'Entity End',
|
|
|
|
pretty: 'Entity End',
|
|
|
|
type: 'end-entity'
|
|
|
|
type: 'end-entity'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
':: ?match\\.text_[A-Za-z]+="[^"]+"': {
|
|
|
|
'\\[(word|lemma|pos|simple_pos)=("(?:[^"\\\\]|\\\\")*") ?(%c)? ?((\\&|\\|) ?(word|lemma|pos|simple_pos)=("(?:[^"\\\\]|\\\\")*") ?(%c)? ?)*\\]': {
|
|
|
|
pretty: '',
|
|
|
|
|
|
|
|
type: 'text-annotation'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
'\\[(word|lemma|pos|simple_pos)=(("[^"]+")|(\\u0027[^\\u0027]+\\u0027)) ?(%c)? ?((\\&|\\|) ?(word|lemma|pos|simple_pos)=(("[^"]+")|(\\u0027[^\\u0027]+\\u0027)) ?(%c)? ?)*\\]': {
|
|
|
|
|
|
|
|
pretty: '',
|
|
|
|
pretty: '',
|
|
|
|
type: 'token'
|
|
|
|
type: 'token'
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -450,14 +439,8 @@ nopaque.corpus_analysis.query_builder.QueryBuilder = class QueryBuilder {
|
|
|
|
case ':: ?match\\.text_[A-Za-z]+="[^"]+"':
|
|
|
|
case ':: ?match\\.text_[A-Za-z]+="[^"]+"':
|
|
|
|
prettyText = stringElement.replace(/:: ?match\.text_|"|"/g, '');
|
|
|
|
prettyText = stringElement.replace(/:: ?match\.text_|"|"/g, '');
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case '\\[(word|lemma|pos|simple_pos)=(("[^"]+")|(\\u0027[^\\u0027]+\\u0027)) ?(%c)? ?((\\&|\\|) ?(word|lemma|pos|simple_pos)=(("[^"]+")|(\\u0027[^\\u0027]+\\u0027)) ?(%c)? ?)*\\]':
|
|
|
|
case '\\[(word|lemma|pos|simple_pos)=("(?:[^"\\\\]|\\\\")*") ?(%c)? ?((\\&|\\|) ?(word|lemma|pos|simple_pos)=("(?:[^"\\\\]|\\\\")*") ?(%c)? ?)*\\]':
|
|
|
|
let doubleQuotes = /(word|lemma|pos|simple_pos)="[^"]+"/gi;
|
|
|
|
prettyText = stringElement.replace(/^\[|\]$|(?<!\\)"/g, '');
|
|
|
|
let singleQuotes = /(word|lemma|pos|simple_pos)='[^']+'/gi;
|
|
|
|
|
|
|
|
if (doubleQuotes.exec(stringElement)) {
|
|
|
|
|
|
|
|
prettyText = stringElement.replace(/^\[|\]$|"/g, '');
|
|
|
|
|
|
|
|
} else if (singleQuotes.exec(stringElement)) {
|
|
|
|
|
|
|
|
prettyText = stringElement.replace(/^\[|\]$|'/g, '');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
prettyText = prettyText.replace(/\&/g, ' and ').replace(/\|/g, ' or ');
|
|
|
|
prettyText = prettyText.replace(/\&/g, ' and ').replace(/\|/g, ' or ');
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case '(?<!\\[) ?\\{[0-9]+} ?(?![^\\]]\\])':
|
|
|
|
case '(?<!\\[) ?\\{[0-9]+} ?(?![^\\]]\\])':
|
|
|
|