blob: 51c41d5c35ed34efa8b26a3e47fd139d3b65b7f2 [file] [log] [blame]
/**
* 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 React from 'react';
import { t } from '@superset-ui/core';
import { sections } from '@superset-ui/chart-controls';
export default {
controlPanelSections: [
sections.legacyTimeseriesTime,
{
label: t('Filters configuration'),
expanded: true,
controlSetRows: [
[
{
name: 'filter_configs',
config: {
type: 'CollectionControl',
label: 'Filters',
description: t('Filter configuration for the filter box'),
validators: [],
controlName: 'FilterBoxItemControl',
mapStateToProps: ({ datasource }) => ({ datasource }),
},
},
],
[<hr />],
[
{
name: 'date_filter',
config: {
type: 'CheckboxControl',
label: t('Date filter'),
default: true,
description: t('Whether to include a time filter'),
},
},
{
name: 'instant_filtering',
config: {
type: 'CheckboxControl',
label: t('Instant filtering'),
renderTrigger: true,
default: false,
description: t(
'Check to apply filters instantly as they change instead of displaying [Apply] button',
),
},
},
],
[
{
name: 'show_sqla_time_granularity',
config: {
type: 'CheckboxControl',
label: t('Show SQL granularity dropdown'),
default: false,
description: t('Check to include SQL granularity dropdown'),
},
},
{
name: 'show_sqla_time_column',
config: {
type: 'CheckboxControl',
label: t('Show SQL time column'),
default: false,
description: t('Check to include time column dropdown'),
},
},
],
[
{
name: 'show_druid_time_granularity',
config: {
type: 'CheckboxControl',
label: t('Show Druid granularity dropdown'),
default: false,
description: t('Check to include Druid granularity dropdown'),
},
},
{
name: 'show_druid_time_origin',
config: {
type: 'CheckboxControl',
label: t('Show Druid time origin'),
default: false,
description: t('Check to include time origin dropdown'),
},
},
],
['adhoc_filters'],
],
},
],
controlOverrides: {
adhoc_filters: {
label: t('Limit selector values'),
description: t(
'These filters apply to the values available in the dropdowns',
),
},
},
};