allow a CEInstance's #gist() function to report subConcepts

This commit is contained in:
Will Webberley 2017-01-14 20:32:04 +00:00
parent 9ffb996771
commit 36ec8c80b7
2 changed files with 8 additions and 2 deletions

View File

@ -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)`;

View File

@ -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);
}