mirror of
https://github.com/plankanban/planka.git
synced 2025-12-25 17:25:01 +03:00
ref: Creating popups with hook, fix translation keys passing
This commit is contained in:
@@ -1,19 +1,28 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { Button } from 'semantic-ui-react';
|
||||
import { Popup } from '../../lib/custom-ui';
|
||||
|
||||
import styles from './DeleteStep.module.scss';
|
||||
|
||||
const DeleteStep = React.memo(({ title, content, buttonContent, onConfirm, onBack }) => (
|
||||
<>
|
||||
<Popup.Header onBack={onBack}>{title}</Popup.Header>
|
||||
<Popup.Content>
|
||||
<div className={styles.content}>{content}</div>
|
||||
<Button fluid negative content={buttonContent} onClick={onConfirm} />
|
||||
</Popup.Content>
|
||||
</>
|
||||
));
|
||||
const DeleteStep = React.memo(({ title, content, buttonContent, onConfirm, onBack }) => {
|
||||
const [t] = useTranslation();
|
||||
|
||||
return (
|
||||
<>
|
||||
<Popup.Header onBack={onBack}>
|
||||
{t(title, {
|
||||
context: 'title',
|
||||
})}
|
||||
</Popup.Header>
|
||||
<Popup.Content>
|
||||
<div className={styles.content}>{t(content)}</div>
|
||||
<Button fluid negative content={t(buttonContent)} onClick={onConfirm} />
|
||||
</Popup.Content>
|
||||
</>
|
||||
);
|
||||
});
|
||||
|
||||
DeleteStep.propTypes = {
|
||||
title: PropTypes.string.isRequired,
|
||||
|
||||
Reference in New Issue
Block a user