mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 01:00:14 -04:00
* Prettier all the JS files * Add GitHub Action to autoformat code pushed to master * Fix eslint violation due to formatting. * Remove GitHub actions for styling * Add restyled.io config
33 lines
1.0 KiB
JavaScript
33 lines
1.0 KiB
JavaScript
import React from "react";
|
|
import PropTypes from "prop-types";
|
|
import Button from "antd/lib/button";
|
|
import Badge from "antd/lib/badge";
|
|
import Tooltip from "antd/lib/tooltip";
|
|
import { KeyboardShortcuts } from "@/services/keyboard-shortcuts";
|
|
|
|
function ParameterApplyButton({ paramCount, onClick }) {
|
|
// show spinner when count is empty so the fade out is consistent
|
|
const icon = !paramCount ? "spinner fa-pulse" : "check";
|
|
|
|
return (
|
|
<div className="parameter-apply-button" data-show={!!paramCount} data-test="ParameterApplyButton">
|
|
<Badge count={paramCount}>
|
|
<Tooltip title={paramCount ? `${KeyboardShortcuts.modKey} + Enter` : null}>
|
|
<span>
|
|
<Button onClick={onClick}>
|
|
<i className={`fa fa-${icon}`} /> Apply Changes
|
|
</Button>
|
|
</span>
|
|
</Tooltip>
|
|
</Badge>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
ParameterApplyButton.propTypes = {
|
|
onClick: PropTypes.func.isRequired,
|
|
paramCount: PropTypes.number.isRequired,
|
|
};
|
|
|
|
export default ParameterApplyButton;
|