2019-05-17 20:21:07 +02:00
|
|
|
// @flow
|
2020-10-06 21:35:13 +02:00
|
|
|
import * as REACTION_TYPES from 'constants/reactions';
|
2020-09-30 20:46:17 +02:00
|
|
|
import * as ICONS from 'constants/icons';
|
2021-07-15 16:43:28 +02:00
|
|
|
import { COMMENT_PAGE_SIZE_TOP_LEVEL, SORT_BY } from 'constants/comment';
|
2019-06-27 01:59:27 +02:00
|
|
|
import React, { useEffect } from 'react';
|
2020-10-06 21:35:13 +02:00
|
|
|
import classnames from 'classnames';
|
|
|
|
import CommentView from 'component/comment';
|
2020-05-25 20:45:43 +02:00
|
|
|
import Spinner from 'component/spinner';
|
2020-08-24 19:35:21 +02:00
|
|
|
import Button from 'component/button';
|
|
|
|
import Card from 'component/common/card';
|
|
|
|
import CommentCreate from 'component/commentCreate';
|
2020-10-01 20:43:44 +02:00
|
|
|
import usePersistedState from 'effects/use-persisted-state';
|
2020-09-30 17:59:05 +02:00
|
|
|
import { ENABLE_COMMENT_REACTIONS } from 'config';
|
2020-12-04 01:10:23 +01:00
|
|
|
import Empty from 'component/common/empty';
|
2021-07-15 16:43:28 +02:00
|
|
|
import debounce from 'util/debounce';
|
2021-07-15 15:25:48 +02:00
|
|
|
import { useIsMobile } from 'effects/use-screensize';
|
2021-07-15 16:43:28 +02:00
|
|
|
|
|
|
|
const DEBOUNCE_SCROLL_HANDLER_MS = 200;
|
|
|
|
|
|
|
|
function scaleToDevicePixelRatio(value) {
|
|
|
|
const devicePixelRatio = window.devicePixelRatio || 1.0;
|
|
|
|
if (devicePixelRatio < 1.0) {
|
|
|
|
return Math.ceil(value / devicePixelRatio);
|
|
|
|
}
|
|
|
|
return Math.ceil(value * devicePixelRatio);
|
|
|
|
}
|
2019-05-17 20:21:07 +02:00
|
|
|
|
2019-06-27 01:59:27 +02:00
|
|
|
type Props = {
|
2021-07-15 16:43:28 +02:00
|
|
|
allCommentIds: any,
|
|
|
|
topLevelComments: Array<Comment>,
|
|
|
|
topLevelTotalPages: number,
|
2021-06-03 07:57:50 +02:00
|
|
|
commentsDisabledBySettings: boolean,
|
2021-07-15 16:43:28 +02:00
|
|
|
fetchTopLevelComments: (string, number, number, number) => void,
|
|
|
|
fetchComment: (string) => void,
|
|
|
|
fetchReacts: (Array<string>) => Promise<any>,
|
|
|
|
resetComments: (string) => void,
|
2019-05-17 20:21:07 +02:00
|
|
|
uri: string,
|
2020-01-30 02:02:21 +01:00
|
|
|
claimIsMine: boolean,
|
|
|
|
myChannels: ?Array<ChannelClaim>,
|
2020-05-25 20:45:43 +02:00
|
|
|
isFetchingComments: boolean,
|
2021-07-15 18:13:01 +02:00
|
|
|
isFetchingReacts: boolean,
|
2021-07-15 16:43:28 +02:00
|
|
|
linkedCommentId?: string,
|
2020-09-30 20:46:17 +02:00
|
|
|
totalComments: number,
|
2020-10-02 23:17:12 +02:00
|
|
|
fetchingChannels: boolean,
|
2021-07-15 16:43:28 +02:00
|
|
|
myReactsByCommentId: ?{ [string]: Array<string> }, // "CommentId:MyChannelId" -> reaction array (note the ID concatenation)
|
|
|
|
othersReactsById: ?{ [string]: { [REACTION_TYPES.LIKE | REACTION_TYPES.DISLIKE]: number } },
|
2021-02-09 17:05:56 +01:00
|
|
|
activeChannelId: ?string,
|
2019-05-17 20:21:07 +02:00
|
|
|
};
|
|
|
|
|
2019-06-27 01:59:27 +02:00
|
|
|
function CommentList(props: Props) {
|
2020-09-29 16:10:23 +02:00
|
|
|
const {
|
2021-07-15 16:43:28 +02:00
|
|
|
allCommentIds,
|
|
|
|
fetchTopLevelComments,
|
|
|
|
fetchComment,
|
2020-10-01 20:43:44 +02:00
|
|
|
fetchReacts,
|
2021-07-15 16:43:28 +02:00
|
|
|
resetComments,
|
2020-09-29 16:10:23 +02:00
|
|
|
uri,
|
2021-07-15 16:43:28 +02:00
|
|
|
topLevelComments,
|
|
|
|
topLevelTotalPages,
|
2021-06-03 07:57:50 +02:00
|
|
|
commentsDisabledBySettings,
|
2020-09-29 16:10:23 +02:00
|
|
|
claimIsMine,
|
|
|
|
myChannels,
|
|
|
|
isFetchingComments,
|
2021-07-15 18:13:01 +02:00
|
|
|
isFetchingReacts,
|
2021-07-15 16:43:28 +02:00
|
|
|
linkedCommentId,
|
2020-09-30 20:46:17 +02:00
|
|
|
totalComments,
|
2020-10-02 23:17:12 +02:00
|
|
|
fetchingChannels,
|
2021-07-15 16:43:28 +02:00
|
|
|
myReactsByCommentId,
|
|
|
|
othersReactsById,
|
2021-02-09 17:05:56 +01:00
|
|
|
activeChannelId,
|
2020-09-29 16:10:23 +02:00
|
|
|
} = props;
|
2021-07-15 16:43:28 +02:00
|
|
|
|
2020-10-01 20:43:44 +02:00
|
|
|
const commentRef = React.useRef();
|
2020-10-06 21:35:13 +02:00
|
|
|
const spinnerRef = React.useRef();
|
2021-07-15 16:43:28 +02:00
|
|
|
const DEFAULT_SORT = ENABLE_COMMENT_REACTIONS ? SORT_BY.POPULARITY : SORT_BY.NEWEST;
|
|
|
|
const [sort, setSort] = usePersistedState('comment-sort-by', DEFAULT_SORT);
|
|
|
|
const [page, setPage] = React.useState(0);
|
2021-07-15 15:25:48 +02:00
|
|
|
const isMobile = useIsMobile();
|
|
|
|
const [expandedComments, setExpandedComments] = React.useState(!isMobile);
|
2021-07-15 16:43:28 +02:00
|
|
|
const totalFetchedComments = allCommentIds ? allCommentIds.length : 0;
|
2020-10-28 03:07:40 +01:00
|
|
|
|
2020-10-06 21:35:13 +02:00
|
|
|
// Display comments immediately if not fetching reactions
|
|
|
|
// If not, wait to show comments until reactions are fetched
|
2020-10-20 19:10:02 +02:00
|
|
|
const [readyToDisplayComments, setReadyToDisplayComments] = React.useState(
|
2021-07-15 16:43:28 +02:00
|
|
|
Boolean(othersReactsById) || !ENABLE_COMMENT_REACTIONS
|
2020-10-20 19:10:02 +02:00
|
|
|
);
|
2021-07-15 16:43:28 +02:00
|
|
|
|
2020-12-04 01:10:23 +01:00
|
|
|
const hasNoComments = !totalComments;
|
2021-07-15 16:43:28 +02:00
|
|
|
const moreBelow = page < topLevelTotalPages;
|
|
|
|
|
2020-10-07 22:18:16 +02:00
|
|
|
const isMyComment = (channelId: string): boolean => {
|
2020-01-30 02:02:21 +01:00
|
|
|
if (myChannels != null && channelId != null) {
|
|
|
|
for (let i = 0; i < myChannels.length; i++) {
|
|
|
|
if (myChannels[i].claim_id === channelId) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2021-07-15 16:43:28 +02:00
|
|
|
function changeSort(newSort) {
|
|
|
|
if (sort !== newSort) {
|
|
|
|
setSort(newSort);
|
|
|
|
setPage(0); // Invalidate existing comments
|
2020-08-24 19:35:21 +02:00
|
|
|
}
|
2021-07-15 16:43:28 +02:00
|
|
|
}
|
2020-08-24 19:35:21 +02:00
|
|
|
|
2021-07-15 16:43:28 +02:00
|
|
|
// Reset comments
|
2019-06-27 01:59:27 +02:00
|
|
|
useEffect(() => {
|
2021-07-15 16:43:28 +02:00
|
|
|
if (page === 0) {
|
|
|
|
resetComments(uri);
|
|
|
|
setPage(1);
|
|
|
|
}
|
|
|
|
}, [page, uri, resetComments]);
|
2019-06-27 01:59:27 +02:00
|
|
|
|
2021-07-15 16:43:28 +02:00
|
|
|
// Fetch top-level comments
|
2020-10-01 20:43:44 +02:00
|
|
|
useEffect(() => {
|
2021-07-15 16:43:28 +02:00
|
|
|
if (page !== 0) {
|
|
|
|
if (page === 1 && linkedCommentId) {
|
|
|
|
fetchComment(linkedCommentId);
|
|
|
|
}
|
|
|
|
|
|
|
|
fetchTopLevelComments(uri, page, COMMENT_PAGE_SIZE_TOP_LEVEL, sort);
|
|
|
|
}
|
|
|
|
}, [fetchTopLevelComments, uri, page, resetComments, sort, linkedCommentId, fetchComment]);
|
|
|
|
|
|
|
|
// Fetch reacts
|
|
|
|
useEffect(() => {
|
2021-07-15 18:13:01 +02:00
|
|
|
if (totalFetchedComments > 0 && ENABLE_COMMENT_REACTIONS && !fetchingChannels && !isFetchingReacts) {
|
2021-07-15 16:43:28 +02:00
|
|
|
let idsForReactionFetch;
|
|
|
|
|
|
|
|
if (!othersReactsById || !myReactsByCommentId) {
|
|
|
|
idsForReactionFetch = allCommentIds;
|
|
|
|
} else {
|
|
|
|
idsForReactionFetch = allCommentIds.filter((commentId) => {
|
|
|
|
const key = activeChannelId ? `${commentId}:${activeChannelId}` : commentId;
|
|
|
|
return !othersReactsById[key] || (activeChannelId && !myReactsByCommentId[key]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-07-20 05:14:56 +02:00
|
|
|
if (idsForReactionFetch.length !== 0) {
|
2021-07-15 16:43:28 +02:00
|
|
|
fetchReacts(idsForReactionFetch)
|
|
|
|
.then(() => {
|
|
|
|
setReadyToDisplayComments(true);
|
|
|
|
})
|
|
|
|
.catch(() => setReadyToDisplayComments(true));
|
|
|
|
}
|
2021-06-17 05:11:40 +02:00
|
|
|
}
|
2021-07-15 16:43:28 +02:00
|
|
|
}, [
|
|
|
|
totalFetchedComments,
|
|
|
|
allCommentIds,
|
|
|
|
othersReactsById,
|
|
|
|
myReactsByCommentId,
|
|
|
|
fetchReacts,
|
|
|
|
uri,
|
|
|
|
activeChannelId,
|
|
|
|
fetchingChannels,
|
2021-07-15 18:13:01 +02:00
|
|
|
isFetchingReacts,
|
2021-07-15 16:43:28 +02:00
|
|
|
]);
|
2020-09-29 16:10:23 +02:00
|
|
|
|
2021-07-15 16:43:28 +02:00
|
|
|
// Scroll to linked-comment
|
2020-08-24 19:35:21 +02:00
|
|
|
useEffect(() => {
|
2020-10-08 19:01:33 +02:00
|
|
|
if (readyToDisplayComments && linkedCommentId && commentRef && commentRef.current) {
|
2020-08-24 19:35:21 +02:00
|
|
|
commentRef.current.scrollIntoView({ block: 'start' });
|
2021-07-15 16:43:28 +02:00
|
|
|
window.scrollBy(0, -125);
|
2020-08-24 19:35:21 +02:00
|
|
|
}
|
2020-10-08 19:01:33 +02:00
|
|
|
}, [readyToDisplayComments, linkedCommentId]);
|
2020-02-05 04:55:00 +01:00
|
|
|
|
2021-07-15 16:43:28 +02:00
|
|
|
// Infinite scroll
|
2020-10-05 23:25:23 +02:00
|
|
|
useEffect(() => {
|
2021-07-15 16:43:28 +02:00
|
|
|
function shouldFetchNextPage(page, topLevelTotalPages, window, document, yPrefetchPx = 1000) {
|
|
|
|
if (!spinnerRef || !spinnerRef.current) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const rect = spinnerRef.current.getBoundingClientRect(); // $FlowFixMe
|
|
|
|
const windowH = window.innerHeight || document.documentElement.clientHeight; // $FlowFixMe
|
|
|
|
const windowW = window.innerWidth || document.documentElement.clientWidth; // $FlowFixMe
|
|
|
|
|
|
|
|
const isApproachingViewport = yPrefetchPx !== 0 && rect.top < windowH + scaleToDevicePixelRatio(yPrefetchPx);
|
2020-10-06 21:35:13 +02:00
|
|
|
|
|
|
|
const isInViewport =
|
2021-07-15 16:43:28 +02:00
|
|
|
rect.width > 0 &&
|
|
|
|
rect.height > 0 &&
|
|
|
|
rect.bottom >= 0 &&
|
|
|
|
rect.right >= 0 &&
|
2020-10-06 21:35:13 +02:00
|
|
|
// $FlowFixMe
|
2021-07-15 16:43:28 +02:00
|
|
|
rect.top <= windowH &&
|
2020-10-06 21:35:13 +02:00
|
|
|
// $FlowFixMe
|
2021-07-15 16:43:28 +02:00
|
|
|
rect.left <= windowW;
|
2021-07-14 05:06:47 +02:00
|
|
|
|
2021-07-15 16:43:28 +02:00
|
|
|
return (isInViewport || isApproachingViewport) && page < topLevelTotalPages;
|
2021-07-15 16:23:26 +02:00
|
|
|
}
|
2020-10-05 23:25:23 +02:00
|
|
|
|
2021-07-15 16:43:28 +02:00
|
|
|
const handleCommentScroll = debounce(() => {
|
2021-07-15 15:25:48 +02:00
|
|
|
if (!isMobile && shouldFetchNextPage(page, topLevelTotalPages, window, document)) {
|
2021-07-15 16:43:28 +02:00
|
|
|
setPage(page + 1);
|
|
|
|
}
|
|
|
|
}, DEBOUNCE_SCROLL_HANDLER_MS);
|
2021-07-15 16:23:26 +02:00
|
|
|
|
2021-07-15 16:43:28 +02:00
|
|
|
if (!isFetchingComments && readyToDisplayComments && moreBelow && spinnerRef && spinnerRef.current) {
|
|
|
|
if (shouldFetchNextPage(page, topLevelTotalPages, window, document, 0)) {
|
|
|
|
setPage(page + 1);
|
2021-07-14 05:06:47 +02:00
|
|
|
} else {
|
2021-07-15 16:43:28 +02:00
|
|
|
window.addEventListener('scroll', handleCommentScroll);
|
|
|
|
return () => window.removeEventListener('scroll', handleCommentScroll);
|
2021-07-14 05:06:47 +02:00
|
|
|
}
|
2020-10-05 23:25:23 +02:00
|
|
|
}
|
2021-07-15 16:43:28 +02:00
|
|
|
}, [
|
2021-07-15 15:25:48 +02:00
|
|
|
isMobile,
|
2021-07-15 16:43:28 +02:00
|
|
|
page,
|
|
|
|
moreBelow,
|
|
|
|
spinnerRef,
|
|
|
|
isFetchingComments,
|
|
|
|
readyToDisplayComments,
|
|
|
|
topLevelComments.length,
|
|
|
|
topLevelTotalPages,
|
|
|
|
]);
|
2020-02-05 04:55:00 +01:00
|
|
|
|
2021-07-15 16:43:28 +02:00
|
|
|
const displayedComments = readyToDisplayComments ? topLevelComments : [];
|
2020-10-06 21:35:13 +02:00
|
|
|
|
2019-06-27 01:59:27 +02:00
|
|
|
return (
|
2020-08-24 19:35:21 +02:00
|
|
|
<Card
|
2020-08-31 18:28:28 +02:00
|
|
|
title={
|
|
|
|
totalComments > 0
|
|
|
|
? totalComments === 1
|
|
|
|
? __('1 comment')
|
|
|
|
: __('%total_comments% comments', { total_comments: totalComments })
|
|
|
|
: __('Leave a comment')
|
|
|
|
}
|
2020-10-02 06:47:54 +02:00
|
|
|
titleActions={
|
2020-10-06 21:35:13 +02:00
|
|
|
<>
|
|
|
|
{totalComments > 1 && ENABLE_COMMENT_REACTIONS && (
|
|
|
|
<span className="comment__sort">
|
|
|
|
<Button
|
|
|
|
button="alt"
|
2020-10-07 13:16:13 +02:00
|
|
|
label={__('Best')}
|
2020-10-14 22:42:35 +02:00
|
|
|
icon={ICONS.BEST}
|
|
|
|
iconSize={18}
|
2021-07-15 16:43:28 +02:00
|
|
|
onClick={() => changeSort(SORT_BY.POPULARITY)}
|
2020-10-06 21:35:13 +02:00
|
|
|
className={classnames(`button-toggle`, {
|
2021-07-15 16:43:28 +02:00
|
|
|
'button-toggle--active': sort === SORT_BY.POPULARITY,
|
2020-10-06 21:35:13 +02:00
|
|
|
})}
|
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
button="alt"
|
2020-10-07 13:16:13 +02:00
|
|
|
label={__('Controversial')}
|
2020-10-06 21:35:13 +02:00
|
|
|
icon={ICONS.CONTROVERSIAL}
|
2020-10-14 22:42:35 +02:00
|
|
|
iconSize={18}
|
2021-07-15 16:43:28 +02:00
|
|
|
onClick={() => changeSort(SORT_BY.CONTROVERSY)}
|
2020-10-06 21:35:13 +02:00
|
|
|
className={classnames(`button-toggle`, {
|
2021-07-15 16:43:28 +02:00
|
|
|
'button-toggle--active': sort === SORT_BY.CONTROVERSY,
|
2020-10-06 21:35:13 +02:00
|
|
|
})}
|
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
button="alt"
|
2020-10-07 13:16:13 +02:00
|
|
|
label={__('New')}
|
2020-10-06 21:35:13 +02:00
|
|
|
icon={ICONS.NEW}
|
2020-10-14 22:42:35 +02:00
|
|
|
iconSize={18}
|
2021-07-15 16:43:28 +02:00
|
|
|
onClick={() => changeSort(SORT_BY.NEWEST)}
|
2020-10-06 21:35:13 +02:00
|
|
|
className={classnames(`button-toggle`, {
|
2021-07-15 16:43:28 +02:00
|
|
|
'button-toggle--active': sort === SORT_BY.NEWEST,
|
2020-10-06 21:35:13 +02:00
|
|
|
})}
|
|
|
|
/>
|
|
|
|
</span>
|
|
|
|
)}
|
2020-10-27 17:24:31 +01:00
|
|
|
<Button
|
|
|
|
button="alt"
|
|
|
|
icon={ICONS.REFRESH}
|
|
|
|
title={__('Refresh')}
|
|
|
|
onClick={() => {
|
2021-07-15 16:43:28 +02:00
|
|
|
setPage(0);
|
2020-10-27 17:24:31 +01:00
|
|
|
}}
|
|
|
|
/>
|
2020-10-06 21:35:13 +02:00
|
|
|
</>
|
2020-10-02 06:47:54 +02:00
|
|
|
}
|
2020-08-24 19:35:21 +02:00
|
|
|
actions={
|
|
|
|
<>
|
2021-07-15 16:43:28 +02:00
|
|
|
<CommentCreate uri={uri} />
|
2020-10-07 21:14:52 +02:00
|
|
|
|
2021-06-03 07:57:50 +02:00
|
|
|
{!commentsDisabledBySettings && !isFetchingComments && hasNoComments && (
|
2020-12-16 19:31:07 +01:00
|
|
|
<Empty padded text={__('That was pretty deep. What do you think?')} />
|
|
|
|
)}
|
2020-10-07 21:14:52 +02:00
|
|
|
|
2021-07-15 15:25:48 +02:00
|
|
|
<ul className={classnames({
|
|
|
|
'comments': expandedComments,
|
|
|
|
'comments--contracted': !expandedComments,
|
|
|
|
})} ref={commentRef}>
|
2021-07-15 16:43:28 +02:00
|
|
|
{topLevelComments &&
|
2020-08-24 19:35:21 +02:00
|
|
|
displayedComments &&
|
2021-04-23 21:59:48 +02:00
|
|
|
displayedComments.map((comment) => {
|
2020-08-24 19:35:21 +02:00
|
|
|
return (
|
2020-10-06 21:35:13 +02:00
|
|
|
<CommentView
|
2020-09-11 19:51:31 +02:00
|
|
|
isTopLevel
|
2020-10-07 21:14:52 +02:00
|
|
|
threadDepth={3}
|
2020-09-11 19:51:31 +02:00
|
|
|
key={comment.comment_id}
|
|
|
|
uri={uri}
|
|
|
|
authorUri={comment.channel_url}
|
|
|
|
author={comment.channel_name}
|
|
|
|
claimId={comment.claim_id}
|
|
|
|
commentId={comment.comment_id}
|
|
|
|
message={comment.comment}
|
|
|
|
timePosted={comment.timestamp * 1000}
|
|
|
|
claimIsMine={claimIsMine}
|
|
|
|
commentIsMine={comment.channel_id && isMyComment(comment.channel_id)}
|
2021-07-15 16:43:28 +02:00
|
|
|
linkedCommentId={linkedCommentId}
|
2020-10-08 17:31:36 +02:00
|
|
|
isPinned={comment.is_pinned}
|
2021-04-23 21:59:48 +02:00
|
|
|
supportAmount={comment.support_amount}
|
2021-07-15 16:43:28 +02:00
|
|
|
numDirectReplies={comment.replies}
|
2021-07-06 22:28:29 +02:00
|
|
|
isFiat={comment.is_fiat}
|
2020-09-11 19:51:31 +02:00
|
|
|
/>
|
2020-08-24 19:35:21 +02:00
|
|
|
);
|
|
|
|
})}
|
|
|
|
</ul>
|
2020-10-07 21:14:52 +02:00
|
|
|
|
2021-07-15 15:25:48 +02:00
|
|
|
{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)) && (
|
2020-10-06 21:35:13 +02:00
|
|
|
<div className="main--empty" ref={spinnerRef}>
|
2020-10-05 23:25:23 +02:00
|
|
|
<Spinner type="small" />
|
2020-08-24 19:35:21 +02:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
/>
|
2019-06-27 01:59:27 +02:00
|
|
|
);
|
2019-05-17 20:21:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export default CommentList;
|