mirror of
https://github.com/apache/superset.git
synced 2026-05-10 18:35:40 +00:00
72 lines
2.8 KiB
TypeScript
72 lines
2.8 KiB
TypeScript
/**
|
|
* 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 airbnb from '@superset-ui/core/lib/color/colorSchemes/categorical/airbnb';
|
|
import categoricalD3 from '@superset-ui/core/lib/color/colorSchemes/categorical/d3';
|
|
import echarts from '@superset-ui/core/lib/color/colorSchemes/categorical/echarts';
|
|
import google from '@superset-ui/core/lib/color/colorSchemes/categorical/google';
|
|
import lyft from '@superset-ui/core/lib/color/colorSchemes/categorical/lyft';
|
|
import preset from '@superset-ui/core/lib/color/colorSchemes/categorical/preset';
|
|
import sequentialCommon from '@superset-ui/core/lib/color/colorSchemes/sequential/common';
|
|
import sequentialD3 from '@superset-ui/core/lib/color/colorSchemes/sequential/d3';
|
|
import {
|
|
CategoricalScheme,
|
|
getCategoricalSchemeRegistry,
|
|
getSequentialSchemeRegistry,
|
|
SequentialScheme,
|
|
} from '@superset-ui/core';
|
|
import superset from '@superset-ui/core/lib/color/colorSchemes/categorical/superset';
|
|
|
|
export default function setupColors(
|
|
extraCategoricalColorSchemas: CategoricalScheme[] = [],
|
|
extraSequentialColorSchemes: SequentialScheme[] = [],
|
|
) {
|
|
// Register color schemes
|
|
const categoricalSchemeRegistry = getCategoricalSchemeRegistry();
|
|
|
|
if (extraCategoricalColorSchemas?.length > 0) {
|
|
extraCategoricalColorSchemas.forEach(scheme => {
|
|
categoricalSchemeRegistry.registerValue(scheme.id, scheme);
|
|
});
|
|
}
|
|
|
|
[superset, airbnb, categoricalD3, echarts, google, lyft, preset].forEach(
|
|
group => {
|
|
group.forEach(scheme => {
|
|
categoricalSchemeRegistry.registerValue(scheme.id, scheme);
|
|
});
|
|
},
|
|
);
|
|
categoricalSchemeRegistry.setDefaultKey('supersetColors');
|
|
|
|
const sequentialSchemeRegistry = getSequentialSchemeRegistry();
|
|
|
|
if (extraSequentialColorSchemes?.length > 0) {
|
|
extraSequentialColorSchemes.forEach(scheme => {
|
|
categoricalSchemeRegistry.registerValue(scheme.id, scheme);
|
|
});
|
|
}
|
|
|
|
[sequentialCommon, sequentialD3].forEach(group => {
|
|
group.forEach(scheme => {
|
|
sequentialSchemeRegistry.registerValue(scheme.id, scheme);
|
|
});
|
|
});
|
|
sequentialSchemeRegistry.setDefaultKey('superset_seq_1');
|
|
}
|