| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- import { useEffect, useState } from 'react';
- import {
- JsonObject,
- seed,
- SuperChart,
- SequentialD3,
- useTheme,
- } from '@superset-ui/core';
- import CountryMapChartPlugin, {
- countries,
- } from '@superset-ui/legacy-plugin-chart-country-map';
- import { withResizableChartDemo } from '../../../shared/components/ResizableChartDemo';
- new CountryMapChartPlugin().configure({ key: 'country-map' }).register();
- export default {
- title: 'Legacy Chart Plugins/legacy-plugin-chart-country-map',
- decorators: [withResizableChartDemo],
- component: SuperChart,
- parameters: {
- initialSize: { width: 500, height: 300 },
- },
- };
- function generateData(geojson: JsonObject) {
- return geojson.features.map(
- (feat: {
- properties: { ISO: string };
- type: string;
- geometry: JsonObject;
- }) => ({
- metric: Math.round(Number(seed(feat.properties.ISO)()) * 10000) / 100,
- country_id: feat.properties.ISO,
- }),
- );
- }
- export const BasicCountryMapStory = (
- {
- country,
- colorSchema,
- }: {
- country: string;
- colorSchema: string;
- },
- { width, height }: { width: number; height: number },
- ) => {
- const theme = useTheme();
- const [data, setData] = useState<JsonObject>();
- useEffect(() => {
- const controller = new AbortController();
- const { signal } = controller;
- fetch(countries[country as keyof typeof countries], { signal })
- .then(resp => resp.json())
- .then(geojson => {
- setData(generateData(geojson));
- });
- return () => {
- controller.abort();
- };
- }, [country]);
- if (!data) {
- return (
- <div
- style={{
- color: theme.colorTextLabel,
- textAlign: 'center',
- padding: 20,
- }}
- >
- Loading...
- </div>
- );
- }
- return (
- <SuperChart
- chartType="country-map"
- width={width}
- height={height}
- queriesData={[{ data }]}
- formData={{
- linearColorScheme: colorSchema,
- numberFormat: '.3s',
- selectCountry: country,
- }}
- />
- );
- };
- BasicCountryMapStory.args = {
- country: 'finland',
- colorSchema: 'schemeOranges',
- };
- BasicCountryMapStory.argTypes = {
- country: {
- control: 'select',
- options: Object.keys(countries),
- },
- colorSchema: {
- control: 'select',
- options: SequentialD3.map(x => x.id),
- description: 'Choose a color schema',
- defaultValue: 'schemeOranges',
- },
- };
|