parent
4287003509
commit
264a85d837
16 changed files with 41 additions and 183 deletions
|
@ -136,7 +136,7 @@
|
|||
"imagesloaded": "^4.1.4",
|
||||
"json-loader": "^0.5.4",
|
||||
"lbry-format": "https://github.com/lbryio/lbry-format.git",
|
||||
"lbry-redux": "lbryio/lbry-redux#a08fc63fe2ee46383ae7e4beb11efe72522a1dd9",
|
||||
"lbry-redux": "lbryio/lbry-redux#ba5d6b84bec6bdb2f0a1a6b23e695212c65f650e",
|
||||
"lbryinc": "lbryio/lbryinc#db0663fcc4a64cb082b6edc5798fafa67eb4300f",
|
||||
"lint-staged": "^7.0.2",
|
||||
"localforage": "^1.7.1",
|
||||
|
|
|
@ -1453,9 +1453,6 @@
|
|||
"lbry.com": "lbry.com",
|
||||
"lbry.tech": "lbry.tech",
|
||||
"GitHub": "GitHub",
|
||||
"Pin": "Pin",
|
||||
"Unpin": "Unpin",
|
||||
"LBRY leveled up": "LBRY leveled up",
|
||||
"This link leads to an external website.": "This link leads to an external website.",
|
||||
"--end--": "--end--"
|
||||
}
|
||||
|
|
|
@ -6,39 +6,26 @@ import {
|
|||
makeSelectThumbnailForUri,
|
||||
makeSelectIsUriResolving,
|
||||
selectMyChannelClaims,
|
||||
makeSelectMyChannelPermUrlForName,
|
||||
makeSelectChannelPermUrlForClaimUri,
|
||||
} from 'lbry-redux';
|
||||
import { doCommentAbandon, doCommentUpdate, doCommentPin, doCommentList } from 'redux/actions/comments';
|
||||
import { doCommentAbandon, doCommentUpdate } from 'redux/actions/comments';
|
||||
import { doToggleBlockChannel } from 'redux/actions/blocked';
|
||||
import { selectChannelIsBlocked } from 'redux/selectors/blocked';
|
||||
import { doToast } from 'redux/actions/notifications';
|
||||
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
||||
import {
|
||||
selectIsFetchingComments,
|
||||
makeSelectOthersReactionsForComment,
|
||||
selectCommentChannel,
|
||||
} from 'redux/selectors/comments';
|
||||
import { selectIsFetchingComments, makeSelectOthersReactionsForComment } from 'redux/selectors/comments';
|
||||
import Comment from './view';
|
||||
|
||||
const select = (state, props) => {
|
||||
const channel = selectCommentChannel(state);
|
||||
|
||||
return {
|
||||
activeChannel: channel,
|
||||
pending: props.authorUri && makeSelectClaimIsPending(props.authorUri)(state),
|
||||
channel: props.authorUri && makeSelectClaimForUri(props.authorUri)(state),
|
||||
isResolvingUri: props.authorUri && makeSelectIsUriResolving(props.authorUri)(state),
|
||||
thumbnail: props.authorUri && makeSelectThumbnailForUri(props.authorUri)(state),
|
||||
channelIsBlocked: props.authorUri && selectChannelIsBlocked(props.authorUri)(state),
|
||||
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
||||
isFetchingComments: selectIsFetchingComments(state),
|
||||
myChannels: selectMyChannelClaims(state),
|
||||
othersReacts: makeSelectOthersReactionsForComment(props.commentId)(state),
|
||||
commentIdentityChannel: makeSelectMyChannelPermUrlForName(channel)(state),
|
||||
contentChannel: makeSelectChannelPermUrlForClaimUri(props.uri)(state),
|
||||
};
|
||||
};
|
||||
const select = (state, props) => ({
|
||||
pending: props.authorUri && makeSelectClaimIsPending(props.authorUri)(state),
|
||||
channel: props.authorUri && makeSelectClaimForUri(props.authorUri)(state),
|
||||
isResolvingUri: props.authorUri && makeSelectIsUriResolving(props.authorUri)(state),
|
||||
thumbnail: props.authorUri && makeSelectThumbnailForUri(props.authorUri)(state),
|
||||
channelIsBlocked: props.authorUri && selectChannelIsBlocked(props.authorUri)(state),
|
||||
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
||||
isFetchingComments: selectIsFetchingComments(state),
|
||||
myChannels: selectMyChannelClaims(state),
|
||||
othersReacts: makeSelectOthersReactionsForComment(props.commentId)(state),
|
||||
});
|
||||
|
||||
const perform = dispatch => ({
|
||||
resolveUri: uri => dispatch(doResolveUri(uri)),
|
||||
|
@ -46,8 +33,6 @@ const perform = dispatch => ({
|
|||
deleteComment: commentId => dispatch(doCommentAbandon(commentId)),
|
||||
blockChannel: channelUri => dispatch(doToggleBlockChannel(channelUri)),
|
||||
doToast: options => dispatch(doToast(options)),
|
||||
pinComment: (commentId, remove) => dispatch(doCommentPin(commentId, remove)),
|
||||
fetchComments: uri => dispatch(doCommentList(uri)),
|
||||
});
|
||||
|
||||
export default connect(select, perform)(Comment);
|
||||
|
|
|
@ -49,10 +49,6 @@ type Props = {
|
|||
like: number,
|
||||
dislike: number,
|
||||
},
|
||||
pinComment: (string, boolean) => Promise<any>,
|
||||
fetchComments: string => void,
|
||||
commentIdentityChannel: any,
|
||||
contentChannel: any,
|
||||
};
|
||||
|
||||
const LENGTH_TO_COLLAPSE = 300;
|
||||
|
@ -82,11 +78,7 @@ function Comment(props: Props) {
|
|||
isTopLevel,
|
||||
threadDepth,
|
||||
isPinned,
|
||||
pinComment,
|
||||
fetchComments,
|
||||
othersReacts,
|
||||
commentIdentityChannel,
|
||||
contentChannel,
|
||||
} = props;
|
||||
const {
|
||||
push,
|
||||
|
@ -147,10 +139,6 @@ function Comment(props: Props) {
|
|||
setCommentValue(!SIMPLE_SITE && advancedEditor ? event : event.target.value);
|
||||
}
|
||||
|
||||
function handlePinComment(commentId, remove) {
|
||||
pinComment(commentId, remove).then(() => fetchComments(uri));
|
||||
}
|
||||
|
||||
function handleSubmit() {
|
||||
updateComment(commentId, editedMessage);
|
||||
setEditing(false);
|
||||
|
@ -216,7 +204,7 @@ function Comment(props: Props) {
|
|||
|
||||
{isPinned && (
|
||||
<span className="comment__pin">
|
||||
<Icon icon={ICONS.PIN} size={14} />
|
||||
<Icon icon={ICONS.PIN} />
|
||||
{channelOwnerOfContent
|
||||
? __('Pinned by @%channel%', { channel: channelOwnerOfContent })
|
||||
: __('Pinned by creator')}
|
||||
|
@ -235,34 +223,18 @@ function Comment(props: Props) {
|
|||
<MenuList className="menu__list--comments">
|
||||
{commentIsMine ? (
|
||||
<>
|
||||
<MenuItem className="comment__menu-option menu__link" onSelect={() => setEditing(true)}>
|
||||
<Icon aria-hidden icon={ICONS.EDIT} />
|
||||
<MenuItem className="comment__menu-option" onSelect={() => setEditing(true)}>
|
||||
{__('Edit')}
|
||||
</MenuItem>
|
||||
<MenuItem className="comment__menu-option menu__link" onSelect={() => deleteComment(commentId)}>
|
||||
<Icon aria-hidden icon={ICONS.DELETE} />
|
||||
<MenuItem className="comment__menu-option" onSelect={() => deleteComment(commentId)}>
|
||||
{__('Delete')}
|
||||
</MenuItem>
|
||||
</>
|
||||
) : (
|
||||
<MenuItem className="comment__menu-option menu__link" onSelect={() => blockChannel(authorUri)}>
|
||||
<Icon aria-hidden icon={ICONS.NO} />
|
||||
<MenuItem className="comment__menu-option" onSelect={() => blockChannel(authorUri)}>
|
||||
{__('Block Channel')}
|
||||
</MenuItem>
|
||||
)}
|
||||
{commentIdentityChannel === contentChannel && (
|
||||
<MenuItem
|
||||
className="comment__menu-option menu__link"
|
||||
onSelect={
|
||||
isPinned ? () => handlePinComment(commentId, true) : () => handlePinComment(commentId, false)
|
||||
}
|
||||
>
|
||||
<span className={'button__content'}>
|
||||
<Icon aria-hidden icon={ICONS.PIN} className={'icon'} />
|
||||
{isPinned ? __('Unpin') : __('Pin')}
|
||||
</span>
|
||||
</MenuItem>
|
||||
)}
|
||||
</MenuList>
|
||||
</Menu>
|
||||
</div>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { connect } from 'react-redux';
|
||||
import { makeSelectClaimForUri, selectMyChannelClaims, selectFetchingMyChannels } from 'lbry-redux';
|
||||
import { selectIsPostingComment, selectCommentChannel } from 'redux/selectors/comments';
|
||||
import { selectIsPostingComment } from 'redux/selectors/comments';
|
||||
import { doOpenModal } from 'redux/actions/app';
|
||||
import { doCommentCreate, doSetCommentChannel } from 'redux/actions/comments';
|
||||
import { doCommentCreate } from 'redux/actions/comments';
|
||||
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
||||
import { CommentCreate } from './view';
|
||||
|
||||
|
@ -12,14 +12,12 @@ const select = (state, props) => ({
|
|||
channels: selectMyChannelClaims(state),
|
||||
isFetchingChannels: selectFetchingMyChannels(state),
|
||||
isPostingComment: selectIsPostingComment(state),
|
||||
activeChannel: selectCommentChannel(state),
|
||||
});
|
||||
|
||||
const perform = (dispatch, ownProps) => ({
|
||||
createComment: (comment, claimId, channel, parentId) =>
|
||||
dispatch(doCommentCreate(comment, claimId, channel, parentId, ownProps.uri)),
|
||||
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
|
||||
setCommentChannel: name => dispatch(doSetCommentChannel(name)),
|
||||
});
|
||||
|
||||
export default connect(select, perform)(CommentCreate);
|
||||
|
|
|
@ -24,8 +24,6 @@ type Props = {
|
|||
parentId: string,
|
||||
isReply: boolean,
|
||||
isPostingComment: boolean,
|
||||
activeChannel: string,
|
||||
setCommentChannel: string => void,
|
||||
};
|
||||
|
||||
export function CommentCreate(props: Props) {
|
||||
|
@ -40,32 +38,30 @@ export function CommentCreate(props: Props) {
|
|||
isReply,
|
||||
parentId,
|
||||
isPostingComment,
|
||||
activeChannel,
|
||||
setCommentChannel,
|
||||
} = props;
|
||||
const buttonref: ElementRef<any> = React.useRef();
|
||||
const { push } = useHistory();
|
||||
const { claim_id: claimId } = claim;
|
||||
const [commentValue, setCommentValue] = React.useState('');
|
||||
// const [activeChannel, setCommentChannel] = usePersistedState('comment-channel', '');
|
||||
const [channel, setChannel] = usePersistedState('comment-channel', '');
|
||||
const [charCount, setCharCount] = useState(commentValue.length);
|
||||
const [advancedEditor, setAdvancedEditor] = usePersistedState('comment-editor-mode', false);
|
||||
const hasChannels = channels && channels.length;
|
||||
const disabled = isPostingComment || activeChannel === CHANNEL_NEW || !commentValue.length;
|
||||
const disabled = isPostingComment || channel === CHANNEL_NEW || !commentValue.length;
|
||||
const topChannel =
|
||||
channels &&
|
||||
channels.reduce((top, channel) => {
|
||||
const topClaimCount = (top && top.meta && top.meta.claims_in_channel) || 0;
|
||||
const currentClaimCount = (activeChannel && channel.meta && channel.meta.claims_in_channel) || 0;
|
||||
const currentClaimCount = (channel && channel.meta && channel.meta.claims_in_channel) || 0;
|
||||
return topClaimCount >= currentClaimCount ? top : channel;
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
// set default channel
|
||||
if ((activeChannel === '' || activeChannel === 'anonymous') && topChannel) {
|
||||
setCommentChannel(topChannel.name);
|
||||
if ((channel === '' || channel === 'anonymous') && topChannel) {
|
||||
setChannel(topChannel.name);
|
||||
}
|
||||
}, [activeChannel, topChannel, setCommentChannel]);
|
||||
}, [channel, topChannel, setChannel]);
|
||||
|
||||
function handleCommentChange(event) {
|
||||
let commentValue;
|
||||
|
@ -95,8 +91,8 @@ export function CommentCreate(props: Props) {
|
|||
}
|
||||
|
||||
function handleSubmit() {
|
||||
if (activeChannel !== CHANNEL_NEW && commentValue.length) {
|
||||
createComment(commentValue, claimId, activeChannel, parentId).then(res => {
|
||||
if (channel !== CHANNEL_NEW && commentValue.length) {
|
||||
createComment(commentValue, claimId, channel, parentId).then(res => {
|
||||
if (res && res.signature) {
|
||||
setCommentValue('');
|
||||
|
||||
|
@ -139,13 +135,13 @@ export function CommentCreate(props: Props) {
|
|||
})}
|
||||
>
|
||||
<FormField
|
||||
disabled={activeChannel === CHANNEL_NEW}
|
||||
disabled={channel === CHANNEL_NEW}
|
||||
type={SIMPLE_SITE ? 'textarea' : advancedEditor && !isReply ? 'markdown' : 'textarea'}
|
||||
name={isReply ? 'content_reply' : 'content_description'}
|
||||
label={
|
||||
<span className="comment-new__label-wrapper">
|
||||
<div className="comment-new__label">{isReply ? __('Replying as') + ' ' : __('Comment as') + ' '}</div>
|
||||
<ChannelSelection channel={activeChannel} hideAnon tiny hideNew onChannelChange={setCommentChannel} />
|
||||
<ChannelSelection channel={channel} hideAnon tiny hideNew onChannelChange={setChannel} />
|
||||
</span>
|
||||
}
|
||||
quickActionLabel={
|
||||
|
|
|
@ -1,16 +1,11 @@
|
|||
import { connect } from 'react-redux';
|
||||
import Comment from './view';
|
||||
import {
|
||||
makeSelectMyReactionsForComment,
|
||||
makeSelectOthersReactionsForComment,
|
||||
selectCommentChannel,
|
||||
} from 'redux/selectors/comments';
|
||||
import { makeSelectMyReactionsForComment, makeSelectOthersReactionsForComment } from 'redux/selectors/comments';
|
||||
import { doCommentReact } from 'redux/actions/comments';
|
||||
|
||||
const select = (state, props) => ({
|
||||
myReacts: makeSelectMyReactionsForComment(props.commentId)(state),
|
||||
othersReacts: makeSelectOthersReactionsForComment(props.commentId)(state),
|
||||
activeChannel: selectCommentChannel(state),
|
||||
});
|
||||
|
||||
const perform = dispatch => ({
|
||||
|
|
|
@ -5,7 +5,6 @@ import {
|
|||
selectIsFetchingComments,
|
||||
makeSelectTotalCommentsCountForUri,
|
||||
selectOthersReactsById,
|
||||
selectCommentChannel,
|
||||
} from 'redux/selectors/comments';
|
||||
import { doCommentList, doCommentReactList } from 'redux/actions/comments';
|
||||
import CommentsList from './view';
|
||||
|
@ -20,7 +19,6 @@ const select = (state, props) => ({
|
|||
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
||||
fetchingChannels: selectFetchingMyChannels(state),
|
||||
reactionsById: selectOthersReactsById(state),
|
||||
activeChannel: selectCommentChannel(state),
|
||||
});
|
||||
|
||||
const perform = dispatch => ({
|
||||
|
|
|
@ -25,7 +25,6 @@ type Props = {
|
|||
totalComments: number,
|
||||
fetchingChannels: boolean,
|
||||
reactionsById: { [string]: { [REACTION_TYPES.LIKE | REACTION_TYPES.DISLIKE]: number } },
|
||||
activeChannel: string,
|
||||
};
|
||||
|
||||
function CommentList(props: Props) {
|
||||
|
@ -41,14 +40,11 @@ function CommentList(props: Props) {
|
|||
totalComments,
|
||||
fetchingChannels,
|
||||
reactionsById,
|
||||
activeChannel,
|
||||
} = props;
|
||||
const commentRef = React.useRef();
|
||||
const spinnerRef = React.useRef();
|
||||
const [sort, setSort] = usePersistedState(
|
||||
'comment-sort',
|
||||
ENABLE_COMMENT_REACTIONS ? SORT_COMMENTS_BEST : SORT_COMMENTS_NEW
|
||||
);
|
||||
const [sort, setSort] = usePersistedState('comment-sort', SORT_COMMENTS_BEST);
|
||||
const [activeChannel] = usePersistedState('comment-channel', '');
|
||||
const [start] = React.useState(0);
|
||||
const [end, setEnd] = React.useState(9);
|
||||
// Display comments immediately if not fetching reactions
|
||||
|
@ -142,8 +138,9 @@ function CommentList(props: Props) {
|
|||
}
|
||||
|
||||
// Default to newest first for apps that don't have comment reactions
|
||||
const sortedComments = sortComments({ comments, reactionsById, sort, isMyComment });
|
||||
|
||||
const sortedComments = ENABLE_COMMENT_REACTIONS
|
||||
? sortComments({ comments, reactionsById, sort, isMyComment })
|
||||
: comments;
|
||||
const displayedComments = readyToDisplayComments
|
||||
? prepareComments(sortedComments, linkedComment).slice(start, end)
|
||||
: [];
|
||||
|
|
|
@ -271,10 +271,6 @@ export const COMMENT_REACTION_LIST_FAILED = 'COMMENT_REACTION_LIST_FAILED';
|
|||
export const COMMENT_REACT_STARTED = 'COMMENT_REACT_STARTED';
|
||||
export const COMMENT_REACT_COMPLETED = 'COMMENT_REACT_COMPLETED';
|
||||
export const COMMENT_REACT_FAILED = 'COMMENT_REACT_FAILED';
|
||||
export const COMMENT_PIN_STARTED = 'COMMENT_PIN_STARTED';
|
||||
export const COMMENT_PIN_COMPLETED = 'COMMENT_PIN_COMPLETED';
|
||||
export const COMMENT_PIN_FAILED = 'COMMENT_PIN_FAILED';
|
||||
export const COMMENT_SET_CHANNEL = 'COMMENT_SET_CHANNEL';
|
||||
|
||||
// Blocked channels
|
||||
export const TOGGLE_BLOCK_CHANNEL = 'TOGGLE_BLOCK_CHANNEL';
|
||||
|
|
|
@ -8,7 +8,6 @@ import {
|
|||
makeSelectMyReactionsForComment,
|
||||
makeSelectOthersReactionsForComment,
|
||||
selectPendingCommentReacts,
|
||||
selectCommentChannel,
|
||||
} from 'redux/selectors/comments';
|
||||
|
||||
export function doCommentList(uri: string, page: number = 1, pageSize: number = 99999) {
|
||||
|
@ -20,7 +19,7 @@ export function doCommentList(uri: string, page: number = 1, pageSize: number =
|
|||
dispatch({
|
||||
type: ACTIONS.COMMENT_LIST_STARTED,
|
||||
});
|
||||
return Lbry.comment_list({
|
||||
Lbry.comment_list({
|
||||
claim_id: claimId,
|
||||
page,
|
||||
page_size: pageSize,
|
||||
|
@ -37,7 +36,6 @@ export function doCommentList(uri: string, page: number = 1, pageSize: number =
|
|||
uri: uri,
|
||||
},
|
||||
});
|
||||
return result;
|
||||
})
|
||||
.catch(error => {
|
||||
dispatch({
|
||||
|
@ -48,19 +46,10 @@ export function doCommentList(uri: string, page: number = 1, pageSize: number =
|
|||
};
|
||||
}
|
||||
|
||||
export function doSetCommentChannel(channelName: string) {
|
||||
return (dispatch: Dispatch) => {
|
||||
dispatch({
|
||||
type: ACTIONS.COMMENT_SET_CHANNEL,
|
||||
data: channelName,
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
export function doCommentReactList(uri: string | null, commentId?: string) {
|
||||
return (dispatch: Dispatch, getState: GetState) => {
|
||||
const state = getState();
|
||||
const channel = selectCommentChannel(state);
|
||||
const channel = localStorage.getItem('comment-channel');
|
||||
const commentIds = uri ? makeSelectCommentIdsForUri(uri)(state) : [commentId];
|
||||
const myChannels = selectMyChannelClaims(state);
|
||||
|
||||
|
@ -101,7 +90,7 @@ export function doCommentReactList(uri: string | null, commentId?: string) {
|
|||
export function doCommentReact(commentId: string, type: string) {
|
||||
return (dispatch: Dispatch, getState: GetState) => {
|
||||
const state = getState();
|
||||
const channel = selectCommentChannel(state);
|
||||
const channel = localStorage.getItem('comment-channel');
|
||||
const pendingReacts = selectPendingCommentReacts(state);
|
||||
const myChannels = selectMyChannelClaims(state);
|
||||
const exclusiveTypes = {
|
||||
|
@ -284,56 +273,6 @@ export function doCommentHide(comment_id: string) {
|
|||
};
|
||||
}
|
||||
|
||||
export function doCommentPin(commentId: string, remove: boolean) {
|
||||
return (dispatch: Dispatch, getState: GetState) => {
|
||||
const state = getState();
|
||||
// const channel = localStorage.getItem('comment-channel');
|
||||
const channel = selectCommentChannel(state);
|
||||
const myChannels = selectMyChannelClaims(state);
|
||||
const claimForChannelName = myChannels && myChannels.find(chan => chan.name === channel);
|
||||
const channelId = claimForChannelName && claimForChannelName.claim_id;
|
||||
|
||||
dispatch({
|
||||
type: ACTIONS.COMMENT_PIN_STARTED,
|
||||
});
|
||||
if (!channelId || !channel || !commentId) {
|
||||
return dispatch({
|
||||
type: ACTIONS.COMMENT_PIN_FAILED,
|
||||
data: { message: 'missing params - unable to pin' },
|
||||
});
|
||||
}
|
||||
const params: { comment_id: string, channel_name: string, channel_id: string, remove?: boolean } = {
|
||||
comment_id: commentId,
|
||||
channel_name: channel,
|
||||
channel_id: channelId,
|
||||
};
|
||||
|
||||
if (remove) {
|
||||
params['remove'] = true;
|
||||
}
|
||||
|
||||
return Lbry.comment_pin(params)
|
||||
.then((result: CommentPinResponse) => {
|
||||
dispatch({
|
||||
type: ACTIONS.COMMENT_PIN_COMPLETED,
|
||||
data: result,
|
||||
});
|
||||
})
|
||||
.catch(error => {
|
||||
dispatch({
|
||||
type: ACTIONS.COMMENT_PIN_FAILED,
|
||||
data: error,
|
||||
});
|
||||
dispatch(
|
||||
doToast({
|
||||
message: 'Unable to pin this comment, please try again later.',
|
||||
isError: true,
|
||||
})
|
||||
);
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
export function doCommentAbandon(comment_id: string) {
|
||||
return (dispatch: Dispatch) => {
|
||||
dispatch({
|
||||
|
|
|
@ -16,7 +16,6 @@ const defaultState: CommentsState = {
|
|||
typesReacting: [],
|
||||
myReactsByCommentId: {},
|
||||
othersReactsByCommentId: {},
|
||||
commentChannel: '',
|
||||
};
|
||||
|
||||
export default handleActions(
|
||||
|
@ -31,11 +30,6 @@ export default handleActions(
|
|||
isCommenting: false,
|
||||
}),
|
||||
|
||||
[ACTIONS.COMMENT_SET_CHANNEL]: (state: CommentsState, action: any) => ({
|
||||
...state,
|
||||
commentChannel: action.data,
|
||||
}),
|
||||
|
||||
[ACTIONS.COMMENT_CREATE_COMPLETED]: (state: CommentsState, action: any): CommentsState => {
|
||||
const { comment, claimId, uri }: { comment: Comment, claimId: string, uri: string } = action.data;
|
||||
const commentById = Object.assign({}, state.commentById);
|
||||
|
|
|
@ -16,8 +16,6 @@ export const selectIsPostingComment = createSelector(selectState, state => state
|
|||
|
||||
export const selectIsFetchingReacts = createSelector(selectState, state => state.isFetchingReacts);
|
||||
|
||||
export const selectCommentChannel = createSelector(selectState, state => state.commentChannel);
|
||||
|
||||
export const selectOthersReactsById = createSelector(selectState, state => state.othersReactsByCommentId);
|
||||
|
||||
export const selectCommentsByClaimId = createSelector(selectState, selectCommentsById, (state, byId) => {
|
||||
|
|
|
@ -170,10 +170,6 @@ $thumbnailWidthSmall: 0rem;
|
|||
|
||||
.comment__pin {
|
||||
margin-left: var(--spacing-s);
|
||||
|
||||
.icon {
|
||||
padding-top: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
.comment__message {
|
||||
|
|
|
@ -60,14 +60,12 @@ const appFilter = createFilter('app', [
|
|||
]);
|
||||
// We only need to persist the receiveAddress for the wallet
|
||||
const walletFilter = createFilter('wallet', ['receiveAddress']);
|
||||
const commentsFilter = createFilter('comments', ['commentChannel']);
|
||||
const searchFilter = createFilter('search', ['options']);
|
||||
const tagsFilter = createFilter('tags', ['followedTags']);
|
||||
const subscriptionsFilter = createFilter('subscriptions', ['subscriptions']);
|
||||
const blockedFilter = createFilter('blocked', ['blockedChannels']);
|
||||
const settingsFilter = createBlacklistFilter('settings', ['loadedLanguages', 'language']);
|
||||
const whiteListedReducers = [
|
||||
'comments',
|
||||
'fileInfo',
|
||||
'publish',
|
||||
'wallet',
|
||||
|
@ -81,7 +79,6 @@ const whiteListedReducers = [
|
|||
];
|
||||
|
||||
const transforms = [
|
||||
commentsFilter,
|
||||
fileInfoFilter,
|
||||
walletFilter,
|
||||
blockedFilter,
|
||||
|
|
|
@ -7391,9 +7391,9 @@ lazy-val@^1.0.4:
|
|||
yargs "^13.2.2"
|
||||
zstd-codec "^0.1.1"
|
||||
|
||||
lbry-redux@lbryio/lbry-redux#a08fc63fe2ee46383ae7e4beb11efe72522a1dd9:
|
||||
lbry-redux@lbryio/lbry-redux#ba5d6b84bec6bdb2f0a1a6b23e695212c65f650e:
|
||||
version "0.0.1"
|
||||
resolved "https://codeload.github.com/lbryio/lbry-redux/tar.gz/a08fc63fe2ee46383ae7e4beb11efe72522a1dd9"
|
||||
resolved "https://codeload.github.com/lbryio/lbry-redux/tar.gz/ba5d6b84bec6bdb2f0a1a6b23e695212c65f650e"
|
||||
dependencies:
|
||||
proxy-polyfill "0.1.6"
|
||||
reselect "^3.0.0"
|
||||
|
|
Loading…
Reference in a new issue