chore: fill descriptions and rearrange tags (#40)

This commit is contained in:
Kamil Gabryjelski 2021-08-05 11:36:02 +02:00 committed by Yongjie Zhao
parent 044789f4b9
commit 7242c405bb
9 changed files with 22 additions and 16 deletions

View File

@ -24,11 +24,11 @@ import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
category: t('Map'),
credits: ['https://uber.github.io/deck.gl'],
description: '',
description: t('Compose multiple layers together to form complex visuals.'),
name: t('deck.gl Multiple Layers'),
thumbnail,
useLegacyApi: true,
tags: [t('Multi-Layers'), t('deckGL')],
tags: [t('deckGL'), t('Multi-Layers')],
});
export default class MultiChartPlugin extends ChartPlugin {

View File

@ -28,7 +28,7 @@ const metadata = new ChartMetadata({
name: t('deck.gl Arc'),
thumbnail,
useLegacyApi: true,
tags: [t('3D'), t('Geo'), t('Relational'), t('Web'), t('deckGL')],
tags: [t('deckGL'), t('Geo'), t('3D'), t('Relational'), t('Web')],
});
export default class ArcChartPlugin extends ChartPlugin {

View File

@ -24,11 +24,13 @@ import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
category: t('Map'),
credits: ['https://uber.github.io/deck.gl'],
description: '',
description: t(
'The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).',
),
name: t('deck.gl Geojson'),
thumbnail,
useLegacyApi: true,
tags: [t('2D'), t('Aesthetic'), t('deckGL')],
tags: [t('deckGL'), t('2D'), t('Aesthetic')],
});
export default class GeojsonChartPlugin extends ChartPlugin {

View File

@ -24,11 +24,13 @@ import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
category: t('Map'),
credits: ['https://uber.github.io/deck.gl'],
description: '',
description: t(
'Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.',
),
name: t('deck.gl Grid'),
thumbnail,
useLegacyApi: true,
tags: [t('3D'), t('Comparison'), t('Experimental'), t('deckGL')],
tags: [t('deckGL'), t('3D'), t('Comparison'), t('Experimental')],
});
export default class GridChartPlugin extends ChartPlugin {

View File

@ -30,7 +30,7 @@ const metadata = new ChartMetadata({
name: t('deck.gl 3D Hexagon'),
thumbnail,
useLegacyApi: true,
tags: [t('3D'), t('Comparison'), t('Experimental'), t('Geo'), t('deckGL')],
tags: [t('deckGL'), t('3D'), t('Geo'), t('Comparison'), t('Experimental')],
});
export default class HexChartPlugin extends ChartPlugin {

View File

@ -24,11 +24,11 @@ import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
category: t('Map'),
credits: ['https://uber.github.io/deck.gl'],
description: '',
description: t('Visualizes connected points, which form a path, on a map.'),
name: t('deck.gl Path'),
thumbnail,
useLegacyApi: true,
tags: [t('Web'), t('deckGL')],
tags: [t('deckGL'), t('Web')],
});
export default class PathChartPlugin extends ChartPlugin {

View File

@ -24,11 +24,13 @@ import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
category: t('Map'),
credits: ['https://uber.github.io/deck.gl'],
description: '',
description: t(
'Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.',
),
name: t('deck.gl Polygon'),
thumbnail,
useLegacyApi: true,
tags: [t('3D'), t('Experimental'), t('Geo'), t('Multi-Dimensions'), t('deckGL')],
tags: [t('deckGL'), t('3D'), t('Multi-Dimensions'), t('Geo'), t('Experimental')],
});
export default class PolygonChartPlugin extends ChartPlugin {

View File

@ -31,13 +31,13 @@ const metadata = new ChartMetadata({
thumbnail,
useLegacyApi: true,
tags: [
t('2D'),
t('deckGL'),
t('Comparison'),
t('Scatter'),
t('2D'),
t('Geo'),
t('Intensity'),
t('Density'),
t('Scatter'),
t('deckGL'),
],
});

View File

@ -30,7 +30,7 @@ const metadata = new ChartMetadata({
name: t('deck.gl Screen Grid'),
thumbnail,
useLegacyApi: true,
tags: [t('Comparison'), t('Experimental'), t('Intensity'), t('Density'), t('deckGL')],
tags: [t('deckGL'), t('Comparison'), t('Intensity'), t('Experimental'), t('Density')],
});
export default class ScreengridChartPlugin extends ChartPlugin {