X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empathy%2Fempathy.jsx;h=0789b463fe5813cb3fc23b8cb4a84610dd32b2a5;hp=9f187d8d582ba1d8b7bf0a6cd0824e430d568921;hb=d49e0aa05e9204fcefa2e7e88653dcd5bdc73a06;hpb=03ec08e67b15cfb053bb8e7d48aefc331fdbda33 diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 9f187d8..0789b46 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -454,11 +454,31 @@ class Ambiguities extends React.PureComponent { constructor(props) { super(props); - const word_sets = props.words.map(word => { - const set = new Set(); - set.add(word); - return set; - }); + function canonize(word) { + return word.replace(/((a|an|the) )?(.*?)s?$/i, '$3'); + } + + const word_sets = []; + + for (let word of props.words) { + const word_canon = canonize(word); + console.log("Canonized " + word + " to " + word_canon); + let found_match = false; + for (let set of word_sets) { + const set_canon = canonize(set.values().next().value); + console.log("Comparing " + word_canon + " to " + set_canon); + if (word_canon === set_canon) { + set.add(word); + found_match = true;; + break; + } + } + if (! found_match) { + const set = new Set(); + set.add(word); + word_sets.push(set); + } + } this.state = { word_sets: word_sets,