Mobile view: Make comments expandable
This commit is contained in:
parent
a9a0bc9462
commit
bc4142e550
3 changed files with 52 additions and 3 deletions
|
@ -13,6 +13,7 @@ import usePersistedState from 'effects/use-persisted-state';
|
||||||
import { ENABLE_COMMENT_REACTIONS } from 'config';
|
import { ENABLE_COMMENT_REACTIONS } from 'config';
|
||||||
import Empty from 'component/common/empty';
|
import Empty from 'component/common/empty';
|
||||||
import debounce from 'util/debounce';
|
import debounce from 'util/debounce';
|
||||||
|
import { useIsMobile } from 'effects/use-screensize';
|
||||||
|
|
||||||
const DEBOUNCE_SCROLL_HANDLER_MS = 200;
|
const DEBOUNCE_SCROLL_HANDLER_MS = 200;
|
||||||
|
|
||||||
|
@ -74,6 +75,8 @@ function CommentList(props: Props) {
|
||||||
const DEFAULT_SORT = ENABLE_COMMENT_REACTIONS ? SORT_BY.POPULARITY : SORT_BY.NEWEST;
|
const DEFAULT_SORT = ENABLE_COMMENT_REACTIONS ? SORT_BY.POPULARITY : SORT_BY.NEWEST;
|
||||||
const [sort, setSort] = usePersistedState('comment-sort-by', DEFAULT_SORT);
|
const [sort, setSort] = usePersistedState('comment-sort-by', DEFAULT_SORT);
|
||||||
const [page, setPage] = React.useState(0);
|
const [page, setPage] = React.useState(0);
|
||||||
|
const isMobile = useIsMobile();
|
||||||
|
const [expandedComments, setExpandedComments] = React.useState(!isMobile);
|
||||||
const totalFetchedComments = allCommentIds ? allCommentIds.length : 0;
|
const totalFetchedComments = allCommentIds ? allCommentIds.length : 0;
|
||||||
|
|
||||||
// Display comments immediately if not fetching reactions
|
// Display comments immediately if not fetching reactions
|
||||||
|
@ -191,7 +194,7 @@ function CommentList(props: Props) {
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleCommentScroll = debounce(() => {
|
const handleCommentScroll = debounce(() => {
|
||||||
if (shouldFetchNextPage(page, topLevelTotalPages, window, document)) {
|
if (!isMobile && shouldFetchNextPage(page, topLevelTotalPages, window, document)) {
|
||||||
setPage(page + 1);
|
setPage(page + 1);
|
||||||
}
|
}
|
||||||
}, DEBOUNCE_SCROLL_HANDLER_MS);
|
}, DEBOUNCE_SCROLL_HANDLER_MS);
|
||||||
|
@ -205,6 +208,7 @@ function CommentList(props: Props) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, [
|
}, [
|
||||||
|
isMobile,
|
||||||
page,
|
page,
|
||||||
moreBelow,
|
moreBelow,
|
||||||
spinnerRef,
|
spinnerRef,
|
||||||
|
@ -279,7 +283,10 @@ function CommentList(props: Props) {
|
||||||
<Empty padded text={__('That was pretty deep. What do you think?')} />
|
<Empty padded text={__('That was pretty deep. What do you think?')} />
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<ul className="comments" ref={commentRef}>
|
<ul className={classnames({
|
||||||
|
'comments': expandedComments,
|
||||||
|
'comments--contracted': !expandedComments,
|
||||||
|
})} ref={commentRef}>
|
||||||
{topLevelComments &&
|
{topLevelComments &&
|
||||||
displayedComments &&
|
displayedComments &&
|
||||||
displayedComments.map((comment) => {
|
displayedComments.map((comment) => {
|
||||||
|
@ -307,7 +314,36 @@ function CommentList(props: Props) {
|
||||||
})}
|
})}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
{(isFetchingComments || moreBelow) && (
|
{isMobile && (
|
||||||
|
<div className="card__bottom-actions--comments">
|
||||||
|
{moreBelow && (
|
||||||
|
<Button
|
||||||
|
button="alt"
|
||||||
|
title={!expandedComments ? __('Expand Comments') : __('Load More')}
|
||||||
|
label={!expandedComments ? __('Expand Comments') : __('Load More')}
|
||||||
|
onClick={() => {
|
||||||
|
if (!expandedComments) {
|
||||||
|
setExpandedComments(true);
|
||||||
|
} else {
|
||||||
|
setPage(page + 1);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{expandedComments && (
|
||||||
|
<Button
|
||||||
|
button="alt"
|
||||||
|
title={__('Collapse Thread')}
|
||||||
|
label={__('Collapse Thread')}
|
||||||
|
onClick={() => {
|
||||||
|
setExpandedComments(false);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{(isFetchingComments || (!isMobile && moreBelow)) && (
|
||||||
<div className="main--empty" ref={spinnerRef}>
|
<div className="main--empty" ref={spinnerRef}>
|
||||||
<Spinner type="small" />
|
<Spinner type="small" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -391,6 +391,11 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.card__bottom-actions--comments {
|
||||||
|
@extend .card__bottom-actions;
|
||||||
|
margin-top: var(--spacing-s);
|
||||||
|
}
|
||||||
|
|
||||||
.card__multi-pane {
|
.card__multi-pane {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,14 @@ $thumbnailWidthSmall: 1rem;
|
||||||
margin-top: var(--spacing-l);
|
margin-top: var(--spacing-l);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.comments--contracted {
|
||||||
|
@extend .comments;
|
||||||
|
max-height: 5rem;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-mask-image: -webkit-gradient(linear, left 30%, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
|
||||||
|
overflow-wrap: anywhere;
|
||||||
|
}
|
||||||
|
|
||||||
.comments--replies {
|
.comments--replies {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin-left: var(--spacing-s);
|
margin-left: var(--spacing-s);
|
||||||
|
|
Loading…
Reference in a new issue