mirror of
https://github.com/apache/superset.git
synced 2026-04-26 11:34:27 +00:00
* [WIP] Typeahead dashboard filter_box * Make it work * add config option for async filter_box * enable for > 1000 options only Co-authored-by: Jesse Yang <jesse.yang@airbnb.com>
92 lines
2.9 KiB
JavaScript
92 lines
2.9 KiB
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.
|
|
*/
|
|
import { t } from '@superset-ui/translation';
|
|
|
|
export const AGGREGATES = {
|
|
AVG: 'AVG',
|
|
COUNT: 'COUNT',
|
|
COUNT_DISTINCT: 'COUNT_DISTINCT',
|
|
MAX: 'MAX',
|
|
MIN: 'MIN',
|
|
SUM: 'SUM',
|
|
};
|
|
export const AGGREGATES_OPTIONS = Object.values(AGGREGATES);
|
|
|
|
export const OPERATORS = {
|
|
'==': '==',
|
|
'!=': '!=',
|
|
'>': '>',
|
|
'<': '<',
|
|
'>=': '>=',
|
|
'<=': '<=',
|
|
in: 'in',
|
|
'not in': 'not in',
|
|
LIKE: 'LIKE',
|
|
regex: 'regex',
|
|
'IS NOT NULL': 'IS NOT NULL',
|
|
'IS NULL': 'IS NULL',
|
|
'LATEST PARTITION': 'LATEST PARTITION',
|
|
};
|
|
export const OPERATORS_OPTIONS = Object.values(OPERATORS);
|
|
|
|
export const TABLE_ONLY_OPERATORS = [OPERATORS.LIKE];
|
|
export const DRUID_ONLY_OPERATORS = [OPERATORS.regex];
|
|
export const HAVING_OPERATORS = [
|
|
OPERATORS['=='],
|
|
OPERATORS['!='],
|
|
OPERATORS['>'],
|
|
OPERATORS['<'],
|
|
OPERATORS['>='],
|
|
OPERATORS['<='],
|
|
];
|
|
export const MULTI_OPERATORS = new Set([OPERATORS.in, OPERATORS['not in']]);
|
|
// CUSTOM_OPERATORS will show operator in simple mode,
|
|
// but will generate customized sqlExpression
|
|
export const CUSTOM_OPERATORS = new Set([OPERATORS['LATEST PARTITION']]);
|
|
// DISABLE_INPUT_OPERATORS will disable filter value input
|
|
// in adhocFilter control
|
|
export const DISABLE_INPUT_OPERATORS = [
|
|
OPERATORS['IS NOT NULL'],
|
|
OPERATORS['IS NULL'],
|
|
OPERATORS['LATEST PARTITION'],
|
|
];
|
|
|
|
export const sqlaAutoGeneratedMetricNameRegex = /^(sum|min|max|avg|count|count_distinct)__.*$/i;
|
|
export const sqlaAutoGeneratedMetricRegex = /^(LONG|DOUBLE|FLOAT)?(SUM|AVG|MAX|MIN|COUNT)\([A-Z0-9_."]*\)$/i;
|
|
export const druidAutoGeneratedMetricRegex = /^(LONG|DOUBLE|FLOAT)?(SUM|MAX|MIN|COUNT)\([A-Z0-9_."]*\)$/i;
|
|
|
|
export const EXPLORE_ONLY_VIZ_TYPE = ['separator', 'markup'];
|
|
|
|
export const TIME_FILTER_LABELS = {
|
|
time_range: t('Time Range'),
|
|
granularity_sqla: t('Time Column'),
|
|
time_grain_sqla: t('Time Grain'),
|
|
druid_time_origin: t('Origin'),
|
|
granularity: t('Time Granularity'),
|
|
};
|
|
|
|
export const FILTER_CONFIG_ATTRIBUTES = {
|
|
DEFAULT_VALUE: 'defaultValue',
|
|
MULTIPLE: 'multiple',
|
|
SEARCH_ALL_OPTIONS: 'searchAllOptions',
|
|
CLEARABLE: 'clearable',
|
|
};
|
|
|
|
export const FILTER_OPTIONS_LIMIT = 1000;
|