mirror of
https://github.com/apache/superset.git
synced 2026-04-23 01:55:09 +00:00
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import ColumnTypeLabel from './ColumnTypeLabel';
|
|
import InfoTooltipWithTrigger from './InfoTooltipWithTrigger';
|
|
|
|
const propTypes = {
|
|
column: PropTypes.object.isRequired,
|
|
showType: PropTypes.bool,
|
|
};
|
|
const defaultProps = {
|
|
showType: false,
|
|
};
|
|
|
|
export default function ColumnOption({ column, showType }) {
|
|
const hasExpression = column.expression && column.expression !== column.column_name;
|
|
|
|
let columnType = column.type;
|
|
if (column.is_dttm) {
|
|
columnType = 'time';
|
|
} else if (hasExpression) {
|
|
columnType = 'expression';
|
|
}
|
|
|
|
return (
|
|
<span>
|
|
{showType && columnType && <ColumnTypeLabel type={columnType} />}
|
|
<span className="m-r-5 option-label">
|
|
{column.verbose_name || column.column_name}
|
|
</span>
|
|
{column.description &&
|
|
<InfoTooltipWithTrigger
|
|
className="m-r-5 text-muted"
|
|
icon="info"
|
|
tooltip={column.description}
|
|
label={`descr-${column.column_name}`}
|
|
/>
|
|
}
|
|
{hasExpression &&
|
|
<InfoTooltipWithTrigger
|
|
className="m-r-5 text-muted"
|
|
icon="question-circle-o"
|
|
tooltip={column.expression}
|
|
label={`expr-${column.column_name}`}
|
|
/>
|
|
}
|
|
</span>);
|
|
}
|
|
ColumnOption.propTypes = propTypes;
|
|
ColumnOption.defaultProps = defaultProps;
|