Automatically organize imports

This commit is contained in:
2024-02-03 20:30:00 -07:00
parent 2276605e6d
commit bfd96d9ccc
25 changed files with 71 additions and 67 deletions

View File

@@ -1,16 +1,16 @@
import React from "react";
import * as scale from "d3-scale";
import React from "react";
import { View } from "react-native";
import { BarChart, XAxis, YAxis } from "react-native-svg-charts";
import { useGraphData } from "../use-graph-data";
import { GraphData, YAxisProps } from "../graph-types";
import { useGraphData } from "../use-graph-data";
import { CustomBars } from "../custom-bars";
import { CustomGrid } from "../custom-grid";
import ChartLabel from "../chart-label/chart-label";
import { graphStyles } from "../chart-styles";
import ChartView from "../chart-view";
import ChartLabel from "../chart-label/chart-label";
import { CustomBars } from "../custom-bars";
import { CustomGrid } from "../custom-grid";
interface Props {
data: GraphData;

View File

@@ -1,6 +1,6 @@
import { path as d3 } from "d3-path";
import { ScaleLinearType, ScaleBandType } from "./graph-types";
import { ScaleBandType, ScaleLinearType } from "./graph-types";
type BarCalculationProps = {
scaleX: ScaleBandType;

View File

@@ -1,8 +1,8 @@
import { Svg } from "react-native-svg";
import { Bar } from "./bar";
import { ScaleBandType, ScaleLinearType } from "./graph-types";
import { calculateBarWidth } from "./custom-bar-utils";
import { ScaleBandType, ScaleLinearType } from "./graph-types";
export interface CombinedData {
data: { value: number }[];

View File

@@ -1,13 +1,13 @@
import React from "react";
import * as shape from "d3-shape";
import React from "react";
import { View } from "react-native";
import { LineChart, XAxis, YAxis } from "react-native-svg-charts";
import { useGraphData } from "../use-graph-data";
import { CustomGrid } from "../custom-grid";
import { graphStyles } from "../chart-styles";
import ChartView from "../chart-view";
import { CustomGrid } from "../custom-grid";
import { CommonProps } from "../graph-types";
import { useGraphData } from "../use-graph-data";
// TODO: separate PR will update useGraphData to take into account useCommonScale
// eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars

View File

@@ -1,8 +1,8 @@
import { useMemo } from "react";
import { convertToGraphData } from "./graph-utils";
import { chartDefaults } from "./graph-config";
import { GraphData, GraphProps, XValue, YAxisData } from "./graph-types";
import { convertToGraphData } from "./graph-utils";
interface useGraphDataInterface {
xValues: Array<XValue>;