123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- import { EVENT_MAGIC, trackEvent } from "./analytics";
- import colors from "./colors";
- import { DEFAULT_FONT_FAMILY, DEFAULT_FONT_SIZE } from "./constants";
- import { newElement, newTextElement, newLinearElement } from "./element";
- import { ExcalidrawElement } from "./element/types";
- import { randomId } from "./random";
- const BAR_WIDTH = 32;
- const BAR_GAP = 12;
- const BAR_HEIGHT = 256;
- export interface Spreadsheet {
- title: string | null;
- labels: string[] | null;
- values: number[];
- }
- export const NOT_SPREADSHEET = "NOT_SPREADSHEET";
- export const VALID_SPREADSHEET = "VALID_SPREADSHEET";
- type ParseSpreadsheetResult =
- | { type: typeof NOT_SPREADSHEET; reason: string }
- | { type: typeof VALID_SPREADSHEET; spreadsheet: Spreadsheet };
- const tryParseNumber = (s: string): number | null => {
- const match = /^[$€£¥₩]?([0-9,]+(\.[0-9]+)?)$/.exec(s);
- if (!match) {
- return null;
- }
- return parseFloat(match[1].replace(/,/g, ""));
- };
- const isNumericColumn = (lines: string[][], columnIndex: number) =>
- lines.slice(1).every((line) => tryParseNumber(line[columnIndex]) !== null);
- const tryParseCells = (cells: string[][]): ParseSpreadsheetResult => {
- const numCols = cells[0].length;
- if (numCols > 2) {
- return { type: NOT_SPREADSHEET, reason: "More than 2 columns" };
- }
- if (numCols === 1) {
- if (!isNumericColumn(cells, 0)) {
- return { type: NOT_SPREADSHEET, reason: "Value is not numeric" };
- }
- const hasHeader = tryParseNumber(cells[0][0]) === null;
- const values = (hasHeader ? cells.slice(1) : cells).map((line) =>
- tryParseNumber(line[0]),
- );
- if (values.length < 2) {
- return { type: NOT_SPREADSHEET, reason: "Less than two rows" };
- }
- return {
- type: VALID_SPREADSHEET,
- spreadsheet: {
- title: hasHeader ? cells[0][0] : null,
- labels: null,
- values: values as number[],
- },
- };
- }
- const valueColumnIndex = isNumericColumn(cells, 0) ? 0 : 1;
- if (!isNumericColumn(cells, valueColumnIndex)) {
- return { type: NOT_SPREADSHEET, reason: "Value is not numeric" };
- }
- const labelColumnIndex = (valueColumnIndex + 1) % 2;
- const hasHeader = tryParseNumber(cells[0][valueColumnIndex]) === null;
- const rows = hasHeader ? cells.slice(1) : cells;
- if (rows.length < 2) {
- return { type: NOT_SPREADSHEET, reason: "Less than 2 rows" };
- }
- return {
- type: VALID_SPREADSHEET,
- spreadsheet: {
- title: hasHeader ? cells[0][valueColumnIndex] : null,
- labels: rows.map((row) => row[labelColumnIndex]),
- values: rows.map((row) => tryParseNumber(row[valueColumnIndex])!),
- },
- };
- };
- const transposeCells = (cells: string[][]) => {
- const nextCells: string[][] = [];
- for (let col = 0; col < cells[0].length; col++) {
- const nextCellRow: string[] = [];
- for (let row = 0; row < cells.length; row++) {
- nextCellRow.push(cells[row][col]);
- }
- nextCells.push(nextCellRow);
- }
- return nextCells;
- };
- export const tryParseSpreadsheet = (text: string): ParseSpreadsheetResult => {
- // Copy/paste from excel, spreadhseets, tsv, csv.
- // For now we only accept 2 columns with an optional header
- // Check for tab separated values
- let lines = text
- .trim()
- .split("\n")
- .map((line) => line.trim().split("\t"));
- // Check for comma separated files
- if (lines.length && lines[0].length !== 2) {
- lines = text
- .trim()
- .split("\n")
- .map((line) => line.trim().split(","));
- }
- if (lines.length === 0) {
- return { type: NOT_SPREADSHEET, reason: "No values" };
- }
- const numColsFirstLine = lines[0].length;
- const isSpreadsheet = lines.every((line) => line.length === numColsFirstLine);
- if (!isSpreadsheet) {
- return {
- type: NOT_SPREADSHEET,
- reason: "All rows don't have same number of columns",
- };
- }
- const result = tryParseCells(lines);
- if (result.type !== VALID_SPREADSHEET) {
- const transposedResults = tryParseCells(transposeCells(lines));
- if (transposedResults.type === VALID_SPREADSHEET) {
- return transposedResults;
- }
- }
- return result;
- };
- // For the maths behind it https://excalidraw.com/#json=6320864370884608,O_5xfD-Agh32tytHpRJx1g
- export const renderSpreadsheet = (
- spreadsheet: Spreadsheet,
- x: number,
- y: number,
- ): ExcalidrawElement[] => {
- const values = spreadsheet.values;
- const max = Math.max(...values);
- const chartHeight = BAR_HEIGHT + BAR_GAP * 2;
- const chartWidth = (BAR_WIDTH + BAR_GAP) * values.length + BAR_GAP;
- const maxColors = colors.elementBackground.length;
- const bgColors = colors.elementBackground.slice(2, maxColors);
- // Put all the common properties here so when the whole chart is selected
- // the properties dialog shows the correct selected values
- const commonProps = {
- backgroundColor: bgColors[Math.floor(Math.random() * bgColors.length)],
- fillStyle: "hachure",
- fontFamily: DEFAULT_FONT_FAMILY,
- fontSize: DEFAULT_FONT_SIZE,
- groupIds: [randomId()],
- opacity: 100,
- roughness: 1,
- strokeColor: colors.elementStroke[0],
- strokeSharpness: "sharp",
- strokeStyle: "solid",
- strokeWidth: 1,
- verticalAlign: "middle",
- } as const;
- const minYLabel = newTextElement({
- ...commonProps,
- x: x - BAR_GAP,
- y: y - BAR_GAP,
- text: "0",
- textAlign: "right",
- });
- const maxYLabel = newTextElement({
- ...commonProps,
- x: x - BAR_GAP,
- y: y - BAR_HEIGHT - minYLabel.height / 2,
- text: max.toLocaleString(),
- textAlign: "right",
- });
- const xAxisLine = newLinearElement({
- type: "line",
- x,
- y,
- startArrowhead: null,
- endArrowhead: null,
- width: chartWidth,
- points: [
- [0, 0],
- [chartWidth, 0],
- ],
- ...commonProps,
- });
- const yAxisLine = newLinearElement({
- type: "line",
- x,
- y,
- startArrowhead: null,
- endArrowhead: null,
- height: chartHeight,
- points: [
- [0, 0],
- [0, -chartHeight],
- ],
- ...commonProps,
- });
- const maxValueLine = newLinearElement({
- type: "line",
- x,
- y: y - BAR_HEIGHT - BAR_GAP,
- startArrowhead: null,
- endArrowhead: null,
- ...commonProps,
- strokeStyle: "dotted",
- width: chartWidth,
- points: [
- [0, 0],
- [chartWidth, 0],
- ],
- });
- const bars = values.map((value, index) => {
- const barHeight = (value / max) * BAR_HEIGHT;
- return newElement({
- ...commonProps,
- type: "rectangle",
- x: x + index * (BAR_WIDTH + BAR_GAP) + BAR_GAP,
- y: y - barHeight - BAR_GAP,
- width: BAR_WIDTH,
- height: barHeight,
- });
- });
- const xLabels =
- spreadsheet.labels?.map((label, index) => {
- return newTextElement({
- ...commonProps,
- text: label.length > 8 ? `${label.slice(0, 5)}...` : label,
- x: x + index * (BAR_WIDTH + BAR_GAP) + BAR_GAP * 2,
- y: y + BAR_GAP / 2,
- width: BAR_WIDTH,
- angle: 5.87,
- fontSize: 16,
- textAlign: "center",
- verticalAlign: "top",
- });
- }) || [];
- const title = spreadsheet.title
- ? newTextElement({
- ...commonProps,
- text: spreadsheet.title,
- x: x + chartWidth / 2,
- y: y - BAR_HEIGHT - BAR_GAP * 2 - maxYLabel.height,
- strokeSharpness: "sharp",
- strokeStyle: "solid",
- textAlign: "center",
- })
- : null;
- trackEvent(EVENT_MAGIC, "chart", "bars", bars.length);
- return [
- title,
- ...bars,
- ...xLabels,
- xAxisLine,
- yAxisLine,
- maxValueLine,
- minYLabel,
- maxYLabel,
- ].filter((element) => element !== null) as ExcalidrawElement[];
- };
|