2021-06-07 17:09:30 +00:00
|
|
|
/* Imports*/
|
2022-01-29 21:06:16 +00:00
|
|
|
import React from "react";
|
|
|
|
import {
|
|
|
|
numToAlphabeticalString,
|
|
|
|
formatLargeOrSmall,
|
|
|
|
avg,
|
2022-04-11 18:08:35 +00:00
|
|
|
hackyGeomMean,
|
2022-04-11 18:39:29 +00:00
|
|
|
getCoefficientOfVariation,
|
2022-01-29 21:06:16 +00:00
|
|
|
} from "../lib/utils.js";
|
2021-06-07 17:09:30 +00:00
|
|
|
|
2021-12-08 11:35:18 +00:00
|
|
|
/* Functions */
|
2021-06-07 17:09:30 +00:00
|
|
|
|
2021-12-08 11:35:18 +00:00
|
|
|
const pathPlusLink = (pathSoFar, link) => {
|
2022-01-29 21:06:16 +00:00
|
|
|
return [...pathSoFar, link];
|
|
|
|
// previously: pathSoFar.concat(link).flat()
|
|
|
|
// Note that concat is not destructive
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat
|
|
|
|
};
|
2021-12-08 11:35:18 +00:00
|
|
|
|
|
|
|
async function findPathsWithoutPrunning({
|
2022-01-29 21:06:16 +00:00
|
|
|
sourceElementId,
|
|
|
|
targetElementId,
|
|
|
|
maxLengthOfPath,
|
|
|
|
pathSoFar,
|
|
|
|
links,
|
|
|
|
nodes,
|
2021-12-08 11:35:18 +00:00
|
|
|
}) {
|
2022-01-29 21:06:16 +00:00
|
|
|
// This is an un-used function which might make findPaths more understandable
|
|
|
|
// It uses the same recursive functionality
|
|
|
|
// but has no path prunning
|
|
|
|
let paths = [];
|
2021-06-07 17:09:30 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
/* Path traversing */
|
|
|
|
if (maxLengthOfPath > 0) {
|
|
|
|
for (let link of links) {
|
|
|
|
// vs let link of linksNow in findPaths
|
|
|
|
if (
|
|
|
|
(link.source == sourceElementId && link.target == targetElementId) ||
|
|
|
|
(link.source == targetElementId && link.target == sourceElementId)
|
|
|
|
) {
|
|
|
|
// direct Path
|
|
|
|
let newPath = pathPlusLink(pathSoFar, link);
|
|
|
|
paths.push(newPath);
|
|
|
|
} else if (link.source == sourceElementId) {
|
|
|
|
let newPaths = await findPaths({
|
|
|
|
pathSoFar: pathPlusLink(pathSoFar, link),
|
|
|
|
maxLengthOfPath: maxLengthOfPath - 1,
|
|
|
|
sourceElementId: link.target,
|
|
|
|
targetElementId,
|
|
|
|
links: links, // vs let link of linksInner in findPaths
|
|
|
|
nodes,
|
|
|
|
});
|
|
|
|
if (newPaths.length != 0) {
|
|
|
|
paths.push(...newPaths);
|
|
|
|
}
|
|
|
|
} else if (link.target == sourceElementId) {
|
|
|
|
let newPaths = await findPaths({
|
|
|
|
pathSoFar: pathPlusLink(pathSoFar, link),
|
|
|
|
maxLengthOfPath: maxLengthOfPath - 1,
|
|
|
|
sourceElementId: link.source,
|
|
|
|
targetElementId,
|
|
|
|
links: links, // vs let link of linksInner in findPaths
|
|
|
|
nodes,
|
|
|
|
});
|
|
|
|
if (newPaths.length != 0) {
|
|
|
|
paths.push(...newPaths);
|
2021-12-08 11:35:18 +00:00
|
|
|
}
|
2022-01-29 21:06:16 +00:00
|
|
|
}
|
2021-12-08 11:35:18 +00:00
|
|
|
}
|
2022-01-29 21:06:16 +00:00
|
|
|
}
|
2021-12-08 11:35:18 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
return paths;
|
2021-12-08 11:35:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function findPaths({
|
2022-01-29 21:06:16 +00:00
|
|
|
sourceElementId,
|
|
|
|
sourceElementPosition,
|
|
|
|
targetElementId,
|
|
|
|
targetElementPosition,
|
|
|
|
maxLengthOfPath,
|
|
|
|
pathSoFar,
|
|
|
|
links,
|
|
|
|
nodes,
|
2021-12-07 22:45:55 +00:00
|
|
|
}) {
|
2022-01-29 21:06:16 +00:00
|
|
|
// This is the key path finding function
|
|
|
|
// It finds the path from one element to another, recursively
|
|
|
|
// It used to be very computationally expensive until I added
|
|
|
|
// the path prunning step: Instead of traversing all links,
|
|
|
|
// traverse only those which are between the origin and target links
|
|
|
|
// this requires us to have a notion of "between"
|
2021-12-08 11:35:18 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
let paths = [];
|
2021-12-08 11:35:18 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
/* Path prunning*/
|
|
|
|
let minPos = Math.min(sourceElementPosition, targetElementPosition);
|
|
|
|
let maxPos = Math.max(sourceElementPosition, targetElementPosition);
|
|
|
|
let linksInner = links.filter(
|
|
|
|
(link) =>
|
|
|
|
minPos <= link.sourceElementPosition &&
|
|
|
|
link.sourceElementPosition <= maxPos &&
|
|
|
|
minPos <= link.targetElementPosition &&
|
|
|
|
link.targetElementPosition <= maxPos
|
|
|
|
);
|
|
|
|
let linksNow = linksInner.filter(
|
|
|
|
(link) => link.source == sourceElementId || link.target == sourceElementId
|
|
|
|
);
|
2021-12-08 11:35:18 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
/* Path traversing */
|
|
|
|
if (maxLengthOfPath > 0) {
|
|
|
|
for (let link of linksNow) {
|
|
|
|
if (
|
|
|
|
(link.source == sourceElementId && link.target == targetElementId) ||
|
|
|
|
(link.source == targetElementId && link.target == sourceElementId)
|
|
|
|
) {
|
|
|
|
// direct Path
|
|
|
|
let newPath = pathPlusLink(pathSoFar, link);
|
|
|
|
paths.push(newPath);
|
|
|
|
} else if (link.source == sourceElementId) {
|
|
|
|
let newPaths = await findPaths({
|
|
|
|
pathSoFar: pathPlusLink(pathSoFar, link),
|
|
|
|
maxLengthOfPath: maxLengthOfPath - 1,
|
|
|
|
sourceElementPosition: link.sourceElementPosition,
|
|
|
|
sourceElementId: link.target,
|
|
|
|
targetElementId,
|
|
|
|
targetElementPosition,
|
|
|
|
links: linksInner,
|
|
|
|
nodes,
|
|
|
|
});
|
|
|
|
if (newPaths.length != 0) {
|
|
|
|
paths.push(...newPaths);
|
2021-06-07 17:09:30 +00:00
|
|
|
}
|
2022-01-29 21:06:16 +00:00
|
|
|
} else if (link.target == sourceElementId) {
|
|
|
|
let newPaths = await findPaths({
|
|
|
|
pathSoFar: pathPlusLink(pathSoFar, link),
|
|
|
|
maxLengthOfPath: maxLengthOfPath - 1,
|
|
|
|
sourceElementPosition: link.sourceElementPosition,
|
|
|
|
sourceElementId: link.source,
|
|
|
|
targetElementPosition,
|
|
|
|
targetElementId,
|
|
|
|
links: linksInner,
|
|
|
|
nodes,
|
|
|
|
});
|
|
|
|
if (newPaths.length != 0) {
|
|
|
|
paths.push(...newPaths);
|
|
|
|
}
|
|
|
|
}
|
2021-06-07 17:09:30 +00:00
|
|
|
}
|
2022-01-29 21:06:16 +00:00
|
|
|
}
|
2021-12-07 19:40:43 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
return paths;
|
2021-06-07 17:09:30 +00:00
|
|
|
}
|
|
|
|
|
2022-04-11 19:37:58 +00:00
|
|
|
async function findDistancesForElement({
|
2022-01-29 21:06:16 +00:00
|
|
|
sourceElementId,
|
|
|
|
sourceElementPosition,
|
|
|
|
targetElementId,
|
|
|
|
targetElementPosition,
|
|
|
|
nodes,
|
|
|
|
links,
|
2021-12-07 22:45:55 +00:00
|
|
|
}) {
|
2022-01-29 21:06:16 +00:00
|
|
|
// This function gets all possible paths using findPaths
|
|
|
|
// then orders them correctly in the for loop
|
|
|
|
// (by flipping the distance to 1/distance when necessary)
|
|
|
|
// and then gets the array of weights for the different paths.
|
|
|
|
console.log(
|
|
|
|
`findDistance@findPaths.js from ${sourceElementPosition} to ${targetElementPosition}`
|
|
|
|
);
|
2021-12-08 11:35:18 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
let maxLengthOfPath = Math.abs(sourceElementPosition - targetElementPosition);
|
|
|
|
let paths = await findPaths({
|
|
|
|
sourceElementId,
|
|
|
|
sourceElementPosition,
|
|
|
|
targetElementId,
|
|
|
|
targetElementPosition,
|
|
|
|
links,
|
|
|
|
nodes,
|
|
|
|
maxLengthOfPath,
|
|
|
|
pathSoFar: [],
|
|
|
|
});
|
2021-12-07 19:40:43 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
let weights = [];
|
|
|
|
for (let path of paths) {
|
|
|
|
let currentSource = sourceElementId;
|
|
|
|
let weight = 1;
|
|
|
|
for (let element of path) {
|
|
|
|
let distance = 0;
|
|
|
|
if (element.source == currentSource) {
|
|
|
|
distance = element.distance;
|
|
|
|
currentSource = element.target;
|
|
|
|
} else if (element.target == currentSource) {
|
|
|
|
distance = 1 / Number(element.distance);
|
|
|
|
currentSource = element.source;
|
|
|
|
}
|
|
|
|
weight = weight * distance;
|
2021-06-07 17:09:30 +00:00
|
|
|
}
|
2022-01-29 21:06:16 +00:00
|
|
|
weights.push(weight);
|
|
|
|
}
|
|
|
|
return weights;
|
2021-06-07 17:09:30 +00:00
|
|
|
}
|
|
|
|
|
2021-12-07 23:44:55 +00:00
|
|
|
async function findDistancesForAllElements({ nodes, links }) {
|
2022-04-11 19:37:58 +00:00
|
|
|
// legacy. I used to need a somewhat hardcoded reference point. Now that's not necessary.
|
2022-01-29 21:06:16 +00:00
|
|
|
// Simple wrapper function around findDistance
|
|
|
|
// Needs to find the reference point first
|
|
|
|
console.log("findDistancesForAllElements@findPaths.js");
|
|
|
|
/* Get or build reference element */
|
|
|
|
let referenceElements = nodes.filter((x) => x.isReferenceValue);
|
|
|
|
let midpoint = Math.round(nodes.length / 2);
|
|
|
|
let referenceElement =
|
|
|
|
referenceElements.length > 0 ? referenceElements[0] : nodes[midpoint];
|
|
|
|
console.log(`referenceElement.position: ${referenceElement.position}`);
|
2021-12-08 11:35:18 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
/* Get distances. */
|
2022-04-11 19:37:58 +00:00
|
|
|
let distancesArray = nodes.map((node) => {
|
2022-01-29 21:06:16 +00:00
|
|
|
if (node.isReferenceValue || node.id == referenceElement.id) {
|
|
|
|
return [1];
|
|
|
|
} else {
|
|
|
|
console.log("node");
|
|
|
|
console.log(node);
|
2022-04-11 19:37:58 +00:00
|
|
|
let distancesForElement = findDistancesForElement({
|
2022-01-29 21:06:16 +00:00
|
|
|
sourceElementId: referenceElement.id,
|
|
|
|
sourceElementPosition: referenceElement.position,
|
|
|
|
targetElementId: node.id,
|
|
|
|
targetElementPosition: node.position,
|
|
|
|
nodes: nodes,
|
|
|
|
links: links,
|
|
|
|
});
|
2022-04-11 19:37:58 +00:00
|
|
|
return distancesForElement;
|
2022-01-29 21:06:16 +00:00
|
|
|
}
|
|
|
|
});
|
2022-04-11 19:37:58 +00:00
|
|
|
distancesArray = await Promise.all(distancesArray);
|
|
|
|
return distancesArray;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function findDistancesFromAllElementsToReferencePoint({
|
|
|
|
nodes,
|
|
|
|
links,
|
|
|
|
referenceElement,
|
|
|
|
}) {
|
|
|
|
// Simple wrapper function around findDistance
|
|
|
|
// Needs to find the reference point first
|
|
|
|
console.log("findDistancesForAllElements@findPaths.js");
|
|
|
|
/* Get or build reference element */
|
|
|
|
let midpoint = Math.round(nodes.length / 2);
|
|
|
|
referenceElement = referenceElement || nodes[midpoint];
|
|
|
|
console.log(`referenceElement.position: ${referenceElement.position}`);
|
|
|
|
|
|
|
|
/* Get distances. */
|
|
|
|
let distancesArray = nodes.map((node) => {
|
|
|
|
if (node.id == referenceElement.id) {
|
|
|
|
return [1];
|
|
|
|
} else {
|
|
|
|
console.log("node");
|
|
|
|
console.log(node);
|
|
|
|
let distancesForElement = findDistancesForElement({
|
|
|
|
sourceElementId: referenceElement.id,
|
|
|
|
sourceElementPosition: referenceElement.position,
|
|
|
|
targetElementId: node.id,
|
|
|
|
targetElementPosition: node.position,
|
|
|
|
nodes: nodes,
|
|
|
|
links: links,
|
|
|
|
});
|
|
|
|
return distancesForElement;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
distancesArray = await Promise.all(distancesArray);
|
|
|
|
return distancesArray;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function findDistancesFromAllElementsToAllReferencePoints({
|
|
|
|
nodes,
|
|
|
|
links,
|
|
|
|
}) {
|
|
|
|
let nodes2 = nodes.map((node) => ({ ...node, isReferenceValue: false }));
|
|
|
|
let distancesForAllElements = Array(nodes.length);
|
|
|
|
for (let i = 0; i < nodes.length; i++) {
|
|
|
|
distancesForAllElements[i] = [];
|
|
|
|
}
|
|
|
|
for (let node of nodes2) {
|
|
|
|
let distancesFromNode = await findDistancesFromAllElementsToReferencePoint({
|
|
|
|
nodes,
|
|
|
|
links,
|
|
|
|
referenceElement: node,
|
|
|
|
});
|
|
|
|
// alert(`distancesFromNode.length: ${distancesFromNode.length}`);
|
|
|
|
distancesForAllElements = distancesForAllElements.map((arr, i) => {
|
|
|
|
return !!arr && arr.length > 0
|
|
|
|
? [...arr, ...distancesFromNode[i]]
|
|
|
|
: distancesFromNode[i];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return distancesForAllElements;
|
2021-06-07 17:09:30 +00:00
|
|
|
}
|
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
export async function buildRows({
|
|
|
|
isListOrdered,
|
|
|
|
orderedList,
|
|
|
|
listOfElements,
|
|
|
|
links,
|
|
|
|
rows,
|
|
|
|
setTableRows,
|
|
|
|
}) {
|
|
|
|
console.log("buildRows@findPaths.js");
|
|
|
|
// This function is used in pages/comparisonView.js to create the rows that will be displayed.
|
|
|
|
// it is in there because it needs to be deployed after isListOrdered becomes true,
|
|
|
|
// and using an useEffect inside CreateTable was too messy.
|
|
|
|
if (
|
|
|
|
isListOrdered &&
|
|
|
|
!(orderedList.length < listOfElements.length) &&
|
|
|
|
rows.length == 0
|
|
|
|
) {
|
|
|
|
let nodes = [];
|
|
|
|
let positionDictionary = {};
|
|
|
|
orderedList.forEach((id, pos) => {
|
|
|
|
nodes.push({ ...listOfElements[id], position: pos });
|
|
|
|
positionDictionary[id] = pos;
|
|
|
|
});
|
|
|
|
links = links.map((link) => ({
|
|
|
|
...link,
|
|
|
|
sourceElementPosition: positionDictionary[link.source],
|
|
|
|
targetElementPosition: positionDictionary[link.target],
|
|
|
|
}));
|
2021-12-08 10:20:03 +00:00
|
|
|
|
2022-04-11 19:37:58 +00:00
|
|
|
let distances = await findDistancesFromAllElementsToAllReferencePoints({
|
|
|
|
nodes,
|
|
|
|
links,
|
|
|
|
}); //findDistancesForAllElements({ nodes, links });
|
2022-01-29 21:06:16 +00:00
|
|
|
rows = nodes.map((element, i) => ({
|
|
|
|
id: numToAlphabeticalString(element.position),
|
|
|
|
position: element.position,
|
|
|
|
name: element.name,
|
|
|
|
distances: distances[i],
|
|
|
|
}));
|
|
|
|
console.log(rows);
|
|
|
|
setTableRows(rows);
|
|
|
|
}
|
2021-12-08 10:20:03 +00:00
|
|
|
}
|
2021-12-08 10:56:20 +00:00
|
|
|
|
2021-12-08 11:35:18 +00:00
|
|
|
export function CreateTable({ tableRows }) {
|
2022-01-29 21:06:16 +00:00
|
|
|
/* This function receives a list of rows, and displays them nicely. */
|
|
|
|
function abridgeArrayAndDisplay(array) {
|
|
|
|
let newArray;
|
|
|
|
let formatForDisplay;
|
|
|
|
if (array.length > 10) {
|
|
|
|
newArray = array.slice(0, 9);
|
|
|
|
formatForDisplay = newArray.map((d) => formatLargeOrSmall(d));
|
|
|
|
formatForDisplay[9] = "...";
|
|
|
|
} else {
|
|
|
|
newArray = array;
|
|
|
|
formatForDisplay = newArray.map((d) => formatLargeOrSmall(d));
|
2021-12-08 11:35:18 +00:00
|
|
|
}
|
2022-01-29 21:06:16 +00:00
|
|
|
let result = JSON.stringify(formatForDisplay, null, 2).replaceAll(`"`, "");
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return (
|
2022-01-31 22:30:26 +00:00
|
|
|
<div className="w-full">
|
2022-01-29 21:06:16 +00:00
|
|
|
<table className="w-full">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Id</th>
|
|
|
|
<th> </th>
|
|
|
|
<th>Position</th>
|
|
|
|
<th> </th>
|
|
|
|
<th>Element</th>
|
|
|
|
<th> </th>
|
|
|
|
<th>Possible relative values</th>
|
|
|
|
<th> </th>
|
2022-01-29 23:03:22 +00:00
|
|
|
<th>geomMean(relative values)</th>
|
2022-04-11 18:39:29 +00:00
|
|
|
<th>Coefficient of variation</th>
|
2022-01-29 21:06:16 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{tableRows.map((row) => (
|
|
|
|
<tr key={row.id}>
|
|
|
|
<td className="">{row.id}</td>
|
|
|
|
<td> </td>
|
|
|
|
<td className="">{row.position}</td>
|
|
|
|
<td> </td>
|
|
|
|
<td className="">{row.name}</td>
|
|
|
|
<td> </td>
|
|
|
|
<td className="">{abridgeArrayAndDisplay(row.distances)}</td>
|
|
|
|
<td> </td>
|
|
|
|
<td className="">
|
2022-04-11 18:08:35 +00:00
|
|
|
{formatLargeOrSmall(hackyGeomMean(row.distances))}
|
2022-01-29 21:06:16 +00:00
|
|
|
</td>
|
2022-04-11 18:39:29 +00:00
|
|
|
<td className="">
|
|
|
|
{formatLargeOrSmall(getCoefficientOfVariation(row.distances))}
|
|
|
|
</td>
|
2022-01-29 21:06:16 +00:00
|
|
|
</tr>
|
|
|
|
))}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
);
|
2021-12-07 19:40:43 +00:00
|
|
|
}
|
2021-12-07 17:40:17 +00:00
|
|
|
|
2021-06-07 17:09:30 +00:00
|
|
|
/* Testing */
|
|
|
|
//import fs from 'fs';
|
|
|
|
//import path from 'path';
|
|
|
|
/*
|
|
|
|
const directory = path.join(process.cwd(),"pages")
|
|
|
|
let links = JSON.parse(fs.readFileSync(path.join(directory, 'distancesExample.json'), 'utf8'));
|
2021-06-10 21:52:33 +00:00
|
|
|
let nodes = JSON.parse(fs.readFileSync(path.join(directory, 'listOfPosts.json'), 'utf8'));
|
2021-06-07 17:09:30 +00:00
|
|
|
|
2021-12-08 11:35:18 +00:00
|
|
|
let paths = findPaths({sourceElementId:2, targetElementId:0, pathSoFar: [], links, nodes, maxLengthOfPath: 2})
|
2021-06-07 17:09:30 +00:00
|
|
|
console.log(JSON.stringify(paths, null, 2))
|
|
|
|
*/
|
2021-12-07 19:40:43 +00:00
|
|
|
/*
|
2021-06-10 21:52:33 +00:00
|
|
|
let paths = findPaths({sourceElementId:2, targetElementId:0, links, nodes})
|
2021-06-07 17:09:30 +00:00
|
|
|
console.log(JSON.stringify(paths, null, 2))
|
|
|
|
*/
|
|
|
|
/*
|
2021-06-10 21:52:33 +00:00
|
|
|
let distances = findDistance({sourceElementId:2, targetElementId:4, links, nodes})
|
2021-06-07 17:09:30 +00:00
|
|
|
console.log(distances)
|
2022-01-29 21:06:16 +00:00
|
|
|
*/
|