chore: committing before debugging

This commit is contained in:
NunoSempere 2022-04-20 00:13:50 -04:00
parent a4d4c42386
commit d21e7c0edb
2 changed files with 67 additions and 41 deletions

View File

@ -53,17 +53,17 @@ async function fakeGetHistoryQuestionById(id) {
let l = 30; let l = 30;
let history = Array.from(Array(l).keys()).map((x) => ({ let history = Array.from(Array(l).keys()).map((x) => ({
timestamp: `2022-04-${`0${x}`.slice(-2)}T13:09:13.000Z`, timestamp: `2022-04-${`0${x + 1}`.slice(-2)}T13:09:13.000Z`,
options: [ options: [
{ {
name: "Yes", name: "X",
type: "PROBABILITY", type: "PROBABILITY",
probability: 0.0351 + Math.abs(Math.sin(3 * x)), probability: 0.0351 + Math.abs(Math.sin(3 * x)) / 2,
}, },
{ {
name: "No", name: "Y",
type: "PROBABILITY", type: "PROBABILITY",
probability: 0.9649 - Math.abs(Math.sin(3 * x)), probability: 0.9649 - Math.abs(Math.sin(3 * x)) / 2,
}, },
], ],
})); }));

View File

@ -18,28 +18,13 @@ import {
import ReactMarkdown from "react-markdown"; import ReactMarkdown from "react-markdown";
import { cleanText } from "../utils"; import { cleanText } from "../utils";
import gfm from "remark-gfm"; import gfm from "remark-gfm";
import { xrisk } from "../../backend/platforms/xrisk";
interface Props { interface Props {
question: FrontendForecast; question: FrontendForecast;
history: number[]; history: any[];
} }
let l = 50;
const data = Array.from(Array(l).keys()).map((x) => ({
date: x,
probability: Math.abs(Math.sin((5 * x) / l)),
}));
const data2 = Array.from(Array(l).keys()).map((x) => ({
date: x,
probability: 1 - Math.abs(Math.sin((5 * x) / l)),
}));
const data3 = Array.from(Array(l).keys()).map((x) => ({
date: x,
probability: 1 - Math.abs(Math.sin((5 * x + 20) / l)),
}));
const buildDataset = (n, fn) => { const buildDataset = (n, fn) => {
return Array.from(Array(n).keys()).map((x) => ({ return Array.from(Array(n).keys()).map((x) => ({
date: x, date: x,
@ -47,33 +32,48 @@ const buildDataset = (n, fn) => {
})); }));
}; };
let getDate = (x) => { let getDate0 = (x) => {
// for fake data
let date = new Date(x); let date = new Date(x);
return date.toISOString().slice(5, 10).replaceAll("-", "/"); return date.toISOString().slice(5, 10).replaceAll("-", "/");
}; };
let timestampToString = (x) => {
// for real timestamps
console.log(x);
let date = new Date(Date.parse(x));
let dayOfMonth = date.getDate();
let month = date.getMonth() + 1;
let year = date.getFullYear();
let dateString = `${("0" + dayOfMonth).slice(-2)}/${("0" + month).slice(
-2
)}/${year.toString().slice(-2)}`;
console.log(dateString);
return dateString;
};
let dataAsXy = (data) => let dataAsXy = (data) =>
data.map((datum) => ({ data.map((datum) => ({
x: getDate(datum.date * (1000 * 60 * 60 * 24)), x: timestampToString(datum.date), //getDate(datum.date * (1000 * 60 * 60 * 24)),
y: datum.probability, y: datum.probability,
})); }));
let colors = ["dodgerblue", "crimson", "seagreen", "darkviolet", "turquoise"]; const colors = ["dodgerblue", "crimson", "seagreen", "darkviolet", "turquoise"];
const getVictoryGroup = (data, i) => { const getVictoryGroup = (data, i) => {
return ( return (
<VictoryGroup color={colors[i] || "darkgray"} data={dataAsXy(data)}> <VictoryGroup color={colors[i] || "darkgray"} data={dataAsXy(data)}>
<VictoryLine <VictoryLine
name={`line${i}`} name={`line${i}`}
style={{ labels: { display: "none" } }} //style={{ labels: { display: "none" } }}
labels={() => null} //labels={() => null}
labelComponent={<span></span>} //labelComponent={<span></span>}
/> />
{ {
<VictoryScatter <VictoryScatter
style={{ labels: { display: "none" } }} //style={{ labels: { display: "none" } }}
size={({ active }) => (active ? 3.75 : 3)} size={({ active }) => (active ? 3.75 : 3)}
labels={() => null} //labels={() => null}
labelComponent={<span></span>} //labelComponent={<span></span>}
/> />
// No idea how to disable labels // No idea how to disable labels
} }
@ -84,14 +84,34 @@ const getVictoryGroup = (data, i) => {
export const HistoryChart: React.FC<Props> = ({ question, history }) => { export const HistoryChart: React.FC<Props> = ({ question, history }) => {
let height = 400; let height = 400;
let width = 500; let width = 500;
let dataSetsNames = ["Yes", "No", "Maybe", "Perhaps", "Possibly"]; let padding = { top: 20, bottom: 50, left: 50, right: 100 };
let dataSets = [ // let dataSetsNames = ["Yes", "No", "Maybe", "Perhaps", "Possibly"];
buildDataset(50, (x) => 0.5), let dataSetsNames = [];
buildDataset(50, (x) => Math.abs(Math.sin((5 * x) / 50) / 2)), history.forEach((item) => {
buildDataset(50, (x) => 1 - Math.abs(Math.sin((5 * x) / 50) / 2)), let optionNames = item.options.map((option) => option.name);
buildDataset(50, (x) => Math.abs(Math.sin((3 * x + 25) / 50))), dataSetsNames.push(...optionNames);
buildDataset(50, (x) => 1 - Math.abs(Math.sin((3 * x + 25) / 50))), });
]; dataSetsNames = [...new Set(dataSetsNames)].slice(0, 5); // take the first 5
let dataSets = [];
dataSetsNames.forEach((name) => {
let newDataset = [];
let historyItems = history.forEach((item) => {
let relevantItemsArray = item.options.filter((x) => x.name == name);
let date = item.timestamp;
if (relevantItemsArray.length == 1) {
let relevantItem = relevantItemsArray[0];
if (relevantItem.type == "PROBABILITY") {
let result = {
date: date,
probability: relevantItem.probability,
};
newDataset.push(result);
}
}
});
dataSets.push(newDataset);
});
let dataSetsLength = dataSets.length; let dataSetsLength = dataSets.length;
return ( return (
@ -107,7 +127,7 @@ export const HistoryChart: React.FC<Props> = ({ question, history }) => {
</a> </a>
<VictoryChart <VictoryChart
domainPadding={20} domainPadding={20}
padding={{ top: 20, bottom: 50, left: 50, right: 100 }} padding={padding}
theme={VictoryTheme.material} theme={VictoryTheme.material}
height={height} height={height}
width={width} width={width}
@ -133,7 +153,9 @@ export const HistoryChart: React.FC<Props> = ({ question, history }) => {
/> />
} }
voronoiBlacklist={ voronoiBlacklist={
Array.from(Array(5).keys()).map((x, i) => `line${i}`) ["line0", "line1", "line2", "line3", "line4"]
//Array.from(Array(5).keys()).map((x, i) => `line${i}`)
// see: https://github.com/FormidableLabs/victory/issues/545 // see: https://github.com/FormidableLabs/victory/issues/545
} }
/> />
@ -171,6 +193,10 @@ export const HistoryChart: React.FC<Props> = ({ question, history }) => {
style={{ style={{
grid: { stroke: null, strokeWidth: 0.5 }, grid: { stroke: null, strokeWidth: 0.5 },
}} }}
//axisLabelComponent={
// <VictoryLabel dy={40} style={{ fontSize: 10, fill: "gray" }} />
//}
// label="Date (dd/mm/yy)"
tickLabelComponent={ tickLabelComponent={
<VictoryLabel <VictoryLabel
dy={0} dy={0}