import { calcHSLFromScore } from "../utils/color"; import { DataPoint } from "../utils/dataPoint"; import React from "react"; import styles from "../App.module.css"; import Tooltip from "./Tooltip"; import { Bar } from "react-chartjs-2"; import { FeatureOutput } from "../models/visualizationOutput"; interface FeatureProps { data: T; hideHeaders?: boolean; } type ImageFeatureProps = FeatureProps<{ base: string; modified: string; name: string; }>; function ImageFeature(props: ImageFeatureProps) { return ( <> {props.hideHeaders && (
{props.data.name} (Image)
)}
original
Original
attribution
Attribution Magnitude
); } type TextFeatureProps = FeatureProps<{ base: number[]; name: string; modified: number[]; }>; function TextFeature(props: TextFeatureProps) { const color_words = props.data.base.map((w, i) => { return ( <> {w} {" "} ); }); return ( <> {props.hideHeaders && (
{props.data.name} (Text)
)}
{color_words}
); } type GeneralFeatureProps = FeatureProps<{ base: number[]; modified: number[]; name: string; }>; function GeneralFeature(props: GeneralFeatureProps) { const data = { labels: props.data.base, datasets: [ { barPercentage: 0.5, data: props.data.modified, backgroundColor: (dataPoint: DataPoint) => { if (!dataPoint.dataset || !dataPoint.dataset.data || dataPoint.datasetIndex === undefined) { return "#d45c43"; // Default to red } const yValue = dataPoint.dataset.data[dataPoint.dataIndex as number] || 0; return yValue < 0 ? "#d45c43" : "#80aaff"; // Red if negative, else blue }, }, ], }; return ( ); } function Feature(props: { data: FeatureOutput; hideHeaders: boolean }) { const data = props.data; switch (data.type) { case "image": return ; case "text": return ; case "general": return ; case "empty": return <>; default: throw new Error("Unsupported feature visualization type: " + data.type); } } export default Feature;