mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04:00
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
import React from "react";
|
|
import { extend } from "lodash";
|
|
import PropTypes from "prop-types";
|
|
import Tooltip from "antd/lib/tooltip";
|
|
|
|
function HelpTrigger({ title, href, className, children }) {
|
|
return (
|
|
<Tooltip
|
|
title={
|
|
<React.Fragment>
|
|
{title}
|
|
<i className="fa fa-external-link" style={{ marginLeft: 5 }} />
|
|
</React.Fragment>
|
|
}>
|
|
<a className={className} href={href} target="_blank" rel="noopener noreferrer">
|
|
{children}
|
|
</a>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
HelpTrigger.propTypes = {
|
|
title: PropTypes.node,
|
|
href: PropTypes.string.isRequired,
|
|
className: PropTypes.string,
|
|
children: PropTypes.node,
|
|
};
|
|
|
|
HelpTrigger.defaultValues = {
|
|
title: null,
|
|
className: null,
|
|
children: null,
|
|
};
|
|
|
|
export const visualizationsSettings = {
|
|
HelpTriggerComponent: HelpTrigger,
|
|
dateFormat: "DD/MM/YYYY",
|
|
dateTimeFormat: "DD/MM/YYYY HH:mm",
|
|
integetFormat: "0,0",
|
|
floatFormat: "0,0.00",
|
|
booleanValues: ["false", "true"],
|
|
tableCellMaxJSONSize: 50000,
|
|
allowCustomJSVisualization: false,
|
|
hidePlotlyModeBar: false,
|
|
choroplethAvailableMaps: {},
|
|
};
|
|
|
|
export function updateVisualizationsSettings(options) {
|
|
extend(visualizationsSettings, options);
|
|
}
|