@geo2france/api-dashboard 1.19.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Charts/ChartComparison.d.ts +2 -2
- package/dist/components/Charts/Datatable.d.ts +14 -0
- package/dist/components/Charts/Datatable.js +22 -0
- package/dist/components/Charts/Pie.d.ts +2 -2
- package/dist/components/Charts/Statistics.d.ts +2 -2
- package/dist/components/Charts/YearSerie.d.ts +2 -2
- package/dist/components/Control/Select.d.ts +14 -2
- package/dist/components/Control/Select.js +3 -0
- package/dist/components/Dataset/Dataset.d.ts +15 -3
- package/dist/components/Dataset/Dataset.js +8 -6
- package/dist/components/Dataset/Filter.d.ts +0 -1
- package/dist/components/Dataset/hooks.d.ts +2 -2
- package/dist/dsl/index.d.ts +2 -1
- package/dist/dsl/index.js +2 -1
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { EChartsOption } from "echarts";
|
|
2
|
-
import {
|
|
2
|
+
import { datasetInput } from "../Dataset/hooks";
|
|
3
3
|
type labelType = "percent" | "value" | "category" | "none";
|
|
4
4
|
export interface ChartComparisonProps {
|
|
5
5
|
/** Identifiant du dataset */
|
|
6
|
-
dataset?:
|
|
6
|
+
dataset?: datasetInput;
|
|
7
7
|
/** Nom de la colonne qui contient les valeurs numériques */
|
|
8
8
|
valueKey: string;
|
|
9
9
|
/** Nom de la colonne qui contient les catégories */
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { datasetInput } from "../Dataset/hooks";
|
|
2
|
+
export interface DataTableProps {
|
|
3
|
+
/** Jeu de données */
|
|
4
|
+
dataset: datasetInput;
|
|
5
|
+
/** Titre du composant */
|
|
6
|
+
title?: string;
|
|
7
|
+
/** Nombre d'éléments par page */
|
|
8
|
+
pageSize?: number;
|
|
9
|
+
/** Style CSS du tableau */
|
|
10
|
+
style?: React.CSSProperties;
|
|
11
|
+
}
|
|
12
|
+
/** Afficher un dataset sous forme de tableau
|
|
13
|
+
*/
|
|
14
|
+
export declare const DataTable: React.FC<DataTableProps>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Table } from "antd";
|
|
3
|
+
import { useDataset } from "../Dataset/hooks";
|
|
4
|
+
import { useBlockConfig } from "../DashboardPage/Block";
|
|
5
|
+
/** Afficher un dataset sous forme de tableau
|
|
6
|
+
*/
|
|
7
|
+
export const DataTable = ({ dataset: dataset_id, title, pageSize = 5, style }) => {
|
|
8
|
+
const dataset = useDataset(dataset_id); //Récupérer le jeu de données
|
|
9
|
+
const data = dataset?.data;
|
|
10
|
+
useBlockConfig({
|
|
11
|
+
title: title,
|
|
12
|
+
dataExport: data
|
|
13
|
+
});
|
|
14
|
+
const cols = Object.keys(data?.[0] || {})?.map((k) => ({
|
|
15
|
+
dataIndex: k,
|
|
16
|
+
title: k,
|
|
17
|
+
ellipsis: true,
|
|
18
|
+
key: k,
|
|
19
|
+
render: (v) => typeof v === 'number' ? isNaN(v) ? '' : v.toLocaleString() : v,
|
|
20
|
+
}));
|
|
21
|
+
return _jsx(Table, { columns: cols, style: style, className: "data-table", dataSource: Array.isArray(data) ? data?.map((r, idx) => ({ ...r, key: idx })) : [], pagination: { pageSize: pageSize } });
|
|
22
|
+
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { datasetInput } from "../Dataset/hooks";
|
|
2
2
|
import { EChartsOption, LabelFormatterCallback } from "echarts";
|
|
3
3
|
import type { CallbackDataParams } from 'echarts/types/dist/shared';
|
|
4
4
|
export interface IChartPieProps {
|
|
5
5
|
/** Identifiant du dataset */
|
|
6
|
-
dataset?:
|
|
6
|
+
dataset?: datasetInput;
|
|
7
7
|
/** Nom de la colonne qui contient les valeurs numériques */
|
|
8
8
|
dataKey: string;
|
|
9
9
|
/** Nom de la colonne qui contient les catégories */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReactElement } from "react";
|
|
2
|
-
import {
|
|
2
|
+
import { datasetInput } from "../Dataset/hooks";
|
|
3
3
|
import { SimpleRecord } from "../../types";
|
|
4
4
|
type comparwithType = "first" | "previous";
|
|
5
5
|
type aggregateType = "last" | "first" | "sum" | "lastNotNull" | "min" | "max" | "count" | "mean" | "countDistinct" | "countMissing";
|
|
@@ -15,7 +15,7 @@ interface ICallbackParams {
|
|
|
15
15
|
}
|
|
16
16
|
export interface StatisticsProps {
|
|
17
17
|
/** Identifiant du jeu de données ou tableau de valeurs */
|
|
18
|
-
dataset:
|
|
18
|
+
dataset: datasetInput;
|
|
19
19
|
/** Nom de la colonne qui contient les valeurs */
|
|
20
20
|
dataKey: string;
|
|
21
21
|
/** Texte à afficher après l'évolution */
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Graphique standard pour afficher des données annuelles
|
|
3
3
|
*/
|
|
4
|
-
import {
|
|
4
|
+
import { datasetInput } from "../Dataset/hooks";
|
|
5
5
|
import { EChartsOption, SeriesOption } from "echarts";
|
|
6
6
|
export interface IYearSerieProps {
|
|
7
|
-
dataset:
|
|
7
|
+
dataset: datasetInput;
|
|
8
8
|
title?: string;
|
|
9
9
|
yearKey: string;
|
|
10
10
|
valueKey: string;
|
|
@@ -1,17 +1,29 @@
|
|
|
1
1
|
import type { SelectProps } from 'antd';
|
|
2
2
|
type ExtendedSelectProps = Omit<SelectProps<any>, 'options'> & {
|
|
3
|
+
/** Nom technique du controle */
|
|
4
|
+
name?: string;
|
|
5
|
+
/** Nom à afficher */
|
|
6
|
+
label?: string;
|
|
7
|
+
/** Jeu de données contenant les choix (à la place de options) */
|
|
3
8
|
dataset?: string;
|
|
9
|
+
/** Choix possible */
|
|
4
10
|
options?: {
|
|
5
11
|
label: string;
|
|
6
12
|
value: string;
|
|
7
13
|
}[] | string[];
|
|
14
|
+
/** Valeur intiale sélectionnée */
|
|
8
15
|
initial_value?: string;
|
|
16
|
+
/** Colonne à utiliser pour le libellé (si dataset utilisé) */
|
|
9
17
|
labelField?: string;
|
|
18
|
+
/** Colonne à utiliser pour la valeur (si dataset utilisé) */
|
|
10
19
|
valueField?: string;
|
|
11
|
-
|
|
12
|
-
label?: string;
|
|
20
|
+
/** Affichage des flèches Suivant/Précédent */
|
|
13
21
|
arrows?: boolean;
|
|
22
|
+
/** Inverser le sens des flêches */
|
|
14
23
|
reverse?: boolean;
|
|
15
24
|
};
|
|
25
|
+
/** Composant de controle permettant de choisir une valeur parmis une liste de choix.
|
|
26
|
+
* Adapté pour les choix de territoires ou d'années
|
|
27
|
+
*/
|
|
16
28
|
export declare const Select: React.FC<ExtendedSelectProps>;
|
|
17
29
|
export {};
|
|
@@ -5,6 +5,9 @@ import NextPrevSelect from '../NextPrevSelect/NextPrevSelect';
|
|
|
5
5
|
import { list_to_options } from './Control';
|
|
6
6
|
// TODO : a fusionner avec NextPrevSelect pour n'avoir qu'un seul composant
|
|
7
7
|
// Actuellement, Select apporte seulement le fait de choisir les valeurs depuis un
|
|
8
|
+
/** Composant de controle permettant de choisir une valeur parmis une liste de choix.
|
|
9
|
+
* Adapté pour les choix de territoires ou d'années
|
|
10
|
+
*/
|
|
8
11
|
export const Select = ({ name, dataset: datasetSource, options: input_options = [], labelField = 'label', valueField = 'value', arrows = false, reverse = false, label, initial_value: initial_value_in, ...rest }) => {
|
|
9
12
|
const options = list_to_options(input_options);
|
|
10
13
|
const data = useDataset(datasetSource)?.data;
|
|
@@ -1,17 +1,26 @@
|
|
|
1
1
|
import { ReactNode } from "react";
|
|
2
2
|
import { SimpleRecord } from "../..";
|
|
3
|
-
import { CrudFilters
|
|
3
|
+
import { CrudFilters } from "../../data_providers/types";
|
|
4
4
|
import React from "react";
|
|
5
5
|
import { ProviderType } from "./Provider";
|
|
6
6
|
interface IDatasetProps {
|
|
7
|
+
/**Identifiant interne unique du jeu de données*/
|
|
7
8
|
id: string;
|
|
8
|
-
|
|
9
|
+
/** Url du fournisseur */
|
|
9
10
|
url?: string;
|
|
10
|
-
|
|
11
|
+
/** Type de fournisseur */
|
|
12
|
+
type: ProviderType;
|
|
13
|
+
/** Nom de la ressource côté fournisseur
|
|
14
|
+
* (couche, dataset, fichier, etc.)
|
|
15
|
+
*/
|
|
11
16
|
resource: string;
|
|
17
|
+
/**
|
|
18
|
+
* ⚠️ deprecated
|
|
19
|
+
*/
|
|
12
20
|
filters?: CrudFilters;
|
|
13
21
|
children?: ReactNode;
|
|
14
22
|
pageSize?: number;
|
|
23
|
+
/** Paramètres additionnels à passer au fournisseur */
|
|
15
24
|
meta?: any;
|
|
16
25
|
}
|
|
17
26
|
export type dataset = {
|
|
@@ -24,5 +33,8 @@ export type dataset = {
|
|
|
24
33
|
geojson?: any;
|
|
25
34
|
dataHash?: number;
|
|
26
35
|
};
|
|
36
|
+
/**
|
|
37
|
+
* Composant **logique** permettant de récupérer des données.
|
|
38
|
+
*/
|
|
27
39
|
export declare const DSL_Dataset: React.FC<IDatasetProps>;
|
|
28
40
|
export {};
|
|
@@ -3,14 +3,17 @@ import { useContext, useEffect } from "react";
|
|
|
3
3
|
import { useApi } from "../..";
|
|
4
4
|
import { Producer } from "./Producer";
|
|
5
5
|
import React from "react";
|
|
6
|
-
import { Filter, Transform,
|
|
6
|
+
import { Filter, Transform, useAllDatasets, useDatasets } from "../../dsl";
|
|
7
7
|
import alasql from "alasql";
|
|
8
8
|
import { DataProviderContext, getProviderFromType } from "./Provider";
|
|
9
9
|
import { Join } from "./Join";
|
|
10
10
|
import { from } from "arquero";
|
|
11
11
|
import hashCode from "../../utils/hash_data";
|
|
12
12
|
import { DatasetRegistryContext } from "./context";
|
|
13
|
-
|
|
13
|
+
/**
|
|
14
|
+
* Composant **logique** permettant de récupérer des données.
|
|
15
|
+
*/
|
|
16
|
+
export const DSL_Dataset = ({ children, id, type: providerType, url: providerUrl, resource, pageSize, meta }) => {
|
|
14
17
|
const getTransformerFn = (component) => {
|
|
15
18
|
/*
|
|
16
19
|
* Génére une fonction transformer soit
|
|
@@ -57,18 +60,17 @@ export const DSL_Dataset = ({ children, id, provider: provider_input, type: prov
|
|
|
57
60
|
};
|
|
58
61
|
const datasetRegistryContext = useContext(DatasetRegistryContext);
|
|
59
62
|
const allDatasets = useAllDatasets();
|
|
60
|
-
const controls = useAllControls();
|
|
61
63
|
const providerContext = useContext(DataProviderContext);
|
|
62
|
-
const provider = (providerUrl && getProviderFromType(providerType)(providerUrl)) || providerContext
|
|
64
|
+
const provider = (providerUrl && getProviderFromType(providerType)(providerUrl)) || providerContext;
|
|
63
65
|
if (provider === undefined) {
|
|
64
|
-
throw new Error("Error : No dataProvider, please use
|
|
66
|
+
throw new Error("Error : No dataProvider, please use providerUrl/providerType properties");
|
|
65
67
|
}
|
|
66
68
|
/* Récupérer les props des filtres depuis les composants enfant Filter */
|
|
67
69
|
const filters = [];
|
|
68
70
|
React.Children.toArray(children)
|
|
69
71
|
.filter((c) => React.isValidElement(c))
|
|
70
72
|
.filter((c) => typeof c.type != 'string' && c.type.name == Filter.name).forEach((c) => {
|
|
71
|
-
const value = (typeof c.props.children === "string" ? c.props.children.trim() : c.props.children)
|
|
73
|
+
const value = (typeof c.props.children === "string" ? c.props.children.trim() : c.props.children);
|
|
72
74
|
filters.push({
|
|
73
75
|
operator: c.props.operator || 'eq',
|
|
74
76
|
value: value,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { dataset } from "./Dataset";
|
|
2
2
|
import { SimpleRecord } from "../..";
|
|
3
|
-
export type
|
|
4
|
-
export declare const useDataset: (dataset_id?:
|
|
3
|
+
export type datasetInput = string | SimpleRecord[];
|
|
4
|
+
export declare const useDataset: (dataset_id?: datasetInput) => dataset | undefined;
|
|
5
5
|
export declare const useAllDatasets: () => dataset[];
|
|
6
6
|
export declare const useDatasets: (dataset_ids?: string[]) => dataset[];
|
|
7
7
|
/**
|
package/dist/dsl/index.d.ts
CHANGED
|
@@ -23,4 +23,5 @@ import { Section } from "../components/DashboardPage/Section";
|
|
|
23
23
|
import { LegendControl } from "../components/MapLegend/MapLegend";
|
|
24
24
|
import { Intro } from "../components/DashboardPage/Intro";
|
|
25
25
|
import { ChartComparison } from "../components/Charts/ChartComparison";
|
|
26
|
-
|
|
26
|
+
import { DataTable } from "../components/Charts/Datatable";
|
|
27
|
+
export { Dashboard, Dataset, Provider, Transform, Join, Filter, Section, Intro, DataPreview, ChartEcharts, ChartPie, ChartYearSerie, ChartComparison, DataTable, Statistics, StatisticsCollection, useDataset, useDatasets, useAllDatasets, useBlockConfig, Producer, Control, useControl, useAllControls, Radio, Select, Input, Palette, usePalette, usePaletteLabels, PalettePreview, Debug, Map, MapLayer, LegendControl };
|
package/dist/dsl/index.js
CHANGED
|
@@ -23,4 +23,5 @@ import { Section } from "../components/DashboardPage/Section";
|
|
|
23
23
|
import { LegendControl } from "../components/MapLegend/MapLegend";
|
|
24
24
|
import { Intro } from "../components/DashboardPage/Intro";
|
|
25
25
|
import { ChartComparison } from "../components/Charts/ChartComparison";
|
|
26
|
-
|
|
26
|
+
import { DataTable } from "../components/Charts/Datatable";
|
|
27
|
+
export { Dashboard, Dataset, Provider, Transform, Join, Filter, Section, Intro, DataPreview, ChartEcharts, ChartPie, ChartYearSerie, ChartComparison, DataTable, Statistics, StatisticsCollection, useDataset, useDatasets, useAllDatasets, useBlockConfig, Producer, Control, useControl, useAllControls, Radio, Select, Input, Palette, usePalette, usePaletteLabels, PalettePreview, Debug, Map, MapLayer, LegendControl };
|
package/dist/index.d.ts
CHANGED
|
@@ -28,5 +28,6 @@ export { WfsProvider, DatafairProvider, FileProvider };
|
|
|
28
28
|
export type { SimpleRecord, Partner, RouteConfig } from "./types";
|
|
29
29
|
export type { LegendItem } from "./components/MapLegend/MapLegend";
|
|
30
30
|
export type { DashboardConfig } from "./components/Layout/DashboardApp";
|
|
31
|
+
export type { datasetInput } from "./components/Dataset/hooks";
|
|
31
32
|
import * as DSL from './dsl';
|
|
32
33
|
export { DSL };
|