allow a CEInstance's #gist() function to report subConcepts
This commit is contained in:
parent
9ffb996771
commit
36ec8c80b7
@ -256,7 +256,12 @@ class CEInstance {
|
||||
const concept = this.concept;
|
||||
if (!concept) { return ''; }
|
||||
let gist = `${this.name} is`;
|
||||
if (vowels.indexOf(concept.name.toLowerCase()[0]) > -1) { gist += ` an ${concept.name}.`; } else { gist += ` a ${concept.name}.`; }
|
||||
if (vowels.indexOf(concept.name.toLowerCase()[0]) > -1) { gist += ` an ${concept.name}.`; } else { gist += ` a ${concept.name}`; }
|
||||
for (let i = 0; i < this.subConcepts.length; i += 1) {
|
||||
gist += ` and a ${this.subConcepts[i].name}`;
|
||||
}
|
||||
gist += '.';
|
||||
|
||||
const facts = {};
|
||||
let factFound = false;
|
||||
for (let i = 0; i < this.valueIds.length; i += 1) {
|
||||
@ -288,7 +293,7 @@ class CEInstance {
|
||||
}
|
||||
if (factFound) {
|
||||
gist += ` ${this.name}`;
|
||||
for (const fact of facts) {
|
||||
for (const fact in facts) {
|
||||
gist += ` ${fact}`;
|
||||
if (facts[fact] > 1) {
|
||||
gist += ` (${facts[fact]} times)`;
|
||||
|
@ -227,6 +227,7 @@ class CEParser {
|
||||
|
||||
const test = t.replace(`'${instance.name}'`,instance.name).replace(`the ${concept.name} ${instance.name}`.trim(), '');
|
||||
const facts = test.replace(/\band\b/g, '+').match(/(?:'(?:\\.|[^'])*'|[^+])+/g);
|
||||
console.log(facts)
|
||||
for (const fact of facts) {
|
||||
this.processFact(instance, fact, source);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user