mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
comment locking initial
This commit is contained in:
parent
6eafc227da
commit
59d544c5f4
10 changed files with 139 additions and 44 deletions
|
@ -1,7 +1,6 @@
|
||||||
import React, { FC, HTMLAttributes, memo } from 'react';
|
import React, { FC, HTMLAttributes, memo } from 'react';
|
||||||
import { CommentWrapper } from '~/components/containers/CommentWrapper';
|
import { CommentWrapper } from '~/components/containers/CommentWrapper';
|
||||||
import { ICommentGroup } from '~/redux/types';
|
import { ICommentGroup, IComment } from '~/redux/types';
|
||||||
import { getURL } from '~/utils/dom';
|
|
||||||
import { CommentContent } from '~/components/node/CommentContent';
|
import { CommentContent } from '~/components/node/CommentContent';
|
||||||
import * as styles from './styles.scss';
|
import * as styles from './styles.scss';
|
||||||
|
|
||||||
|
@ -10,10 +9,12 @@ type IProps = HTMLAttributes<HTMLDivElement> & {
|
||||||
is_loading?: boolean;
|
is_loading?: boolean;
|
||||||
comment_group?: ICommentGroup;
|
comment_group?: ICommentGroup;
|
||||||
is_same?: boolean;
|
is_same?: boolean;
|
||||||
|
can_edit?: boolean;
|
||||||
|
onDelete: (id: IComment['id'], is_deteted: boolean) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
const Comment: FC<IProps> = memo(
|
const Comment: FC<IProps> = memo(
|
||||||
({ comment_group, is_empty, is_same, is_loading, className, ...props }) => {
|
({ comment_group, is_empty, is_same, is_loading, className, can_edit, onDelete, ...props }) => {
|
||||||
return (
|
return (
|
||||||
<CommentWrapper
|
<CommentWrapper
|
||||||
className={className}
|
className={className}
|
||||||
|
@ -25,7 +26,12 @@ const Comment: FC<IProps> = memo(
|
||||||
>
|
>
|
||||||
<div className={styles.wrap}>
|
<div className={styles.wrap}>
|
||||||
{comment_group.comments.map(comment => (
|
{comment_group.comments.map(comment => (
|
||||||
<CommentContent comment={comment} key={comment.id} />
|
<CommentContent
|
||||||
|
comment={comment}
|
||||||
|
key={comment.id}
|
||||||
|
can_edit={can_edit}
|
||||||
|
onDelete={onDelete}
|
||||||
|
/>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</CommentWrapper>
|
</CommentWrapper>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React, { FC, useMemo, memo, createElement } from 'react';
|
import React, { FC, useMemo, memo, createElement, useCallback } from 'react';
|
||||||
import { IComment, IFile } from '~/redux/types';
|
import { IComment, IFile } from '~/redux/types';
|
||||||
import path from 'ramda/es/path';
|
import path from 'ramda/es/path';
|
||||||
import { formatCommentText, getURL, getPrettyDate } from '~/utils/dom';
|
import { formatCommentText, getURL, getPrettyDate } from '~/utils/dom';
|
||||||
|
@ -12,12 +12,15 @@ import { AudioPlayer } from '~/components/media/AudioPlayer';
|
||||||
import classnames from 'classnames';
|
import classnames from 'classnames';
|
||||||
import { PRESETS } from '~/constants/urls';
|
import { PRESETS } from '~/constants/urls';
|
||||||
import { COMMENT_BLOCK_RENDERERS } from '~/constants/comment';
|
import { COMMENT_BLOCK_RENDERERS } from '~/constants/comment';
|
||||||
|
import { Icon } from '~/components/input/Icon';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
comment: IComment;
|
comment: IComment;
|
||||||
|
can_edit: boolean;
|
||||||
|
onDelete: (id: IComment['id'], is_deteted: boolean) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const CommentContent: FC<IProps> = memo(({ comment }) => {
|
const CommentContent: FC<IProps> = memo(({ comment, can_edit, onDelete }) => {
|
||||||
const groupped = useMemo<Record<keyof typeof UPLOAD_TYPES, IFile[]>>(
|
const groupped = useMemo<Record<keyof typeof UPLOAD_TYPES, IFile[]>>(
|
||||||
() =>
|
() =>
|
||||||
reduce(
|
reduce(
|
||||||
|
@ -28,10 +31,27 @@ const CommentContent: FC<IProps> = memo(({ comment }) => {
|
||||||
[comment]
|
[comment]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const onLockClick = useCallback(() => {
|
||||||
|
onDelete(comment.id, !comment.deleted_at);
|
||||||
|
}, [comment, onDelete]);
|
||||||
|
|
||||||
|
const lock = useMemo(
|
||||||
|
() =>
|
||||||
|
can_edit ? (
|
||||||
|
<div className={styles.lock}>
|
||||||
|
<div>
|
||||||
|
<Icon icon="close" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
) : null,
|
||||||
|
[can_edit, comment]
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<div className={styles.wrap}>
|
||||||
{comment.text && (
|
{comment.text && (
|
||||||
<Group className={styles.block}>
|
<Group className={styles.block}>
|
||||||
|
{lock}
|
||||||
{formatCommentText(path(['user', 'username'], comment), comment.text).map(
|
{formatCommentText(path(['user', 'username'], comment), comment.text).map(
|
||||||
(block, key) =>
|
(block, key) =>
|
||||||
COMMENT_BLOCK_RENDERERS[block.type] &&
|
COMMENT_BLOCK_RENDERERS[block.type] &&
|
||||||
|
@ -67,7 +87,7 @@ const CommentContent: FC<IProps> = memo(({ comment }) => {
|
||||||
))}
|
))}
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,51 @@
|
||||||
@import 'flexbin/flexbin.scss';
|
@import 'flexbin/flexbin.scss';
|
||||||
|
|
||||||
|
.wrap {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lock {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
border-radius: $radius;
|
||||||
|
transform: translate(10px, 0);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
touch-action: none;
|
||||||
|
transition: opacity 0.25s, transform 0.25s;
|
||||||
|
cursor: pointer;
|
||||||
|
background: $red;
|
||||||
|
|
||||||
|
& > div {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
border-radius: 100%;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include tablet {
|
||||||
|
right: 0;
|
||||||
|
border-radius: 0 0 0 $radius;
|
||||||
|
opacity: 1;
|
||||||
|
transform: translate(0, 0);
|
||||||
|
background: transparentize($red, $amount: 0.5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.block {
|
.block {
|
||||||
@include outer_shadow();
|
@include outer_shadow();
|
||||||
min-height: $comment_height;
|
min-height: $comment_height;
|
||||||
|
@ -20,6 +66,15 @@
|
||||||
&:last-child {
|
&:last-child {
|
||||||
border-bottom-right-radius: $radius;
|
border-bottom-right-radius: $radius;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.lock {
|
||||||
|
opacity: 1;
|
||||||
|
pointer-events: all;
|
||||||
|
touch-action: initial;
|
||||||
|
transform: translate(0, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.block_audio {
|
.block_audio {
|
||||||
|
|
|
@ -5,12 +5,16 @@ import { Filler } from '~/components/containers/Filler';
|
||||||
import * as styles from './styles.scss';
|
import * as styles from './styles.scss';
|
||||||
import { ICommentGroup, IComment } from '~/redux/types';
|
import { ICommentGroup, IComment } from '~/redux/types';
|
||||||
import { groupCommentsByUser } from '~/utils/fn';
|
import { groupCommentsByUser } from '~/utils/fn';
|
||||||
|
import { IUser } from '~/redux/auth/types';
|
||||||
|
import { canEditComment } from '~/utils/node';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
comments?: IComment[];
|
comments?: IComment[];
|
||||||
|
user: IUser;
|
||||||
|
onDelete: (id: IComment['id'], is_deteted: boolean) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const NodeComments: FC<IProps> = memo(({ comments }) => {
|
const NodeComments: FC<IProps> = memo(({ comments, user, onDelete }) => {
|
||||||
const groupped: ICommentGroup[] = useMemo(() => comments.reduce(groupCommentsByUser, []), [
|
const groupped: ICommentGroup[] = useMemo(() => comments.reduce(groupCommentsByUser, []), [
|
||||||
comments,
|
comments,
|
||||||
]);
|
]);
|
||||||
|
@ -18,7 +22,12 @@ const NodeComments: FC<IProps> = memo(({ comments }) => {
|
||||||
return (
|
return (
|
||||||
<div className={styles.wrap}>
|
<div className={styles.wrap}>
|
||||||
{groupped.map(group => (
|
{groupped.map(group => (
|
||||||
<Comment key={group.ids.join()} comment_group={group} />
|
<Comment
|
||||||
|
key={group.ids.join()}
|
||||||
|
comment_group={group}
|
||||||
|
can_edit={canEditComment(group, user)}
|
||||||
|
onDelete={onDelete}
|
||||||
|
/>
|
||||||
))}
|
))}
|
||||||
|
|
||||||
<Filler />
|
<Filler />
|
||||||
|
|
|
@ -1,29 +1,25 @@
|
||||||
import React, { FC, useEffect } from "react";
|
import React, { FC, useEffect } from 'react';
|
||||||
import { RouteComponentProps } from "react-router";
|
import { RouteComponentProps } from 'react-router';
|
||||||
import * as NODE_ACTIONS from "~/redux/node/actions";
|
import * as NODE_ACTIONS from '~/redux/node/actions';
|
||||||
import { selectNode } from "~/redux/node/selectors";
|
import { selectNode } from '~/redux/node/selectors';
|
||||||
import { selectUser } from "~/redux/auth/selectors";
|
import { selectUser } from '~/redux/auth/selectors';
|
||||||
import { connect } from "react-redux";
|
import { connect } from 'react-redux';
|
||||||
import { NodeComments } from "~/components/node/NodeComments";
|
import { NodeComments } from '~/components/node/NodeComments';
|
||||||
import styles from "./styles.scss";
|
import styles from './styles.scss';
|
||||||
import { CommentForm } from "~/components/node/CommentForm";
|
import { CommentForm } from '~/components/node/CommentForm';
|
||||||
import { Group } from "~/components/containers/Group";
|
import { Group } from '~/components/containers/Group';
|
||||||
import boris from "~/sprites/boris_robot.svg";
|
import boris from '~/sprites/boris_robot.svg';
|
||||||
import { NodeNoComments } from "~/components/node/NodeNoComments";
|
import { NodeNoComments } from '~/components/node/NodeNoComments';
|
||||||
import { getRandomPhrase } from "~/constants/phrases";
|
import { getRandomPhrase } from '~/constants/phrases';
|
||||||
|
|
||||||
const mapStateToProps = state => ({
|
const mapStateToProps = state => ({
|
||||||
node: selectNode(state),
|
node: selectNode(state),
|
||||||
user: selectUser(state)
|
user: selectUser(state),
|
||||||
});
|
});
|
||||||
|
|
||||||
const mapDispatchToProps = {
|
const mapDispatchToProps = {
|
||||||
nodeLoadNode: NODE_ACTIONS.nodeLoadNode,
|
nodeLoadNode: NODE_ACTIONS.nodeLoadNode,
|
||||||
nodeUpdateTags: NODE_ACTIONS.nodeUpdateTags,
|
nodeLockComment: NODE_ACTIONS.nodeLockComment,
|
||||||
nodeSetCoverImage: NODE_ACTIONS.nodeSetCoverImage,
|
|
||||||
nodeEdit: NODE_ACTIONS.nodeEdit,
|
|
||||||
nodeLike: NODE_ACTIONS.nodeLike,
|
|
||||||
nodeStar: NODE_ACTIONS.nodeStar
|
|
||||||
};
|
};
|
||||||
|
|
||||||
type IProps = ReturnType<typeof mapStateToProps> &
|
type IProps = ReturnType<typeof mapStateToProps> &
|
||||||
|
@ -33,21 +29,17 @@ type IProps = ReturnType<typeof mapStateToProps> &
|
||||||
const id = 696;
|
const id = 696;
|
||||||
|
|
||||||
const BorisLayoutUnconnected: FC<IProps> = ({
|
const BorisLayoutUnconnected: FC<IProps> = ({
|
||||||
node: {
|
node: { is_loading, is_loading_comments, comments = [] },
|
||||||
is_loading,
|
user,
|
||||||
is_loading_comments,
|
|
||||||
comments = [],
|
|
||||||
current: node,
|
|
||||||
related
|
|
||||||
},
|
|
||||||
user: { is_user },
|
user: { is_user },
|
||||||
nodeLoadNode
|
nodeLoadNode,
|
||||||
|
nodeLockComment,
|
||||||
}) => {
|
}) => {
|
||||||
const title = getRandomPhrase("BORIS_TITLE");
|
const title = getRandomPhrase('BORIS_TITLE');
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (is_loading) return;
|
if (is_loading) return;
|
||||||
nodeLoadNode(id, "DESC");
|
nodeLoadNode(id, 'DESC');
|
||||||
}, [nodeLoadNode, id]);
|
}, [nodeLoadNode, id]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -90,7 +82,7 @@ const BorisLayoutUnconnected: FC<IProps> = ({
|
||||||
{is_loading_comments && !comments.length ? (
|
{is_loading_comments && !comments.length ? (
|
||||||
<NodeNoComments is_loading />
|
<NodeNoComments is_loading />
|
||||||
) : (
|
) : (
|
||||||
<NodeComments comments={comments} />
|
<NodeComments comments={comments} user={user} onDelete={nodeLockComment} />
|
||||||
)}
|
)}
|
||||||
</Group>
|
</Group>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -20,6 +20,7 @@ import { selectUser } from '~/redux/auth/selectors';
|
||||||
import pick from 'ramda/es/pick';
|
import pick from 'ramda/es/pick';
|
||||||
import { NodeRelatedPlaceholder } from '~/components/node/NodeRelated/placeholder';
|
import { NodeRelatedPlaceholder } from '~/components/node/NodeRelated/placeholder';
|
||||||
import { NodeDeletedBadge } from '~/components/node/NodeDeletedBadge';
|
import { NodeDeletedBadge } from '~/components/node/NodeDeletedBadge';
|
||||||
|
import { IComment } from '~/redux/types';
|
||||||
|
|
||||||
const mapStateToProps = state => ({
|
const mapStateToProps = state => ({
|
||||||
node: selectNode(state),
|
node: selectNode(state),
|
||||||
|
@ -34,6 +35,7 @@ const mapDispatchToProps = {
|
||||||
nodeLike: NODE_ACTIONS.nodeLike,
|
nodeLike: NODE_ACTIONS.nodeLike,
|
||||||
nodeStar: NODE_ACTIONS.nodeStar,
|
nodeStar: NODE_ACTIONS.nodeStar,
|
||||||
nodeLock: NODE_ACTIONS.nodeLock,
|
nodeLock: NODE_ACTIONS.nodeLock,
|
||||||
|
nodeLockComment: NODE_ACTIONS.nodeLockComment,
|
||||||
};
|
};
|
||||||
|
|
||||||
type IProps = ReturnType<typeof mapStateToProps> &
|
type IProps = ReturnType<typeof mapStateToProps> &
|
||||||
|
@ -55,9 +57,8 @@ const NodeLayoutUnconnected: FC<IProps> = memo(
|
||||||
nodeStar,
|
nodeStar,
|
||||||
nodeLock,
|
nodeLock,
|
||||||
nodeSetCoverImage,
|
nodeSetCoverImage,
|
||||||
|
nodeLockComment,
|
||||||
}) => {
|
}) => {
|
||||||
// const is_loading = true;
|
|
||||||
|
|
||||||
const [layout, setLayout] = useState({});
|
const [layout, setLayout] = useState({});
|
||||||
|
|
||||||
const updateLayout = useCallback(() => setLayout({}), []);
|
const updateLayout = useCallback(() => setLayout({}), []);
|
||||||
|
@ -130,7 +131,7 @@ const NodeLayoutUnconnected: FC<IProps> = memo(
|
||||||
{is_loading || is_loading_comments || (!comments.length && !inline_block) ? (
|
{is_loading || is_loading_comments || (!comments.length && !inline_block) ? (
|
||||||
<NodeNoComments is_loading={is_loading_comments || is_loading} />
|
<NodeNoComments is_loading={is_loading_comments || is_loading} />
|
||||||
) : (
|
) : (
|
||||||
<NodeComments comments={comments} />
|
<NodeComments comments={comments} user={user} onDelete={nodeLockComment} />
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{is_user && !is_loading && <CommentForm id={0} />}
|
{is_user && !is_loading && <CommentForm id={0} />}
|
||||||
|
|
|
@ -102,6 +102,12 @@ export const nodeLock = (id: INode['id'], is_locked: boolean) => ({
|
||||||
is_locked,
|
is_locked,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const nodeLockComment = (id: IComment['id'], is_locked: boolean) => ({
|
||||||
|
type: NODE_ACTIONS.LOCK_COMMENT,
|
||||||
|
id,
|
||||||
|
is_locked,
|
||||||
|
});
|
||||||
|
|
||||||
export const nodeSetEditor = (editor: INode) => ({
|
export const nodeSetEditor = (editor: INode) => ({
|
||||||
type: NODE_ACTIONS.SET_EDITOR,
|
type: NODE_ACTIONS.SET_EDITOR,
|
||||||
editor,
|
editor,
|
||||||
|
|
|
@ -24,6 +24,7 @@ export const NODE_ACTIONS = {
|
||||||
LIKE: `${prefix}LIKE`,
|
LIKE: `${prefix}LIKE`,
|
||||||
STAR: `${prefix}STAR`,
|
STAR: `${prefix}STAR`,
|
||||||
LOCK: `${prefix}LOCK`,
|
LOCK: `${prefix}LOCK`,
|
||||||
|
LOCK_COMMENT: `${prefix}LOCK_COMMENT`,
|
||||||
CREATE: `${prefix}CREATE`,
|
CREATE: `${prefix}CREATE`,
|
||||||
|
|
||||||
SET_SAVE_ERRORS: `${prefix}SET_SAVE_ERRORS`,
|
SET_SAVE_ERRORS: `${prefix}SET_SAVE_ERRORS`,
|
||||||
|
|
|
@ -146,6 +146,7 @@ export interface IComment {
|
||||||
|
|
||||||
created_at?: string;
|
created_at?: string;
|
||||||
update_at?: string;
|
update_at?: string;
|
||||||
|
deleted_at?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type IMessage = Omit<IComment, 'user' | 'node'> & {
|
export type IMessage = Omit<IComment, 'user' | 'node'> & {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { USER_ROLES } from '~/redux/auth/constants';
|
import { USER_ROLES } from '~/redux/auth/constants';
|
||||||
import { INode } from '~/redux/types';
|
import { INode, IComment, ICommentGroup } from '~/redux/types';
|
||||||
import { IUser } from '~/redux/auth/types';
|
import { IUser } from '~/redux/auth/types';
|
||||||
import path from 'ramda/es/path';
|
import path from 'ramda/es/path';
|
||||||
import { NODE_TYPES } from '~/redux/node/constants';
|
import { NODE_TYPES } from '~/redux/node/constants';
|
||||||
|
@ -8,6 +8,10 @@ export const canEditNode = (node: Partial<INode>, user: Partial<IUser>): boolean
|
||||||
path(['role'], user) === USER_ROLES.ADMIN ||
|
path(['role'], user) === USER_ROLES.ADMIN ||
|
||||||
(path(['user', 'id'], node) && path(['user', 'id'], node) === path(['id'], user));
|
(path(['user', 'id'], node) && path(['user', 'id'], node) === path(['id'], user));
|
||||||
|
|
||||||
|
export const canEditComment = (comment: Partial<ICommentGroup>, user: Partial<IUser>): boolean =>
|
||||||
|
path(['role'], user) === USER_ROLES.ADMIN ||
|
||||||
|
(path(['user', 'id'], comment) && path(['user', 'id'], comment) === path(['id'], user));
|
||||||
|
|
||||||
export const canLikeNode = (node: Partial<INode>, user: Partial<IUser>): boolean =>
|
export const canLikeNode = (node: Partial<INode>, user: Partial<IUser>): boolean =>
|
||||||
path(['role'], user) && path(['role'], user) !== USER_ROLES.GUEST;
|
path(['role'], user) && path(['role'], user) !== USER_ROLES.GUEST;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue