Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
import { connect } from 'react-redux';
|
|
|
|
import { createToolbarEvent } from '../../../analytics/AnalyticsEvents';
|
|
import { sendAnalytics } from '../../../analytics/functions';
|
|
import { IReduxState } from '../../../app/types';
|
|
import { openDialog } from '../../../base/dialog/actions';
|
|
import { translate } from '../../../base/i18n/functions';
|
|
import { IconCloudUpload } from '../../../base/icons/svg';
|
|
import AbstractButton, { IProps as AbstractButtonProps } from '../../../base/toolbox/components/AbstractButton';
|
|
import SalesforceLinkDialog from '../../../salesforce/components/web/SalesforceLinkDialog';
|
|
import { isSalesforceEnabled } from '../../../salesforce/functions';
|
|
|
|
/**
|
|
* Implementation of a button for opening the Salesforce link dialog.
|
|
*/
|
|
class LinkToSalesforce extends AbstractButton<AbstractButtonProps> {
|
|
override accessibilityLabel = 'toolbar.accessibilityLabel.linkToSalesforce';
|
|
override icon = IconCloudUpload;
|
|
override label = 'toolbar.linkToSalesforce';
|
|
override tooltip = 'toolbar.linkToSalesforce';
|
|
|
|
/**
|
|
* Handles clicking / pressing the button, and opens the Salesforce link dialog.
|
|
*
|
|
* @protected
|
|
* @returns {void}
|
|
*/
|
|
override _handleClick() {
|
|
const { dispatch } = this.props;
|
|
|
|
sendAnalytics(createToolbarEvent('link.to.salesforce'));
|
|
dispatch(openDialog(SalesforceLinkDialog));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Function that maps parts of Redux state tree into component props.
|
|
*
|
|
* @param {Object} state - Redux state.
|
|
* @returns {Object}
|
|
*/
|
|
const mapStateToProps = (state: IReduxState) => {
|
|
return {
|
|
visible: isSalesforceEnabled(state)
|
|
};
|
|
};
|
|
|
|
export default translate(connect(mapStateToProps)(LinkToSalesforce));
|