mirror of
https://github.com/plankanban/planka.git
synced 2025-07-23 07:09:44 +02:00
feat: Colorize due date and make it toggleable (#845)
This commit is contained in:
parent
198518a51a
commit
c4c6d738a5
12 changed files with 207 additions and 38 deletions
|
@ -24,6 +24,7 @@ const Card = React.memo(
|
|||
index,
|
||||
name,
|
||||
dueDate,
|
||||
dueCompleted,
|
||||
stopwatch,
|
||||
coverUrl,
|
||||
boardId,
|
||||
|
@ -81,6 +82,15 @@ const Card = React.memo(
|
|||
[onUpdate],
|
||||
);
|
||||
|
||||
const handleDueDateCompletionUpdate = useCallback(
|
||||
(dueDateCompleted) => {
|
||||
onUpdate({
|
||||
dueDateCompleted,
|
||||
});
|
||||
},
|
||||
[onUpdate],
|
||||
);
|
||||
|
||||
const handleNameEdit = useCallback(() => {
|
||||
nameEdit.current.open();
|
||||
}, []);
|
||||
|
@ -120,7 +130,12 @@ const Card = React.memo(
|
|||
)}
|
||||
{dueDate && (
|
||||
<span className={classNames(styles.attachment, styles.attachmentLeft)}>
|
||||
<DueDate value={dueDate} size="tiny" />
|
||||
<DueDate
|
||||
value={dueDate}
|
||||
completed={dueCompleted}
|
||||
size="tiny"
|
||||
onUpdateCompletion={handleDueDateCompletionUpdate}
|
||||
/>
|
||||
</span>
|
||||
)}
|
||||
{stopwatch && (
|
||||
|
@ -221,6 +236,7 @@ Card.propTypes = {
|
|||
index: PropTypes.number.isRequired,
|
||||
name: PropTypes.string.isRequired,
|
||||
dueDate: PropTypes.instanceOf(Date),
|
||||
dueCompleted: PropTypes.bool.isRequired,
|
||||
stopwatch: PropTypes.object, // eslint-disable-line react/forbid-prop-types
|
||||
coverUrl: PropTypes.string,
|
||||
boardId: PropTypes.string.isRequired,
|
||||
|
|
|
@ -32,6 +32,7 @@ const CardModal = React.memo(
|
|||
name,
|
||||
description,
|
||||
dueDate,
|
||||
dueCompleted,
|
||||
stopwatch,
|
||||
isSubscribed,
|
||||
isActivitiesFetching,
|
||||
|
@ -171,6 +172,15 @@ const CardModal = React.memo(
|
|||
onClose();
|
||||
}, [onClose]);
|
||||
|
||||
const handleDueDateCompletion = useCallback(
|
||||
(completion) => {
|
||||
onUpdate({
|
||||
dueCompleted: completion,
|
||||
});
|
||||
},
|
||||
[onUpdate],
|
||||
);
|
||||
|
||||
const AttachmentAddPopup = usePopup(AttachmentAddStep);
|
||||
const BoardMembershipsPopup = usePopup(BoardMembershipsStep);
|
||||
const LabelsPopup = usePopup(LabelsStep);
|
||||
|
@ -303,10 +313,14 @@ const CardModal = React.memo(
|
|||
<span className={styles.attachment}>
|
||||
{canEdit ? (
|
||||
<DueDateEditPopup defaultValue={dueDate} onUpdate={handleDueDateUpdate}>
|
||||
<DueDate value={dueDate} />
|
||||
<DueDate
|
||||
value={dueDate}
|
||||
completed={dueCompleted}
|
||||
onUpdateCompletion={handleDueDateCompletion}
|
||||
/>
|
||||
</DueDateEditPopup>
|
||||
) : (
|
||||
<DueDate value={dueDate} />
|
||||
<DueDate value={dueDate} completed={dueCompleted} />
|
||||
)}
|
||||
</span>
|
||||
</div>
|
||||
|
@ -562,6 +576,7 @@ CardModal.propTypes = {
|
|||
name: PropTypes.string.isRequired,
|
||||
description: PropTypes.string,
|
||||
dueDate: PropTypes.instanceOf(Date),
|
||||
dueCompleted: PropTypes.bool,
|
||||
stopwatch: PropTypes.object, // eslint-disable-line react/forbid-prop-types
|
||||
isSubscribed: PropTypes.bool.isRequired,
|
||||
isActivitiesFetching: PropTypes.bool.isRequired,
|
||||
|
@ -616,6 +631,7 @@ CardModal.propTypes = {
|
|||
CardModal.defaultProps = {
|
||||
description: undefined,
|
||||
dueDate: undefined,
|
||||
dueCompleted: false,
|
||||
stopwatch: undefined,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
import upperFirst from 'lodash/upperFirst';
|
||||
import React from 'react';
|
||||
import React, { useCallback } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import classNames from 'classnames';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { Checkbox } from 'semantic-ui-react';
|
||||
|
||||
import getDateFormat from '../../utils/get-date-format';
|
||||
|
||||
|
@ -26,50 +27,96 @@ const FULL_DATE_FORMAT_BY_SIZE = {
|
|||
medium: 'fullDateTime',
|
||||
};
|
||||
|
||||
const DueDate = React.memo(({ value, size, isDisabled, onClick }) => {
|
||||
const [t] = useTranslation();
|
||||
const getDueClass = (value) => {
|
||||
const now = new Date();
|
||||
const tomorrow = new Date(now).setDate(now.getDate() + 1);
|
||||
|
||||
const dateFormat = getDateFormat(
|
||||
value,
|
||||
LONG_DATE_FORMAT_BY_SIZE[size],
|
||||
FULL_DATE_FORMAT_BY_SIZE[size],
|
||||
);
|
||||
if (now > value) return styles.overdue;
|
||||
if (tomorrow > value) return styles.soon;
|
||||
return null;
|
||||
};
|
||||
|
||||
const contentNode = (
|
||||
<span
|
||||
className={classNames(
|
||||
styles.wrapper,
|
||||
styles[`wrapper${upperFirst(size)}`],
|
||||
onClick && styles.wrapperHoverable,
|
||||
)}
|
||||
>
|
||||
{t(`format:${dateFormat}`, {
|
||||
value,
|
||||
postProcess: 'formatDate',
|
||||
})}
|
||||
</span>
|
||||
);
|
||||
const DueDate = React.memo(
|
||||
({ value, completed, size, isDisabled, onClick, onUpdateCompletion }) => {
|
||||
const [t] = useTranslation();
|
||||
|
||||
return onClick ? (
|
||||
<button type="button" disabled={isDisabled} className={styles.button} onClick={onClick}>
|
||||
{contentNode}
|
||||
</button>
|
||||
) : (
|
||||
contentNode
|
||||
);
|
||||
});
|
||||
const dateFormat = getDateFormat(
|
||||
value,
|
||||
LONG_DATE_FORMAT_BY_SIZE[size],
|
||||
FULL_DATE_FORMAT_BY_SIZE[size],
|
||||
);
|
||||
|
||||
const classes = [
|
||||
styles.wrapper,
|
||||
styles[`wrapper${upperFirst(size)}`],
|
||||
onClick && styles.wrapperHoverable,
|
||||
completed ? styles.completed : getDueClass(value),
|
||||
];
|
||||
|
||||
const handleToggleChange = useCallback(
|
||||
(event) => {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
if (!isDisabled) onUpdateCompletion(!completed);
|
||||
},
|
||||
[onUpdateCompletion, completed, isDisabled],
|
||||
);
|
||||
|
||||
return onClick ? (
|
||||
<div className={styles.wrapperGroup}>
|
||||
<button
|
||||
type="button"
|
||||
aria-label="Toggle completion"
|
||||
className={classNames(...classes, styles.wrapperCheckbox)}
|
||||
onClick={handleToggleChange}
|
||||
>
|
||||
<Checkbox
|
||||
className={styles.checkbox}
|
||||
checked={completed}
|
||||
disabled={isDisabled}
|
||||
onChange={handleToggleChange}
|
||||
/>
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
disabled={isDisabled}
|
||||
className={classNames(...classes, styles.wrapperButton)}
|
||||
onClick={onClick}
|
||||
>
|
||||
<span>
|
||||
{t(`format:${dateFormat}`, {
|
||||
value,
|
||||
postProcess: 'formatDate',
|
||||
})}
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
) : (
|
||||
<span className={classNames(...classes)}>
|
||||
{t(`format:${dateFormat}`, {
|
||||
value,
|
||||
postProcess: 'formatDate',
|
||||
})}
|
||||
</span>
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
DueDate.propTypes = {
|
||||
value: PropTypes.instanceOf(Date).isRequired,
|
||||
size: PropTypes.oneOf(Object.values(SIZES)),
|
||||
isDisabled: PropTypes.bool,
|
||||
completed: PropTypes.bool,
|
||||
onClick: PropTypes.func,
|
||||
onUpdateCompletion: PropTypes.func,
|
||||
};
|
||||
|
||||
DueDate.defaultProps = {
|
||||
size: SIZES.MEDIUM,
|
||||
isDisabled: false,
|
||||
completed: false,
|
||||
onClick: undefined,
|
||||
onUpdateCompletion: undefined,
|
||||
};
|
||||
|
||||
export default DueDate;
|
||||
|
|
|
@ -25,22 +25,75 @@
|
|||
color: #17394d;
|
||||
}
|
||||
|
||||
.wrapperGroup {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
justify-content: stretch;
|
||||
}
|
||||
|
||||
.overdue {
|
||||
background: #db2828;
|
||||
color: #ffffff;
|
||||
&.wrapperHoverable:hover {
|
||||
background: #d01919;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
||||
.soon {
|
||||
background: #fbbd08;
|
||||
color: #ffffff;
|
||||
&.wrapperHoverable:hover {
|
||||
background: #eaae00;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
||||
.completed {
|
||||
background: #21ba45;
|
||||
color: #ffffff;
|
||||
&.wrapperHoverable:hover {
|
||||
background: #16ab39;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
||||
/* Sizes */
|
||||
|
||||
.wrapperTiny {
|
||||
font-size: 12px;
|
||||
line-height: 20px;
|
||||
padding: 0px 6px;
|
||||
&.wrapperCheckbox {
|
||||
padding-right: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
.wrapperSmall {
|
||||
font-size: 12px;
|
||||
line-height: 20px;
|
||||
padding: 2px 6px;
|
||||
&.wrapperCheckbox {
|
||||
padding-right: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
.wrapperMedium {
|
||||
line-height: 20px;
|
||||
padding: 6px 12px;
|
||||
}
|
||||
|
||||
.wrapperCheckbox {
|
||||
padding-right: 12px;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
.checkbox {
|
||||
display: block;
|
||||
}
|
||||
.wrapperButton {
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue