Files
astuto/app/javascript/components/SiteSettings/Boards/BoardEditable.tsx
Riccardo Graziosi 78049a820c Add internationalization (#114)
🇬🇧 and 🇮🇹
2022-06-05 11:40:43 +02:00

122 lines
3.2 KiB
TypeScript

import * as React from 'react';
import I18n from 'i18n-js';
import { Draggable } from 'react-beautiful-dnd';
import { DescriptionText } from '../../shared/CustomTexts';
import DragZone from '../../shared/DragZone';
import PostBoardLabel from '../../shared/PostBoardLabel';
import Separator from '../../shared/Separator';
import BoardForm from './BoardForm';
interface Props {
id: number;
name: string;
description?: string;
index: number;
settingsAreUpdating: boolean;
handleUpdate(
id: number,
description: string,
name: string,
onSuccess: Function,
): void;
handleDelete(id: number): void;
}
interface State {
editMode: boolean;
}
class BoardsEditable extends React.Component<Props, State> {
constructor(props) {
super(props);
this.state = {
editMode: false,
};
this.toggleEditMode = this.toggleEditMode.bind(this);
this.handleUpdate = this.handleUpdate.bind(this);
}
toggleEditMode() {
this.setState({editMode: !this.state.editMode});
}
handleUpdate(id: number, name: string, description: string) {
this.props.handleUpdate(
id,
name,
description,
() => this.setState({editMode: false}),
);
}
render() {
const {
id,
name,
description,
index,
settingsAreUpdating,
handleDelete,
} = this.props;
const { editMode } = this.state;
return (
<Draggable key={id} draggableId={id.toString()} index={index} isDragDisabled={settingsAreUpdating}>
{(provided, snapshot) => (
<li className={`boardEditable${snapshot.isDragging ? ' dragging' : ''}`} ref={provided.innerRef} {...provided.draggableProps}>
<DragZone dndProvided={provided} isDragDisabled={settingsAreUpdating} />
{ editMode === false ?
<React.Fragment>
<div className="boardInfo">
<div className="boardName">
<PostBoardLabel name={name} />
</div>
<div className="boardDescription">
<DescriptionText limit={80}>{description}</DescriptionText>
</div>
</div>
<div className="boardEditableActions">
<a onClick={this.toggleEditMode}>{I18n.t('common.buttons.edit')}</a>
<Separator />
<a
onClick={() => handleDelete(id)}
data-confirm="Are you sure?"
>
{I18n.t('common.buttons.delete')}
</a>
</div>
</React.Fragment>
:
<React.Fragment>
<BoardForm
mode='update'
id={id}
name={name}
description={description}
handleUpdate={this.handleUpdate}
/>
<a
className="boardFormCancelButton"
onClick={this.toggleEditMode}>
{I18n.t('common.buttons.cancel')}
</a>
</React.Fragment>
}
</li>
)}
</Draggable>
);
}
}
export default BoardsEditable;