|
|
|
import React, { useCallback, useReducer } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { produce } from 'immer';
|
|
|
|
import classnames from 'classnames';
|
|
|
|
import { useI18nContext } from '../../../../hooks/useI18nContext';
|
|
|
|
import CheckBox from '../../../ui/check-box/check-box.component';
|
|
|
|
import Typography from '../../../ui/typography/typography';
|
|
|
|
import { TYPOGRAPHY } from '../../../../helpers/constants/design-system';
|
|
|
|
import Popover from '../../../ui/popover';
|
|
|
|
import Button from '../../../ui/button';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* a very simple reducer using produce from Immer to keep checkboxes state manipulation
|
|
|
|
* immutable and painless.
|
|
|
|
*/
|
|
|
|
const checkboxStateReducer = produce((state, action) => {
|
|
|
|
switch (action.type) {
|
|
|
|
case 'check':
|
|
|
|
state[action.checkboxId] = state[action.checkboxId]
|
|
|
|
? !state[action.checkboxId]
|
|
|
|
: true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Error(
|
|
|
|
'You must provide a type when dispatching an action for checkboxState',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default function SnapInstallWarning({ onCancel, onSubmit, warnings }) {
|
|
|
|
const t = useI18nContext();
|
|
|
|
const [checkboxState, dispatch] = useReducer(checkboxStateReducer, {});
|
|
|
|
|
|
|
|
const isAllChecked = warnings.every((warning) => checkboxState[warning.id]);
|
|
|
|
|
|
|
|
const onCheckboxClicked = useCallback((checkboxId) => {
|
|
|
|
dispatch({ type: 'check', checkboxId });
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const SnapInstallWarningFooter = () => {
|
|
|
|
return (
|
|
|
|
<div className="snap-install-warning__footer">
|
|
|
|
<Button
|
|
|
|
className="snap-install-warning__footer-button"
|
|
|
|
type="default"
|
|
|
|
onClick={onCancel}
|
|
|
|
>
|
|
|
|
{t('cancel')}
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
className="snap-install-warning__footer-button"
|
|
|
|
type="primary"
|
|
|
|
disabled={!isAllChecked}
|
|
|
|
onClick={onSubmit}
|
|
|
|
>
|
|
|
|
{t('confirm')}
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Popover
|
|
|
|
className="snap-install-warning"
|
|
|
|
title={t('areYouSure')}
|
|
|
|
footer={<SnapInstallWarningFooter />}
|
|
|
|
headerProps={{ padding: [6, 6, 0] }}
|
|
|
|
contentProps={{ padding: [6, 4] }}
|
|
|
|
footerProps={{ padding: [4, 6] }}
|
|
|
|
>
|
|
|
|
<Typography variant={TYPOGRAPHY.H6} boxProps={{ paddingBottom: 4 }}>
|
|
|
|
{warnings.length > 1
|
|
|
|
? t('snapInstallWarningCheckPlural')
|
|
|
|
: t('snapInstallWarningCheck')}
|
|
|
|
</Typography>
|
|
|
|
{warnings.map((warning, i) => (
|
|
|
|
<div
|
|
|
|
className={classnames('checkbox-label', {
|
|
|
|
'checkbox-label--first': i === 0,
|
|
|
|
})}
|
|
|
|
key={warning.id}
|
|
|
|
>
|
|
|
|
<CheckBox
|
|
|
|
checked={checkboxState[warning.id] ?? false}
|
|
|
|
id={warning.id}
|
|
|
|
onClick={() => onCheckboxClicked(warning.id)}
|
|
|
|
/>
|
|
|
|
<label htmlFor={warning.id}>{warning.message}</label>
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</Popover>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
SnapInstallWarning.propTypes = {
|
|
|
|
/**
|
|
|
|
* onCancel handler
|
|
|
|
*/
|
|
|
|
onCancel: PropTypes.func,
|
|
|
|
/**
|
|
|
|
* onSubmit handler
|
|
|
|
*/
|
|
|
|
onSubmit: PropTypes.func,
|
|
|
|
/**
|
|
|
|
* warnings list
|
|
|
|
*/
|
|
|
|
warnings: PropTypes.arrayOf({
|
|
|
|
message: PropTypes.node,
|
|
|
|
id: PropTypes.string,
|
|
|
|
}),
|
|
|
|
};
|