mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
feat: Make card descriptions expandable
This commit is contained in:
parent
98a7f1c9a9
commit
99a06ce1ae
7 changed files with 123 additions and 3 deletions
|
@ -30,7 +30,7 @@ import SelectCardTypeStep from '../SelectCardTypeStep';
|
||||||
import EditDueDateStep from '../EditDueDateStep';
|
import EditDueDateStep from '../EditDueDateStep';
|
||||||
import EditStopwatchStep from '../EditStopwatchStep';
|
import EditStopwatchStep from '../EditStopwatchStep';
|
||||||
import MoveCardStep from '../MoveCardStep';
|
import MoveCardStep from '../MoveCardStep';
|
||||||
import Markdown from '../../common/Markdown';
|
import ExpandableMarkdown from '../../common/ExpandableMarkdown';
|
||||||
import EditMarkdown from '../../common/EditMarkdown';
|
import EditMarkdown from '../../common/EditMarkdown';
|
||||||
import ConfirmationStep from '../../common/ConfirmationStep';
|
import ConfirmationStep from '../../common/ConfirmationStep';
|
||||||
import UserAvatar from '../../users/UserAvatar';
|
import UserAvatar from '../../users/UserAvatar';
|
||||||
|
@ -521,7 +521,7 @@ const ProjectContent = React.memo(({ onClose }) => {
|
||||||
<Button className={styles.editButton}>
|
<Button className={styles.editButton}>
|
||||||
<Icon fitted name="pencil" size="small" />
|
<Icon fitted name="pencil" size="small" />
|
||||||
</Button>
|
</Button>
|
||||||
<Markdown>{card.description}</Markdown>
|
<ExpandableMarkdown>{card.description}</ExpandableMarkdown>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<button
|
<button
|
||||||
|
@ -536,7 +536,7 @@ const ProjectContent = React.memo(({ onClose }) => {
|
||||||
))}
|
))}
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{!canEditDescription && <Markdown>{card.description}</Markdown>}
|
{!canEditDescription && <ExpandableMarkdown>{card.description}</ExpandableMarkdown>}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -0,0 +1,78 @@
|
||||||
|
/*!
|
||||||
|
* Copyright (c) 2024 PLANKA Software GmbH
|
||||||
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
import { Button, Icon } from 'semantic-ui-react';
|
||||||
|
import { useToggle } from '../../../lib/hooks';
|
||||||
|
|
||||||
|
import Markdown from '../Markdown';
|
||||||
|
|
||||||
|
import styles from './ExpandableMarkdown.module.scss';
|
||||||
|
|
||||||
|
const MAX_VISIBLE_PART_HEIGHT = 800;
|
||||||
|
|
||||||
|
const ExpandableMarkdown = React.memo(({ children }) => {
|
||||||
|
const [t] = useTranslation();
|
||||||
|
const [isOverflowing, setIsOverflowing] = useState(false);
|
||||||
|
const [isExpanded, toggleExpanded] = useToggle();
|
||||||
|
|
||||||
|
const contentRef = useRef(null);
|
||||||
|
|
||||||
|
const handleToggleExpandClick = useCallback(
|
||||||
|
(event) => {
|
||||||
|
event.stopPropagation();
|
||||||
|
event.target.blur();
|
||||||
|
|
||||||
|
toggleExpanded();
|
||||||
|
},
|
||||||
|
[toggleExpanded],
|
||||||
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const resizeObserver = new ResizeObserver(() => {
|
||||||
|
setIsOverflowing(contentRef.current.scrollHeight > MAX_VISIBLE_PART_HEIGHT);
|
||||||
|
});
|
||||||
|
|
||||||
|
resizeObserver.observe(contentRef.current);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
resizeObserver.disconnect();
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const isPartHidden = isOverflowing && !isExpanded;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div
|
||||||
|
className={classNames(
|
||||||
|
styles.wrapper,
|
||||||
|
isExpanded && styles.wrapperExpanded,
|
||||||
|
isPartHidden && styles.wrapperPartHidden,
|
||||||
|
)}
|
||||||
|
style={{ maxHeight: `${MAX_VISIBLE_PART_HEIGHT}px` }}
|
||||||
|
>
|
||||||
|
<div ref={contentRef}>
|
||||||
|
<Markdown>{children}</Markdown>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{isOverflowing && (
|
||||||
|
<Button fluid className={styles.toggleButton} onClick={handleToggleExpandClick}>
|
||||||
|
<Icon name={isExpanded ? 'angle up' : 'angle down'} />
|
||||||
|
{isExpanded ? t('action.showLess') : t('action.showMore')}
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
ExpandableMarkdown.propTypes = {
|
||||||
|
children: PropTypes.string.isRequired,
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ExpandableMarkdown;
|
|
@ -0,0 +1,28 @@
|
||||||
|
/*!
|
||||||
|
* Copyright (c) 2024 PLANKA Software GmbH
|
||||||
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||||||
|
*/
|
||||||
|
|
||||||
|
:global(#app) {
|
||||||
|
.toggleButton {
|
||||||
|
box-shadow: none;
|
||||||
|
font-weight: normal;
|
||||||
|
margin-top: 8px;
|
||||||
|
padding: 6px 11px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapperExpanded {
|
||||||
|
max-height: none !important;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapperPartHidden {
|
||||||
|
mask-image: linear-gradient(180deg, #000 80%, transparent);
|
||||||
|
-webkit-mask-image: linear-gradient(180deg, #000 80%, transparent);
|
||||||
|
}
|
||||||
|
}
|
8
client/src/components/common/ExpandableMarkdown/index.js
Normal file
8
client/src/components/common/ExpandableMarkdown/index.js
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
/*!
|
||||||
|
* Copyright (c) 2024 PLANKA Software GmbH
|
||||||
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||||||
|
*/
|
||||||
|
|
||||||
|
import ExpandableMarkdown from './ExpandableMarkdown';
|
||||||
|
|
||||||
|
export default ExpandableMarkdown;
|
|
@ -416,6 +416,8 @@ export default {
|
||||||
showCardsWithThisUser: 'Karten mit diesem Benutzer zeigen',
|
showCardsWithThisUser: 'Karten mit diesem Benutzer zeigen',
|
||||||
showDeactivated: 'Deaktivierte anzeigen',
|
showDeactivated: 'Deaktivierte anzeigen',
|
||||||
showFewerAttachments: 'Weniger Anhänge anzeigen',
|
showFewerAttachments: 'Weniger Anhänge anzeigen',
|
||||||
|
showLess: 'Weniger anzeigen',
|
||||||
|
showMore: 'Mehr anzeigen',
|
||||||
sortList_title: 'Liste sortieren',
|
sortList_title: 'Liste sortieren',
|
||||||
start: 'Start',
|
start: 'Start',
|
||||||
stop: 'Stopp',
|
stop: 'Stopp',
|
||||||
|
|
|
@ -424,6 +424,8 @@ export default {
|
||||||
showCardsWithThisUser: 'Show cards with this user',
|
showCardsWithThisUser: 'Show cards with this user',
|
||||||
showDeactivated: 'Show deactivated',
|
showDeactivated: 'Show deactivated',
|
||||||
showFewerAttachments: 'Show fewer attachments',
|
showFewerAttachments: 'Show fewer attachments',
|
||||||
|
showLess: 'Show less',
|
||||||
|
showMore: 'Show more',
|
||||||
sortList_title: 'Sort List',
|
sortList_title: 'Sort List',
|
||||||
start: 'Start',
|
start: 'Start',
|
||||||
stop: 'Stop',
|
stop: 'Stop',
|
||||||
|
|
|
@ -419,6 +419,8 @@ export default {
|
||||||
showCardsWithThisUser: 'Show cards with this user',
|
showCardsWithThisUser: 'Show cards with this user',
|
||||||
showDeactivated: 'Show deactivated',
|
showDeactivated: 'Show deactivated',
|
||||||
showFewerAttachments: 'Show fewer attachments',
|
showFewerAttachments: 'Show fewer attachments',
|
||||||
|
showLess: 'Show less',
|
||||||
|
showMore: 'Show more',
|
||||||
sortList_title: 'Sort List',
|
sortList_title: 'Sort List',
|
||||||
start: 'Start',
|
start: 'Start',
|
||||||
stop: 'Stop',
|
stop: 'Stop',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue