@superset-ui/core
Version:
160 lines (77 loc) • 3.14 kB
JavaScript
/*
* 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.
*/
export default class ChartMetadata {
constructor(config) {this.name = void 0;this.canBeAnnotationTypes = void 0;this.canBeAnnotationTypesLookup = void 0;this.credits = void 0;this.description = void 0;this.supportedAnnotationTypes = void 0;this.thumbnail = void 0;this.useLegacyApi = void 0;this.behaviors = void 0;this.datasourceCount = void 0;this.enableNoResults = void 0;this.exampleGallery = void 0;this.tags = void 0;this.category = void 0;this.deprecated = void 0;this.label = void 0;this.labelExplanation = void 0;this.queryObjectCount = void 0;this.parseMethod = void 0;this.suppressContextMenu = void 0;
const {
name,
canBeAnnotationTypes = [],
credits = [],
description = '',
supportedAnnotationTypes = [],
thumbnail,
useLegacyApi = false,
behaviors = [],
datasourceCount = 1,
enableNoResults = true,
exampleGallery = [],
tags = [],
category = null,
deprecated = false,
label = null,
labelExplanation = null,
queryObjectCount = 1,
parseMethod = 'json-bigint',
suppressContextMenu = false
} = config;
this.name = name;
this.credits = credits;
this.description = description;
this.canBeAnnotationTypes = canBeAnnotationTypes;
this.canBeAnnotationTypesLookup = canBeAnnotationTypes.reduce(
(prev, type) => {
const lookup = prev;
lookup[type] = true;
return lookup;
},
{}
);
this.supportedAnnotationTypes = supportedAnnotationTypes;
this.thumbnail = thumbnail;
this.useLegacyApi = useLegacyApi;
this.behaviors = behaviors;
this.datasourceCount = datasourceCount;
this.enableNoResults = enableNoResults;
this.exampleGallery = exampleGallery;
this.tags = tags;
this.category = category;
this.deprecated = deprecated;
this.label = label;
this.labelExplanation = labelExplanation;
this.queryObjectCount = queryObjectCount;
this.parseMethod = parseMethod;
this.suppressContextMenu = suppressContextMenu;
}
canBeAnnotationType(type) {
return this.canBeAnnotationTypesLookup[type] || false;
}
clone() {
return new ChartMetadata(this);
}
}
//# sourceMappingURL=ChartMetadata.js.map