mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
Merge branch 'develop'
This commit is contained in:
commit
4f6476666f
119 changed files with 1948 additions and 1783 deletions
|
@ -44,7 +44,7 @@
|
||||||
"start": "craco start",
|
"start": "craco start",
|
||||||
"build": "craco build",
|
"build": "craco build",
|
||||||
"test": "craco test",
|
"test": "craco test",
|
||||||
"eject": "craco eject"
|
"ts-check": "tsc -p tsconfig.json --noEmit"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"extends": [
|
"extends": [
|
||||||
|
|
|
@ -33,7 +33,8 @@ const CommentContent: FC<IProps> = memo(({ comment, can_edit, onDelete, modalSho
|
||||||
const groupped = useMemo<Record<keyof typeof UPLOAD_TYPES, IFile[]>>(
|
const groupped = useMemo<Record<keyof typeof UPLOAD_TYPES, IFile[]>>(
|
||||||
() =>
|
() =>
|
||||||
reduce(
|
reduce(
|
||||||
(group, file) => assocPath([file.type], append(file, group[file.type]), group),
|
(group, file) =>
|
||||||
|
file.type ? assocPath([file.type], append(file, group[file.type]), group) : group,
|
||||||
{},
|
{},
|
||||||
comment.files
|
comment.files
|
||||||
),
|
),
|
||||||
|
|
|
@ -6,6 +6,7 @@ import { selectPlayer } from '~/redux/player/selectors';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import * as PLAYER_ACTIONS from '~/redux/player/actions';
|
import * as PLAYER_ACTIONS from '~/redux/player/actions';
|
||||||
import { Icon } from '~/components/input/Icon';
|
import { Icon } from '~/components/input/Icon';
|
||||||
|
import { path } from 'ramda';
|
||||||
|
|
||||||
const mapStateToProps = state => ({
|
const mapStateToProps = state => ({
|
||||||
youtubes: selectPlayer(state).youtubes,
|
youtubes: selectPlayer(state).youtubes,
|
||||||
|
@ -21,30 +22,32 @@ type Props = ReturnType<typeof mapStateToProps> &
|
||||||
|
|
||||||
const CommentEmbedBlockUnconnected: FC<Props> = memo(
|
const CommentEmbedBlockUnconnected: FC<Props> = memo(
|
||||||
({ block, youtubes, playerGetYoutubeInfo }) => {
|
({ block, youtubes, playerGetYoutubeInfo }) => {
|
||||||
const link = useMemo(
|
const id = useMemo(() => {
|
||||||
() =>
|
const match = block.content.match(
|
||||||
block.content.match(
|
/https?:\/\/(?:www\.)?(?:youtube\.com|youtu\.be)\/(?:watch)?(?:\?v=)?([\w\-\=]+)/
|
||||||
/https?:\/\/(www\.)?(youtube\.com|youtu\.be)\/(watch)?(\?v=)?([\w\-\=]+)/
|
);
|
||||||
),
|
|
||||||
[block.content]
|
return (match && match[1]) || '';
|
||||||
);
|
}, [block.content]);
|
||||||
|
|
||||||
const preview = useMemo(() => getYoutubeThumb(block.content), [block.content]);
|
const preview = useMemo(() => getYoutubeThumb(block.content), [block.content]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!link[5] || youtubes[link[5]]) return;
|
if (!id) return;
|
||||||
playerGetYoutubeInfo(link[5]);
|
playerGetYoutubeInfo(id);
|
||||||
}, [link, playerGetYoutubeInfo]);
|
}, [id, playerGetYoutubeInfo]);
|
||||||
|
|
||||||
const title = useMemo(
|
const title = useMemo<string>(() => {
|
||||||
() =>
|
if (!id) {
|
||||||
(youtubes[link[5]] && youtubes[link[5]].metadata && youtubes[link[5]].metadata.title) || '',
|
return block.content;
|
||||||
[link, youtubes]
|
}
|
||||||
);
|
|
||||||
|
return path([id, 'metadata', 'title'], youtubes) || block.content;
|
||||||
|
}, [id, youtubes, block.content]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.embed}>
|
<div className={styles.embed}>
|
||||||
<a href={link[0]} target="_blank" />
|
<a href={id[0]} target="_blank" />
|
||||||
|
|
||||||
<div className={styles.preview}>
|
<div className={styles.preview}>
|
||||||
<div style={{ backgroundImage: `url("${preview}")` }}>
|
<div style={{ backgroundImage: `url("${preview}")` }}>
|
||||||
|
@ -53,7 +56,7 @@ const CommentEmbedBlockUnconnected: FC<Props> = memo(
|
||||||
<Icon icon="play" size={32} />
|
<Icon icon="play" size={32} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={styles.title}>{title || link[0]}</div>
|
<div className={styles.title}>{title}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -67,7 +67,13 @@ const CommentForm: FC<IProps> = ({ comment, nodeId, onCancelEdit }) => {
|
||||||
|
|
||||||
<Group horizontal className={styles.buttons}>
|
<Group horizontal className={styles.buttons}>
|
||||||
<CommentFormAttachButtons onUpload={uploader.uploadFiles} />
|
<CommentFormAttachButtons onUpload={uploader.uploadFiles} />
|
||||||
<CommentFormFormatButtons element={textarea} handler={formik.handleChange('text')} />
|
|
||||||
|
{!!textarea && (
|
||||||
|
<CommentFormFormatButtons
|
||||||
|
element={textarea}
|
||||||
|
handler={formik.handleChange('text')}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
{isLoading && <LoaderCircle size={20} />}
|
{isLoading && <LoaderCircle size={20} />}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,8 @@ import { COMMENT_FILE_TYPES, UPLOAD_TYPES } from '~/redux/uploads/constants';
|
||||||
import { useFileUploaderContext } from '~/utils/hooks/fileUploader';
|
import { useFileUploaderContext } from '~/utils/hooks/fileUploader';
|
||||||
|
|
||||||
const CommentFormAttaches: FC = () => {
|
const CommentFormAttaches: FC = () => {
|
||||||
const { files, pending, setFiles, uploadFiles } = useFileUploaderContext();
|
const uploader = useFileUploaderContext();
|
||||||
|
const { files, pending, setFiles, uploadFiles } = uploader!;
|
||||||
|
|
||||||
const images = useMemo(() => files.filter(file => file && file.type === UPLOAD_TYPES.IMAGE), [
|
const images = useMemo(() => files.filter(file => file && file.type === UPLOAD_TYPES.IMAGE), [
|
||||||
files,
|
files,
|
||||||
|
@ -70,7 +71,7 @@ const CommentFormAttaches: FC = () => {
|
||||||
);
|
);
|
||||||
|
|
||||||
const onAudioTitleChange = useCallback(
|
const onAudioTitleChange = useCallback(
|
||||||
(fileId: IFile['id'], title: IFile['metadata']['title']) => {
|
(fileId: IFile['id'], title: string) => {
|
||||||
setFiles(
|
setFiles(
|
||||||
files.map(file =>
|
files.map(file =>
|
||||||
file.id === fileId ? { ...file, metadata: { ...file.metadata, title } } : file
|
file.id === fileId ? { ...file, metadata: { ...file.metadata, title } } : file
|
||||||
|
@ -80,36 +81,36 @@ const CommentFormAttaches: FC = () => {
|
||||||
[files, setFiles]
|
[files, setFiles]
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
if (!hasAttaches) return null;
|
||||||
hasAttaches && (
|
|
||||||
<div className={styles.attaches} onDropCapture={onDrop}>
|
|
||||||
{hasImageAttaches && (
|
|
||||||
<SortableImageGrid
|
|
||||||
onDelete={onFileDelete}
|
|
||||||
onSortEnd={onImageMove}
|
|
||||||
axis="xy"
|
|
||||||
items={images}
|
|
||||||
locked={pendingImages}
|
|
||||||
pressDelay={50}
|
|
||||||
helperClass={styles.helper}
|
|
||||||
size={120}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{hasAudioAttaches && (
|
return (
|
||||||
<SortableAudioGrid
|
<div className={styles.attaches} onDropCapture={onDrop}>
|
||||||
items={audios}
|
{hasImageAttaches && (
|
||||||
onDelete={onFileDelete}
|
<SortableImageGrid
|
||||||
onTitleChange={onAudioTitleChange}
|
onDelete={onFileDelete}
|
||||||
onSortEnd={onAudioMove}
|
onSortEnd={onImageMove}
|
||||||
axis="y"
|
axis="xy"
|
||||||
locked={pendingAudios}
|
items={images}
|
||||||
pressDelay={50}
|
locked={pendingImages}
|
||||||
helperClass={styles.helper}
|
pressDelay={50}
|
||||||
/>
|
helperClass={styles.helper}
|
||||||
)}
|
size={120}
|
||||||
</div>
|
/>
|
||||||
)
|
)}
|
||||||
|
|
||||||
|
{hasAudioAttaches && (
|
||||||
|
<SortableAudioGrid
|
||||||
|
items={audios}
|
||||||
|
onDelete={onFileDelete}
|
||||||
|
onTitleChange={onAudioTitleChange}
|
||||||
|
onSortEnd={onAudioMove}
|
||||||
|
axis="y"
|
||||||
|
locked={pendingAudios}
|
||||||
|
pressDelay={50}
|
||||||
|
helperClass={styles.helper}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import React, { FC, useCallback } from 'react';
|
import React, { FC, useCallback, useEffect } from 'react';
|
||||||
import { ButtonGroup } from '~/components/input/ButtonGroup';
|
import { ButtonGroup } from '~/components/input/ButtonGroup';
|
||||||
import { Button } from '~/components/input/Button';
|
import { Button } from '~/components/input/Button';
|
||||||
import { useFormatWrapper } from '~/utils/hooks/useFormatWrapper';
|
import { useFormatWrapper, wrapTextInsideInput } from '~/utils/hooks/useFormatWrapper';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
|
@ -15,16 +15,57 @@ const CommentFormFormatButtons: FC<IProps> = ({ element, handler }) => {
|
||||||
[element, handler]
|
[element, handler]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const wrapBold = useCallback(
|
||||||
|
event => {
|
||||||
|
event.preventDefault();
|
||||||
|
wrapTextInsideInput(element, '**', '**', handler);
|
||||||
|
},
|
||||||
|
[wrap, handler]
|
||||||
|
);
|
||||||
|
|
||||||
|
const wrapItalic = useCallback(
|
||||||
|
event => {
|
||||||
|
event.preventDefault();
|
||||||
|
wrapTextInsideInput(element, '*', '*', handler);
|
||||||
|
},
|
||||||
|
[wrap, handler]
|
||||||
|
);
|
||||||
|
|
||||||
|
const onKeyPress = useCallback(
|
||||||
|
(event: KeyboardEvent) => {
|
||||||
|
if (!event.ctrlKey) return;
|
||||||
|
|
||||||
|
if (event.code === 'KeyB') {
|
||||||
|
wrapBold(event);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event.code === 'KeyI') {
|
||||||
|
wrapItalic(event);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[wrapBold, wrapItalic]
|
||||||
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!element) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
element.addEventListener('keypress', onKeyPress);
|
||||||
|
|
||||||
|
return () => element.removeEventListener('keypress', onKeyPress);
|
||||||
|
}, [element, onKeyPress]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ButtonGroup className={styles.wrap}>
|
<ButtonGroup className={styles.wrap}>
|
||||||
<Button
|
<Button
|
||||||
onClick={wrap('**', '**')}
|
onClick={wrapBold}
|
||||||
iconLeft="bold"
|
iconLeft="bold"
|
||||||
size="small"
|
size="small"
|
||||||
color="gray"
|
color="gray"
|
||||||
iconOnly
|
iconOnly
|
||||||
type="button"
|
type="button"
|
||||||
label="Жирный"
|
label="Жирный Ctrl+B"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
@ -34,7 +75,7 @@ const CommentFormFormatButtons: FC<IProps> = ({ element, handler }) => {
|
||||||
color="gray"
|
color="gray"
|
||||||
iconOnly
|
iconOnly
|
||||||
type="button"
|
type="button"
|
||||||
label="Наклонный"
|
label="Наклонный Ctrl+I"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
|
|
@ -28,15 +28,4 @@
|
||||||
:global(.green) {
|
:global(.green) {
|
||||||
color: $wisegreen;
|
color: $wisegreen;
|
||||||
}
|
}
|
||||||
|
|
||||||
//&:last-child {
|
|
||||||
// p {
|
|
||||||
// &::after {
|
|
||||||
// content: '';
|
|
||||||
// display: inline-flex;
|
|
||||||
// height: 1em;
|
|
||||||
// width: 150px;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ const LocalCommentFormTextarea: FC<IProps> = ({ setRef }) => {
|
||||||
|
|
||||||
const onKeyDown = useCallback<KeyboardEventHandler<HTMLTextAreaElement>>(
|
const onKeyDown = useCallback<KeyboardEventHandler<HTMLTextAreaElement>>(
|
||||||
({ ctrlKey, key }) => {
|
({ ctrlKey, key }) => {
|
||||||
if (!!ctrlKey && key === 'Enter') handleSubmit(null);
|
if (ctrlKey && key === 'Enter') handleSubmit(undefined);
|
||||||
},
|
},
|
||||||
[handleSubmit]
|
[handleSubmit]
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
import React, { FC, useState, useCallback, useEffect, useRef } from "react";
|
import React, { FC, useState, useCallback, useEffect, useRef } from 'react';
|
||||||
import { IUser } from "~/redux/auth/types";
|
import { IUser } from '~/redux/auth/types';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
import { getURL } from "~/utils/dom";
|
import { getURL } from '~/utils/dom';
|
||||||
import { PRESETS } from "~/constants/urls";
|
import { PRESETS } from '~/constants/urls';
|
||||||
import classNames from "classnames";
|
import classNames from 'classnames';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
cover: IUser["cover"];
|
cover: IUser['cover'];
|
||||||
}
|
}
|
||||||
|
|
||||||
const CoverBackdrop: FC<IProps> = ({ cover }) => {
|
const CoverBackdrop: FC<IProps> = ({ cover }) => {
|
||||||
const ref = useRef<HTMLImageElement>();
|
const ref = useRef<HTMLImageElement>(null);
|
||||||
|
|
||||||
const [is_loaded, setIsLoaded] = useState(false);
|
const [is_loaded, setIsLoaded] = useState(false);
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ const CoverBackdrop: FC<IProps> = ({ cover }) => {
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!cover || !cover.url || !ref || !ref.current) return;
|
if (!cover || !cover.url || !ref || !ref.current) return;
|
||||||
|
|
||||||
ref.current.src = "";
|
ref.current.src = '';
|
||||||
setIsLoaded(false);
|
setIsLoaded(false);
|
||||||
ref.current.src = getURL(cover, PRESETS.cover);
|
ref.current.src = getURL(cover, PRESETS.cover);
|
||||||
}, [cover]);
|
}, [cover]);
|
||||||
|
|
|
@ -16,7 +16,7 @@ const FullWidth: FC<IProps> = ({ children, onRefresh }) => {
|
||||||
const { width } = sample.current.getBoundingClientRect();
|
const { width } = sample.current.getBoundingClientRect();
|
||||||
const { clientWidth } = document.documentElement;
|
const { clientWidth } = document.documentElement;
|
||||||
|
|
||||||
onRefresh(clientWidth);
|
if (onRefresh) onRefresh(clientWidth);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
width: clientWidth,
|
width: clientWidth,
|
||||||
|
|
|
@ -11,7 +11,7 @@ interface IProps extends DetailsHTMLAttributes<HTMLDivElement> {}
|
||||||
|
|
||||||
const Sticky: FC<IProps> = ({ children }) => {
|
const Sticky: FC<IProps> = ({ children }) => {
|
||||||
const ref = useRef(null);
|
const ref = useRef(null);
|
||||||
let sb = null;
|
let sb;
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!ref.current) return;
|
if (!ref.current) return;
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import React, { FC, useCallback, useMemo } from 'react';
|
import React, { FC, useCallback, useMemo } from 'react';
|
||||||
import { INode } from '~/redux/types';
|
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { UPLOAD_TYPES } from '~/redux/uploads/constants';
|
import { UPLOAD_TYPES } from '~/redux/uploads/constants';
|
||||||
import { ImageGrid } from '../ImageGrid';
|
import { ImageGrid } from '../ImageGrid';
|
||||||
|
@ -8,19 +7,14 @@ import { selectUploads } from '~/redux/uploads/selectors';
|
||||||
|
|
||||||
import * as UPLOAD_ACTIONS from '~/redux/uploads/actions';
|
import * as UPLOAD_ACTIONS from '~/redux/uploads/actions';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
|
import { NodeEditorProps } from '~/redux/node/types';
|
||||||
|
|
||||||
const mapStateToProps = selectUploads;
|
const mapStateToProps = selectUploads;
|
||||||
const mapDispatchToProps = {
|
const mapDispatchToProps = {
|
||||||
uploadUploadFiles: UPLOAD_ACTIONS.uploadUploadFiles,
|
uploadUploadFiles: UPLOAD_ACTIONS.uploadUploadFiles,
|
||||||
};
|
};
|
||||||
|
|
||||||
type IProps = ReturnType<typeof mapStateToProps> &
|
type IProps = ReturnType<typeof mapStateToProps> & typeof mapDispatchToProps & NodeEditorProps;
|
||||||
typeof mapDispatchToProps & {
|
|
||||||
data: INode;
|
|
||||||
setData: (val: INode) => void;
|
|
||||||
temp: string[];
|
|
||||||
setTemp: (val: string[]) => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
const AudioEditorUnconnected: FC<IProps> = ({ data, setData, temp, statuses }) => {
|
const AudioEditorUnconnected: FC<IProps> = ({ data, setData, temp, statuses }) => {
|
||||||
const images = useMemo(
|
const images = useMemo(
|
||||||
|
@ -69,9 +63,6 @@ const AudioEditorUnconnected: FC<IProps> = ({ data, setData, temp, statuses }) =
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const AudioEditor = connect(
|
const AudioEditor = connect(mapStateToProps, mapDispatchToProps)(AudioEditorUnconnected);
|
||||||
mapStateToProps,
|
|
||||||
mapDispatchToProps
|
|
||||||
)(AudioEditorUnconnected);
|
|
||||||
|
|
||||||
export { AudioEditor };
|
export { AudioEditor };
|
||||||
|
|
|
@ -35,7 +35,7 @@ const AudioGrid: FC<IProps> = ({ files, setFiles, locked }) => {
|
||||||
);
|
);
|
||||||
|
|
||||||
const onTitleChange = useCallback(
|
const onTitleChange = useCallback(
|
||||||
(changeId: IFile['id'], title: IFile['metadata']['title']) => {
|
(changeId: IFile['id'], title: string) => {
|
||||||
setFiles(
|
setFiles(
|
||||||
files.map(file =>
|
files.map(file =>
|
||||||
file && file.id === changeId ? { ...file, metadata: { ...file.metadata, title } } : file
|
file && file.id === changeId ? { ...file, metadata: { ...file.metadata, title } } : file
|
||||||
|
|
|
@ -2,6 +2,7 @@ import React, { FC, createElement } from 'react';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
import { INode } from '~/redux/types';
|
import { INode } from '~/redux/types';
|
||||||
import { NODE_PANEL_COMPONENTS } from '~/redux/node/constants';
|
import { NODE_PANEL_COMPONENTS } from '~/redux/node/constants';
|
||||||
|
import { has } from 'ramda';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
data: INode;
|
data: INode;
|
||||||
|
@ -10,13 +11,19 @@ interface IProps {
|
||||||
setTemp: (val: string[]) => void;
|
setTemp: (val: string[]) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const EditorPanel: FC<IProps> = ({ data, setData, temp, setTemp }) => (
|
const EditorPanel: FC<IProps> = ({ data, setData, temp, setTemp }) => {
|
||||||
<div className={styles.panel}>
|
if (!data.type || !has(data.type, NODE_PANEL_COMPONENTS)) {
|
||||||
{NODE_PANEL_COMPONENTS[data.type] &&
|
return null;
|
||||||
NODE_PANEL_COMPONENTS[data.type].map((el, key) =>
|
}
|
||||||
createElement(el, { key, data, setData, temp, setTemp })
|
|
||||||
)}
|
return (
|
||||||
</div>
|
<div className={styles.panel}>
|
||||||
);
|
{NODE_PANEL_COMPONENTS[data.type] &&
|
||||||
|
NODE_PANEL_COMPONENTS[data.type].map((el, key) =>
|
||||||
|
createElement(el, { key, data, setData, temp, setTemp })
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
export { EditorPanel };
|
export { EditorPanel };
|
||||||
|
|
|
@ -64,7 +64,10 @@ const EditorUploadButtonUnconnected: FC<IProps> = ({
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
const temps = items.map(file => file.temp_id).slice(0, limit);
|
const temps = items
|
||||||
|
.filter(file => file?.temp_id)
|
||||||
|
.map(file => file.temp_id!)
|
||||||
|
.slice(0, limit);
|
||||||
|
|
||||||
setTemp([...temp, ...temps]);
|
setTemp([...temp, ...temps]);
|
||||||
uploadUploadFiles(items);
|
uploadUploadFiles(items);
|
||||||
|
|
|
@ -33,16 +33,16 @@ const EditorUploadCoverButtonUnconnected: FC<IProps> = ({
|
||||||
statuses,
|
statuses,
|
||||||
uploadUploadFiles,
|
uploadUploadFiles,
|
||||||
}) => {
|
}) => {
|
||||||
const [cover_temp, setCoverTemp] = useState<string>(null);
|
const [coverTemp, setCoverTemp] = useState<string>('');
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
Object.entries(statuses).forEach(([id, status]) => {
|
Object.entries(statuses).forEach(([id, status]) => {
|
||||||
if (cover_temp === id && !!status.uuid && files[status.uuid]) {
|
if (coverTemp === id && !!status.uuid && files[status.uuid]) {
|
||||||
setData({ ...data, cover: files[status.uuid] });
|
setData({ ...data, cover: files[status.uuid] });
|
||||||
setCoverTemp(null);
|
setCoverTemp('');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, [statuses, files, cover_temp, setData, data]);
|
}, [statuses, files, coverTemp, setData, data]);
|
||||||
|
|
||||||
const onUpload = useCallback(
|
const onUpload = useCallback(
|
||||||
(uploads: File[]) => {
|
(uploads: File[]) => {
|
||||||
|
@ -56,7 +56,7 @@ const EditorUploadCoverButtonUnconnected: FC<IProps> = ({
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
setCoverTemp(path([0, 'temp_id'], items));
|
setCoverTemp(path([0, 'temp_id'], items) || '');
|
||||||
uploadUploadFiles(items);
|
uploadUploadFiles(items);
|
||||||
},
|
},
|
||||||
[uploadUploadFiles, setCoverTemp]
|
[uploadUploadFiles, setCoverTemp]
|
||||||
|
@ -73,11 +73,11 @@ const EditorUploadCoverButtonUnconnected: FC<IProps> = ({
|
||||||
[onUpload]
|
[onUpload]
|
||||||
);
|
);
|
||||||
const onDropCover = useCallback(() => {
|
const onDropCover = useCallback(() => {
|
||||||
setData({ ...data, cover: null });
|
setData({ ...data, cover: undefined });
|
||||||
}, [setData, data]);
|
}, [setData, data]);
|
||||||
|
|
||||||
const background = data.cover ? getURL(data.cover, PRESETS['300']) : null;
|
const background = data.cover ? getURL(data.cover, PRESETS['300']) : null;
|
||||||
const status = cover_temp && path([cover_temp], statuses);
|
const status = coverTemp && path([coverTemp], statuses);
|
||||||
const preview = status && path(['preview'], status);
|
const preview = status && path(['preview'], status);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -5,19 +5,14 @@ import * as UPLOAD_ACTIONS from '~/redux/uploads/actions';
|
||||||
import { selectUploads } from '~/redux/uploads/selectors';
|
import { selectUploads } from '~/redux/uploads/selectors';
|
||||||
import { ImageGrid } from '~/components/editors/ImageGrid';
|
import { ImageGrid } from '~/components/editors/ImageGrid';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
|
import { NodeEditorProps } from '~/redux/node/types';
|
||||||
|
|
||||||
const mapStateToProps = selectUploads;
|
const mapStateToProps = selectUploads;
|
||||||
const mapDispatchToProps = {
|
const mapDispatchToProps = {
|
||||||
uploadUploadFiles: UPLOAD_ACTIONS.uploadUploadFiles,
|
uploadUploadFiles: UPLOAD_ACTIONS.uploadUploadFiles,
|
||||||
};
|
};
|
||||||
|
|
||||||
type IProps = ReturnType<typeof mapStateToProps> &
|
type IProps = ReturnType<typeof mapStateToProps> & typeof mapDispatchToProps & NodeEditorProps;
|
||||||
typeof mapDispatchToProps & {
|
|
||||||
data: INode;
|
|
||||||
setData: (val: INode) => void;
|
|
||||||
temp: string[];
|
|
||||||
setTemp: (val: string[]) => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
const ImageEditorUnconnected: FC<IProps> = ({ data, setData, temp, statuses }) => {
|
const ImageEditorUnconnected: FC<IProps> = ({ data, setData, temp, statuses }) => {
|
||||||
const pending_files = useMemo(() => temp.filter(id => !!statuses[id]).map(id => statuses[id]), [
|
const pending_files = useMemo(() => temp.filter(id => !!statuses[id]).map(id => statuses[id]), [
|
||||||
|
@ -34,9 +29,6 @@ const ImageEditorUnconnected: FC<IProps> = ({ data, setData, temp, statuses }) =
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const ImageEditor = connect(
|
const ImageEditor = connect(mapStateToProps, mapDispatchToProps)(ImageEditorUnconnected);
|
||||||
mapStateToProps,
|
|
||||||
mapDispatchToProps
|
|
||||||
)(ImageEditorUnconnected);
|
|
||||||
|
|
||||||
export { ImageEditor };
|
export { ImageEditor };
|
||||||
|
|
|
@ -17,7 +17,7 @@ const SortableAudioGrid = SortableContainer(
|
||||||
items: IFile[];
|
items: IFile[];
|
||||||
locked: IUploadStatus[];
|
locked: IUploadStatus[];
|
||||||
onDelete: (file_id: IFile['id']) => void;
|
onDelete: (file_id: IFile['id']) => void;
|
||||||
onTitleChange: (file_id: IFile['id'], title: IFile['metadata']['title']) => void;
|
onTitleChange: (file_id: IFile['id'], title: string) => void;
|
||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<div className={styles.grid}>
|
<div className={styles.grid}>
|
||||||
|
|
|
@ -3,11 +3,9 @@ import { INode } from '~/redux/types';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
import { Textarea } from '~/components/input/Textarea';
|
import { Textarea } from '~/components/input/Textarea';
|
||||||
import { path } from 'ramda';
|
import { path } from 'ramda';
|
||||||
|
import { NodeEditorProps } from '~/redux/node/types';
|
||||||
|
|
||||||
interface IProps {
|
type IProps = NodeEditorProps & {};
|
||||||
data: INode;
|
|
||||||
setData: (val: INode) => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
const TextEditor: FC<IProps> = ({ data, setData }) => {
|
const TextEditor: FC<IProps> = ({ data, setData }) => {
|
||||||
const setText = useCallback(
|
const setText = useCallback(
|
||||||
|
|
|
@ -5,11 +5,9 @@ import { path } from 'ramda';
|
||||||
import { InputText } from '~/components/input/InputText';
|
import { InputText } from '~/components/input/InputText';
|
||||||
import classnames from 'classnames';
|
import classnames from 'classnames';
|
||||||
import { getYoutubeThumb } from '~/utils/dom';
|
import { getYoutubeThumb } from '~/utils/dom';
|
||||||
|
import { NodeEditorProps } from '~/redux/node/types';
|
||||||
|
|
||||||
interface IProps {
|
type IProps = NodeEditorProps & {};
|
||||||
data: INode;
|
|
||||||
setData: (val: INode) => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
const VideoEditor: FC<IProps> = ({ data, setData }) => {
|
const VideoEditor: FC<IProps> = ({ data, setData }) => {
|
||||||
const setUrl = useCallback(
|
const setUrl = useCallback(
|
||||||
|
@ -19,9 +17,10 @@ const VideoEditor: FC<IProps> = ({ data, setData }) => {
|
||||||
|
|
||||||
const url = (path(['blocks', 0, 'url'], data) as string) || '';
|
const url = (path(['blocks', 0, 'url'], data) as string) || '';
|
||||||
const preview = useMemo(() => getYoutubeThumb(url), [url]);
|
const preview = useMemo(() => getYoutubeThumb(url), [url]);
|
||||||
|
const backgroundImage = (preview && `url("${preview}")`) || '';
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.preview} style={{ backgroundImage: preview && `url("${preview}")` }}>
|
<div className={styles.preview} style={{ backgroundImage }}>
|
||||||
<div className={styles.input_wrap}>
|
<div className={styles.input_wrap}>
|
||||||
<div className={classnames(styles.input, { active: !!preview })}>
|
<div className={classnames(styles.input, { active: !!preview })}>
|
||||||
<InputText value={url} handler={setUrl} placeholder="Адрес видео" />
|
<InputText value={url} handler={setUrl} placeholder="Адрес видео" />
|
||||||
|
|
|
@ -119,7 +119,7 @@ const Cell: FC<IProps> = ({
|
||||||
}
|
}
|
||||||
}, [title]);
|
}, [title]);
|
||||||
|
|
||||||
const cellText = useMemo(() => formatCellText(text), [text]);
|
const cellText = useMemo(() => formatCellText(text || ''), [text]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classNames(styles.cell, styles[(flow && flow.display) || 'single'])} ref={ref}>
|
<div className={classNames(styles.cell, styles[(flow && flow.display) || 'single'])} ref={ref}>
|
||||||
|
|
|
@ -13,16 +13,22 @@ type IProps = Partial<IFlowState> & {
|
||||||
onChangeCellView: typeof flowSetCellView;
|
onChangeCellView: typeof flowSetCellView;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const FlowGrid: FC<IProps> = ({ user, nodes, onSelect, onChangeCellView }) => (
|
export const FlowGrid: FC<IProps> = ({ user, nodes, onSelect, onChangeCellView }) => {
|
||||||
<Fragment>
|
if (!nodes) {
|
||||||
{nodes.map(node => (
|
return null;
|
||||||
<Cell
|
}
|
||||||
key={node.id}
|
|
||||||
node={node}
|
return (
|
||||||
onSelect={onSelect}
|
<Fragment>
|
||||||
can_edit={canEditNode(node, user)}
|
{nodes.map(node => (
|
||||||
onChangeCellView={onChangeCellView}
|
<Cell
|
||||||
/>
|
key={node.id}
|
||||||
))}
|
node={node}
|
||||||
</Fragment>
|
onSelect={onSelect}
|
||||||
);
|
can_edit={canEditNode(node, user)}
|
||||||
|
onChangeCellView={onChangeCellView}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</Fragment>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
|
@ -7,7 +7,7 @@ import { getURL } from '~/utils/dom';
|
||||||
import { withRouter, RouteComponentProps, useHistory } from 'react-router';
|
import { withRouter, RouteComponentProps, useHistory } from 'react-router';
|
||||||
import { URLS, PRESETS } from '~/constants/urls';
|
import { URLS, PRESETS } from '~/constants/urls';
|
||||||
import { Icon } from '~/components/input/Icon';
|
import { Icon } from '~/components/input/Icon';
|
||||||
import { INode } from "~/redux/types";
|
import { INode } from '~/redux/types';
|
||||||
|
|
||||||
type IProps = RouteComponentProps & {
|
type IProps = RouteComponentProps & {
|
||||||
heroes: IFlowState['heroes'];
|
heroes: IFlowState['heroes'];
|
||||||
|
@ -18,46 +18,54 @@ const FlowHeroUnconnected: FC<IProps> = ({ heroes }) => {
|
||||||
const [limit, setLimit] = useState(6);
|
const [limit, setLimit] = useState(6);
|
||||||
const [current, setCurrent] = useState(0);
|
const [current, setCurrent] = useState(0);
|
||||||
const [loaded, setLoaded] = useState<Partial<INode>[]>([]);
|
const [loaded, setLoaded] = useState<Partial<INode>[]>([]);
|
||||||
const timer = useRef(null)
|
const timer = useRef<any>(null);
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
|
|
||||||
const onLoad = useCallback((i: number) => {
|
const onLoad = useCallback(
|
||||||
setLoaded([...loaded, heroes[i]])
|
(i: number) => {
|
||||||
}, [heroes, loaded, setLoaded])
|
setLoaded([...loaded, heroes[i]]);
|
||||||
|
},
|
||||||
|
[heroes, loaded, setLoaded]
|
||||||
|
);
|
||||||
|
|
||||||
const items = Math.min(heroes.length, limit)
|
const items = Math.min(heroes.length, limit);
|
||||||
|
|
||||||
const title = useMemo(() => {
|
const title = useMemo(() => {
|
||||||
return loaded[current]?.title || '';
|
return loaded[current]?.title || '';
|
||||||
}, [loaded, current, heroes]);
|
}, [loaded, current, heroes]);
|
||||||
|
|
||||||
const onNext = useCallback(() => {
|
const onNext = useCallback(() => {
|
||||||
if (heroes.length > limit) setLimit(limit + 1)
|
if (heroes.length > limit) setLimit(limit + 1);
|
||||||
setCurrent(current < items - 1 ? current + 1 : 0)
|
setCurrent(current < items - 1 ? current + 1 : 0);
|
||||||
}, [current, items, limit, heroes.length])
|
}, [current, items, limit, heroes.length]);
|
||||||
const onPrev = useCallback(() => setCurrent(current > 0 ? current - 1 : items - 1), [current, items])
|
const onPrev = useCallback(() => setCurrent(current > 0 ? current - 1 : items - 1), [
|
||||||
|
current,
|
||||||
|
items,
|
||||||
|
]);
|
||||||
|
|
||||||
const goToNode = useCallback(() => {
|
const goToNode = useCallback(() => {
|
||||||
history.push(URLS.NODE_URL(loaded[current].id))
|
history.push(URLS.NODE_URL(loaded[current].id));
|
||||||
}, [current, loaded]);
|
}, [current, loaded]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
timer.current = setTimeout(onNext, 5000)
|
timer.current = setTimeout(onNext, 5000);
|
||||||
return () => clearTimeout(timer.current)
|
return () => clearTimeout(timer.current);
|
||||||
}, [current, timer.current])
|
}, [current, timer.current]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (loaded.length === 1) onNext()
|
if (loaded.length === 1) onNext();
|
||||||
}, [loaded])
|
}, [loaded]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.wrap}>
|
<div className={styles.wrap}>
|
||||||
<div className={styles.loaders}>
|
<div className={styles.loaders}>
|
||||||
{
|
{heroes.slice(0, items).map((hero, i) => (
|
||||||
heroes.slice(0, items).map((hero, i) => (
|
<img
|
||||||
<img src={getURL({ url: hero.thumbnail }, preset)} key={hero.id} onLoad={() => onLoad(i)} />
|
src={getURL({ url: hero.thumbnail }, preset)}
|
||||||
))
|
key={hero.id}
|
||||||
}
|
onLoad={() => onLoad(i)}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{loaded.length > 0 && (
|
{loaded.length > 0 && (
|
||||||
|
@ -87,10 +95,7 @@ const FlowHeroUnconnected: FC<IProps> = ({ heroes }) => {
|
||||||
key={hero.id}
|
key={hero.id}
|
||||||
onClick={goToNode}
|
onClick={goToNode}
|
||||||
>
|
>
|
||||||
<img
|
<img src={getURL({ url: hero.thumbnail }, preset)} alt={hero.thumbnail} />
|
||||||
src={getURL({ url: hero.thumbnail }, preset)}
|
|
||||||
alt={hero.thumbnail}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -4,19 +4,11 @@ import { describeArc } from '~/utils/dom';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
size: number;
|
size: number;
|
||||||
progress: number;
|
progress?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ArcProgress: FC<IProps> = ({ size, progress }) => (
|
export const ArcProgress: FC<IProps> = ({ size, progress = 0 }) => (
|
||||||
<svg className={styles.icon} width={size} height={size}>
|
<svg className={styles.icon} width={size} height={size}>
|
||||||
<path
|
<path d={describeArc(size / 2, size / 2, size / 2 - 2, 360 * (1 - progress), 360)} />
|
||||||
d={describeArc(
|
|
||||||
size / 2,
|
|
||||||
size / 2,
|
|
||||||
size / 2 - 2,
|
|
||||||
360 * (1 - progress),
|
|
||||||
360,
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
|
@ -50,7 +50,7 @@ const Button: FC<IButtonProps> = memo(
|
||||||
ref,
|
ref,
|
||||||
...props
|
...props
|
||||||
}) => {
|
}) => {
|
||||||
const tooltip = useRef<HTMLSpanElement>();
|
const tooltip = useRef<HTMLSpanElement | null>(null);
|
||||||
const pop = usePopper(tooltip?.current?.parentElement, tooltip.current, {
|
const pop = usePopper(tooltip?.current?.parentElement, tooltip.current, {
|
||||||
placement: 'top',
|
placement: 'top',
|
||||||
modifiers: [
|
modifiers: [
|
||||||
|
|
|
@ -4,6 +4,7 @@ import styles from '~/styles/common/inputs.module.scss';
|
||||||
import { Icon } from '~/components/input/Icon';
|
import { Icon } from '~/components/input/Icon';
|
||||||
import { IInputTextProps } from '~/redux/types';
|
import { IInputTextProps } from '~/redux/types';
|
||||||
import { LoaderCircle } from '~/components/input/LoaderCircle';
|
import { LoaderCircle } from '~/components/input/LoaderCircle';
|
||||||
|
import { useTranslatedError } from '~/utils/hooks/useTranslatedError';
|
||||||
|
|
||||||
const InputText: FC<IInputTextProps> = ({
|
const InputText: FC<IInputTextProps> = ({
|
||||||
wrapperClassName,
|
wrapperClassName,
|
||||||
|
@ -20,16 +21,24 @@ const InputText: FC<IInputTextProps> = ({
|
||||||
...props
|
...props
|
||||||
}) => {
|
}) => {
|
||||||
const [focused, setFocused] = useState(false);
|
const [focused, setFocused] = useState(false);
|
||||||
const [inner_ref, setInnerRef] = useState<HTMLInputElement>(null);
|
const [inner_ref, setInnerRef] = useState<HTMLInputElement | null>(null);
|
||||||
|
|
||||||
const onInput = useCallback(
|
const onInput = useCallback(
|
||||||
({ target }: ChangeEvent<HTMLInputElement>) => handler(target.value),
|
({ target }: ChangeEvent<HTMLInputElement>) => {
|
||||||
|
if (!handler) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
handler(target.value);
|
||||||
|
},
|
||||||
[handler]
|
[handler]
|
||||||
);
|
);
|
||||||
|
|
||||||
const onFocus = useCallback(() => setFocused(true), []);
|
const onFocus = useCallback(() => setFocused(true), []);
|
||||||
const onBlur = useCallback(() => setFocused(false), []);
|
const onBlur = useCallback(() => setFocused(false), []);
|
||||||
|
|
||||||
|
const translatedError = useTranslatedError(error);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (onRef) onRef(inner_ref);
|
if (onRef) onRef(inner_ref);
|
||||||
}, [inner_ref, onRef]);
|
}, [inner_ref, onRef]);
|
||||||
|
@ -80,9 +89,9 @@ const InputText: FC<IInputTextProps> = ({
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{error && (
|
{!!translatedError && (
|
||||||
<div className={styles.error}>
|
<div className={styles.error}>
|
||||||
<span>{error}</span>
|
<span>{translatedError}</span>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,10 @@ export class GodRays extends React.Component<IGodRaysProps> {
|
||||||
|
|
||||||
const ctx = this.canvas.getContext('2d');
|
const ctx = this.canvas.getContext('2d');
|
||||||
|
|
||||||
|
if (!ctx) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
ctx.globalCompositeOperation = 'luminosity';
|
ctx.globalCompositeOperation = 'luminosity';
|
||||||
ctx.clearRect(0, 0, width, height + 100); // clear canvas
|
ctx.clearRect(0, 0, width, height + 100); // clear canvas
|
||||||
ctx.save();
|
ctx.save();
|
||||||
|
@ -123,7 +127,7 @@ export class GodRays extends React.Component<IGodRaysProps> {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
canvas: HTMLCanvasElement;
|
canvas: HTMLCanvasElement | null | undefined;
|
||||||
|
|
||||||
inc;
|
inc;
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,8 +42,12 @@ const NotificationsUnconnected: FC<IProps> = ({
|
||||||
(notification: INotification) => {
|
(notification: INotification) => {
|
||||||
switch (notification.type) {
|
switch (notification.type) {
|
||||||
case 'message':
|
case 'message':
|
||||||
|
if (!(notification as IMessageNotification)?.content?.from?.username) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
return authOpenProfile(
|
return authOpenProfile(
|
||||||
(notification as IMessageNotification).content.from.username,
|
(notification as IMessageNotification).content.from!.username,
|
||||||
'messages'
|
'messages'
|
||||||
);
|
);
|
||||||
default:
|
default:
|
||||||
|
@ -78,9 +82,6 @@ const NotificationsUnconnected: FC<IProps> = ({
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const Notifications = connect(
|
const Notifications = connect(mapStateToProps, mapDispatchToProps)(NotificationsUnconnected);
|
||||||
mapStateToProps,
|
|
||||||
mapDispatchToProps
|
|
||||||
)(NotificationsUnconnected);
|
|
||||||
|
|
||||||
export { Notifications };
|
export { Notifications };
|
||||||
|
|
|
@ -15,10 +15,12 @@ interface IProps {
|
||||||
|
|
||||||
const UserButton: FC<IProps> = ({ user: { username, photo }, authOpenProfile, onLogout }) => {
|
const UserButton: FC<IProps> = ({ user: { username, photo }, authOpenProfile, onLogout }) => {
|
||||||
const onProfileOpen = useCallback(() => {
|
const onProfileOpen = useCallback(() => {
|
||||||
|
if (!username) return;
|
||||||
authOpenProfile(username, 'profile');
|
authOpenProfile(username, 'profile');
|
||||||
}, [authOpenProfile, username]);
|
}, [authOpenProfile, username]);
|
||||||
|
|
||||||
const onSettingsOpen = useCallback(() => {
|
const onSettingsOpen = useCallback(() => {
|
||||||
|
if (!username) return;
|
||||||
authOpenProfile(username, 'settings');
|
authOpenProfile(username, 'settings');
|
||||||
}, [authOpenProfile, username]);
|
}, [authOpenProfile, username]);
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ type Props = ReturnType<typeof mapStateToProps> &
|
||||||
file: IFile;
|
file: IFile;
|
||||||
isEditing?: boolean;
|
isEditing?: boolean;
|
||||||
onDelete?: (id: IFile['id']) => void;
|
onDelete?: (id: IFile['id']) => void;
|
||||||
onTitleChange?: (file_id: IFile['id'], title: IFile['metadata']['title']) => void;
|
onTitleChange?: (file_id: IFile['id'], title: string) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
const AudioPlayerUnconnected = memo(
|
const AudioPlayerUnconnected = memo(
|
||||||
|
@ -93,14 +93,18 @@ const AudioPlayerUnconnected = memo(
|
||||||
[file.metadata]
|
[file.metadata]
|
||||||
);
|
);
|
||||||
|
|
||||||
const onRename = useCallback((val: string) => onTitleChange(file.id, val), [
|
const onRename = useCallback(
|
||||||
onTitleChange,
|
(val: string) => {
|
||||||
file.id,
|
if (!onTitleChange) return;
|
||||||
]);
|
|
||||||
|
onTitleChange(file.id, val);
|
||||||
|
},
|
||||||
|
[onTitleChange, file.id]
|
||||||
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const active = current && current.id === file.id;
|
const active = current && current.id === file.id;
|
||||||
setPlaying(current && current.id === file.id);
|
setPlaying(!!current && current.id === file.id);
|
||||||
|
|
||||||
if (active) Player.on('playprogress', onProgress);
|
if (active) Player.on('playprogress', onProgress);
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,10 @@ const ImageSwitcher: FC<IProps> = ({ total, current, onChange, loaded }) => {
|
||||||
<div className={styles.switcher}>
|
<div className={styles.switcher}>
|
||||||
{range(0, total).map(item => (
|
{range(0, total).map(item => (
|
||||||
<div
|
<div
|
||||||
className={classNames({ is_active: item === current, is_loaded: loaded[item] })}
|
className={classNames({
|
||||||
|
is_active: item === current,
|
||||||
|
is_loaded: loaded && loaded[item],
|
||||||
|
})}
|
||||||
key={item}
|
key={item}
|
||||||
onClick={() => onChange(item)}
|
onClick={() => onChange(item)}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -14,7 +14,7 @@ import { modalShowPhotoswipe } from '~/redux/modal/actions';
|
||||||
import { useDispatch } from 'react-redux';
|
import { useDispatch } from 'react-redux';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
comments?: IComment[];
|
comments: IComment[];
|
||||||
count: INodeState['comment_count'];
|
count: INodeState['comment_count'];
|
||||||
user: IUser;
|
user: IUser;
|
||||||
order?: 'ASC' | 'DESC';
|
order?: 'ASC' | 'DESC';
|
||||||
|
|
|
@ -36,8 +36,8 @@ const NodeImageSlideBlock: FC<IProps> = ({
|
||||||
const [is_dragging, setIsDragging] = useState(false);
|
const [is_dragging, setIsDragging] = useState(false);
|
||||||
const [drag_start, setDragStart] = useState(0);
|
const [drag_start, setDragStart] = useState(0);
|
||||||
|
|
||||||
const slide = useRef<HTMLDivElement>();
|
const slide = useRef<HTMLDivElement>(null);
|
||||||
const wrap = useRef<HTMLDivElement>();
|
const wrap = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
const setHeightThrottled = useCallback(throttle(100, setHeight), [setHeight]);
|
const setHeightThrottled = useCallback(throttle(100, setHeight), [setHeight]);
|
||||||
|
|
||||||
|
@ -221,6 +221,8 @@ const NodeImageSlideBlock: FC<IProps> = ({
|
||||||
|
|
||||||
const changeCurrent = useCallback(
|
const changeCurrent = useCallback(
|
||||||
(item: number) => {
|
(item: number) => {
|
||||||
|
if (!wrap.current) return;
|
||||||
|
|
||||||
const { width } = wrap.current.getBoundingClientRect();
|
const { width } = wrap.current.getBoundingClientRect();
|
||||||
setOffset(-1 * item * width);
|
setOffset(-1 * item * width);
|
||||||
},
|
},
|
||||||
|
@ -266,10 +268,10 @@ const NodeImageSlideBlock: FC<IProps> = ({
|
||||||
[styles.is_active]: index === current,
|
[styles.is_active]: index === current,
|
||||||
})}
|
})}
|
||||||
ref={setRef(index)}
|
ref={setRef(index)}
|
||||||
key={node.updated_at + file.id}
|
key={`${node?.updated_at || ''} + ${file?.id || ''} + ${index}`}
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
viewBox={`0 0 ${file.metadata.width} ${file.metadata.height}`}
|
viewBox={`0 0 ${file?.metadata?.width || 0} ${file?.metadata?.height || 0}`}
|
||||||
className={classNames(styles.preview, { [styles.is_loaded]: loaded[index] })}
|
className={classNames(styles.preview, { [styles.is_loaded]: loaded[index] })}
|
||||||
style={{
|
style={{
|
||||||
maxHeight: max_height,
|
maxHeight: max_height,
|
||||||
|
|
|
@ -24,11 +24,11 @@ const NodePanel: FC<IProps> = memo(
|
||||||
({ node, layout, can_edit, can_like, can_star, is_loading, onEdit, onLike, onStar, onLock }) => {
|
({ node, layout, can_edit, can_like, can_star, is_loading, onEdit, onLike, onStar, onLock }) => {
|
||||||
const [stack, setStack] = useState(false);
|
const [stack, setStack] = useState(false);
|
||||||
|
|
||||||
const ref = useRef(null);
|
const ref = useRef<HTMLDivElement>(null);
|
||||||
const getPlace = useCallback(() => {
|
const getPlace = useCallback(() => {
|
||||||
if (!ref.current) return;
|
if (!ref.current) return;
|
||||||
|
|
||||||
const { bottom } = ref.current.getBoundingClientRect();
|
const { bottom } = ref.current!.getBoundingClientRect();
|
||||||
|
|
||||||
setStack(bottom > window.innerHeight);
|
setStack(bottom > window.innerHeight);
|
||||||
}, [ref]);
|
}, [ref]);
|
||||||
|
@ -75,7 +75,7 @@ const NodePanel: FC<IProps> = memo(
|
||||||
can_edit={can_edit}
|
can_edit={can_edit}
|
||||||
can_like={can_like}
|
can_like={can_like}
|
||||||
can_star={can_star}
|
can_star={can_star}
|
||||||
is_loading={is_loading}
|
is_loading={!!is_loading}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -96,7 +96,9 @@ const NodePanelInner: FC<IProps> = memo(
|
||||||
<Icon icon="heart" size={24} onClick={onLike} />
|
<Icon icon="heart" size={24} onClick={onLike} />
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{like_count > 0 && <div className={styles.like_count}>{like_count}</div>}
|
{!!like_count && like_count > 0 && (
|
||||||
|
<div className={styles.like_count}>{like_count}</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
import React, { FC, memo, useCallback, useEffect, useMemo, useRef, useState } from "react";
|
import React, { FC, memo, useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
||||||
import styles from "./styles.module.scss";
|
import styles from './styles.module.scss';
|
||||||
import classNames from "classnames";
|
import classNames from 'classnames';
|
||||||
import { INode } from "~/redux/types";
|
import { INode } from '~/redux/types';
|
||||||
import { PRESETS, URLS } from "~/constants/urls";
|
import { PRESETS, URLS } from '~/constants/urls';
|
||||||
import { RouteComponentProps, withRouter } from "react-router";
|
import { RouteComponentProps, withRouter } from 'react-router';
|
||||||
import { getURL, stringToColour } from "~/utils/dom";
|
import { getURL, stringToColour } from '~/utils/dom';
|
||||||
|
|
||||||
type IProps = RouteComponentProps & {
|
type IProps = RouteComponentProps & {
|
||||||
item: Partial<INode>;
|
item: Partial<INode>;
|
||||||
};
|
};
|
||||||
|
|
||||||
type CellSize = 'small' | 'medium' | 'large'
|
type CellSize = 'small' | 'medium' | 'large';
|
||||||
|
|
||||||
const getTitleLetters = (title: string): string => {
|
const getTitleLetters = (title: string): string => {
|
||||||
const words = (title && title.split(' ')) || [];
|
const words = (title && title.split(' ')) || [];
|
||||||
|
@ -43,17 +43,21 @@ const NodeRelatedItemUnconnected: FC<IProps> = memo(({ item, history }) => {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!ref.current) return;
|
if (!ref.current) return;
|
||||||
const cb = () => setWidth(ref.current.getBoundingClientRect().width)
|
|
||||||
|
const cb = () => setWidth(ref.current!.getBoundingClientRect().width);
|
||||||
|
|
||||||
window.addEventListener('resize', cb);
|
window.addEventListener('resize', cb);
|
||||||
|
|
||||||
cb();
|
cb();
|
||||||
|
|
||||||
return () => window.removeEventListener('resize', cb);
|
return () => window.removeEventListener('resize', cb);
|
||||||
}, [ref.current])
|
}, [ref.current]);
|
||||||
|
|
||||||
const size = useMemo<CellSize>(() => {
|
const size = useMemo<CellSize>(() => {
|
||||||
if (width > 90) return 'large';
|
if (width > 90) return 'large';
|
||||||
if (width > 76) return 'medium';
|
if (width > 76) return 'medium';
|
||||||
return 'small';
|
return 'small';
|
||||||
}, [width])
|
}, [width]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -9,7 +9,7 @@ import markdown from '~/styles/common/markdown.module.scss';
|
||||||
interface IProps extends INodeComponentProps {}
|
interface IProps extends INodeComponentProps {}
|
||||||
|
|
||||||
const NodeTextBlock: FC<IProps> = ({ node }) => {
|
const NodeTextBlock: FC<IProps> = ({ node }) => {
|
||||||
const content = useMemo(() => formatTextParagraphs(path(['blocks', 0, 'text'], node)), [
|
const content = useMemo(() => formatTextParagraphs(path(['blocks', 0, 'text'], node) || ''), [
|
||||||
node.blocks,
|
node.blocks,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ interface IProps extends INodeComponentProps {}
|
||||||
|
|
||||||
const NodeVideoBlock: FC<IProps> = ({ node }) => {
|
const NodeVideoBlock: FC<IProps> = ({ node }) => {
|
||||||
const video = useMemo(() => {
|
const video = useMemo(() => {
|
||||||
const url: string = path(['blocks', 0, 'url'], node);
|
const url: string = path(['blocks', 0, 'url'], node) || '';
|
||||||
const match =
|
const match =
|
||||||
url &&
|
url &&
|
||||||
url.match(
|
url.match(
|
||||||
|
|
|
@ -21,7 +21,7 @@ const NotificationMessage: FC<IProps> = ({
|
||||||
<div className={styles.item} onMouseDown={onMouseDown}>
|
<div className={styles.item} onMouseDown={onMouseDown}>
|
||||||
<div className={styles.item_head}>
|
<div className={styles.item_head}>
|
||||||
<Icon icon="message" />
|
<Icon icon="message" />
|
||||||
<div className={styles.item_title}>Сообщение от ~{from.username}:</div>
|
<div className={styles.item_title}>Сообщение от ~{from?.username}:</div>
|
||||||
</div>
|
</div>
|
||||||
<div className={styles.item_text}>{text}</div>
|
<div className={styles.item_text}>{text}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -39,7 +39,7 @@ const MessageFormUnconnected: FC<IProps> = ({
|
||||||
const onSuccess = useCallback(() => {
|
const onSuccess = useCallback(() => {
|
||||||
setText('');
|
setText('');
|
||||||
|
|
||||||
if (isEditing) {
|
if (isEditing && onCancel) {
|
||||||
onCancel();
|
onCancel();
|
||||||
}
|
}
|
||||||
}, [setText, isEditing, onCancel]);
|
}, [setText, isEditing, onCancel]);
|
||||||
|
@ -50,7 +50,7 @@ const MessageFormUnconnected: FC<IProps> = ({
|
||||||
|
|
||||||
const onKeyDown = useCallback<KeyboardEventHandler<HTMLTextAreaElement>>(
|
const onKeyDown = useCallback<KeyboardEventHandler<HTMLTextAreaElement>>(
|
||||||
({ ctrlKey, key }) => {
|
({ ctrlKey, key }) => {
|
||||||
if (!!ctrlKey && key === 'Enter') onSubmit();
|
if (ctrlKey && key === 'Enter') onSubmit();
|
||||||
},
|
},
|
||||||
[onSubmit]
|
[onSubmit]
|
||||||
);
|
);
|
||||||
|
|
|
@ -5,6 +5,8 @@ import { connect } from 'react-redux';
|
||||||
import { selectAuthProfile } from '~/redux/auth/selectors';
|
import { selectAuthProfile } from '~/redux/auth/selectors';
|
||||||
import { ProfileLoader } from '~/containers/profile/ProfileLoader';
|
import { ProfileLoader } from '~/containers/profile/ProfileLoader';
|
||||||
import { Group } from '~/components/containers/Group';
|
import { Group } from '~/components/containers/Group';
|
||||||
|
import markdown from '~/styles/common/markdown.module.scss';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
|
||||||
const mapStateToProps = state => ({
|
const mapStateToProps = state => ({
|
||||||
profile: selectAuthProfile(state),
|
profile: selectAuthProfile(state),
|
||||||
|
@ -17,15 +19,15 @@ const ProfileDescriptionUnconnected: FC<IProps> = ({ profile: { user, is_loading
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.wrap}>
|
<div className={styles.wrap}>
|
||||||
{user.description && (
|
{!!user?.description && (
|
||||||
<Group
|
<Group
|
||||||
className={styles.content}
|
className={classNames(styles.content, markdown.wrapper)}
|
||||||
dangerouslySetInnerHTML={{ __html: formatText(user.description) }}
|
dangerouslySetInnerHTML={{ __html: formatText(user.description) }}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{!user.description && (
|
{!user?.description && (
|
||||||
<div className={styles.placeholder}>
|
<div className={styles.placeholder}>
|
||||||
{user.fullname || user.username} пока ничего не рассказал о себе
|
{user?.fullname || user?.username} пока ничего не рассказал о себе
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { ITag } from '~/redux/types';
|
||||||
import { TagWrapper } from '~/components/tags/TagWrapper';
|
import { TagWrapper } from '~/components/tags/TagWrapper';
|
||||||
|
|
||||||
const getTagFeature = (tag: Partial<ITag>) => {
|
const getTagFeature = (tag: Partial<ITag>) => {
|
||||||
if (tag.title.substr(0, 1) === '/') return 'green';
|
if (tag?.title?.substr(0, 1) === '/') return 'green';
|
||||||
|
|
||||||
return '';
|
return '';
|
||||||
};
|
};
|
||||||
|
|
|
@ -87,7 +87,10 @@ const TagAutocompleteUnconnected: FC<Props> = ({
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
tagSetAutocomplete({ options: [] });
|
tagSetAutocomplete({ options: [] });
|
||||||
return () => tagSetAutocomplete({ options: [] });
|
|
||||||
|
return () => {
|
||||||
|
tagSetAutocomplete({ options: [] });
|
||||||
|
};
|
||||||
}, [tagSetAutocomplete]);
|
}, [tagSetAutocomplete]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
|
@ -77,6 +77,10 @@ const TagInput: FC<IProps> = ({ exclude, onAppend, onClearTag, onSubmit }) => {
|
||||||
const onFocus = useCallback(() => setFocused(true), []);
|
const onFocus = useCallback(() => setFocused(true), []);
|
||||||
const onBlur = useCallback(
|
const onBlur = useCallback(
|
||||||
event => {
|
event => {
|
||||||
|
if (!wrapper.current || !ref.current) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (wrapper.current.contains(event.target)) {
|
if (wrapper.current.contains(event.target)) {
|
||||||
ref.current.focus();
|
ref.current.focus();
|
||||||
return;
|
return;
|
||||||
|
@ -126,7 +130,7 @@ const TagInput: FC<IProps> = ({ exclude, onAppend, onClearTag, onSubmit }) => {
|
||||||
/>
|
/>
|
||||||
</TagWrapper>
|
</TagWrapper>
|
||||||
|
|
||||||
{onInput && focused && input?.length > 0 && (
|
{onInput && focused && input?.length > 0 && ref.current && (
|
||||||
<TagAutocomplete
|
<TagAutocomplete
|
||||||
exclude={exclude}
|
exclude={exclude}
|
||||||
input={ref.current}
|
input={ref.current}
|
||||||
|
|
|
@ -20,14 +20,18 @@ export const Tags: FC<IProps> = ({ tags, is_editable, onTagsChange, onTagClick,
|
||||||
|
|
||||||
const onSubmit = useCallback(
|
const onSubmit = useCallback(
|
||||||
(last: string[]) => {
|
(last: string[]) => {
|
||||||
|
if (!onTagsChange) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const exist = tags.map(tag => tag.title);
|
const exist = tags.map(tag => tag.title);
|
||||||
onTagsChange(uniq([...exist, ...data, ...last]));
|
onTagsChange(uniq([...exist, ...data, ...last]).filter(el => el) as string[]);
|
||||||
},
|
},
|
||||||
[data]
|
[data]
|
||||||
);
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setData(data.filter(title => !tags.some(tag => tag.title.trim() === title.trim())));
|
setData(data.filter(title => !tags.some(tag => tag?.title?.trim() === title.trim())));
|
||||||
}, [tags]);
|
}, [tags]);
|
||||||
|
|
||||||
const onAppendTag = useCallback(
|
const onAppendTag = useCallback(
|
||||||
|
@ -44,10 +48,10 @@ export const Tags: FC<IProps> = ({ tags, is_editable, onTagsChange, onTagClick,
|
||||||
return last;
|
return last;
|
||||||
}, [data, setData]);
|
}, [data, setData]);
|
||||||
|
|
||||||
const exclude = useMemo(() => [...(data || []), ...(tags || []).map(({ title }) => title)], [
|
const exclude = useMemo(
|
||||||
data,
|
() => [...(data || []), ...(tags || []).filter(el => el.title).map(({ title }) => title!)],
|
||||||
tags,
|
[data, tags]
|
||||||
]);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<TagField {...props}>
|
<TagField {...props}>
|
||||||
|
|
|
@ -31,9 +31,9 @@ export const API = {
|
||||||
RELATED: (id: INode['id']) => `/node/${id}/related`,
|
RELATED: (id: INode['id']) => `/node/${id}/related`,
|
||||||
UPDATE_TAGS: (id: INode['id']) => `/node/${id}/tags`,
|
UPDATE_TAGS: (id: INode['id']) => `/node/${id}/tags`,
|
||||||
POST_LIKE: (id: INode['id']) => `/node/${id}/like`,
|
POST_LIKE: (id: INode['id']) => `/node/${id}/like`,
|
||||||
POST_STAR: (id: INode['id']) => `/node/${id}/heroic`,
|
POST_HEROIC: (id: INode['id']) => `/node/${id}/heroic`,
|
||||||
POST_LOCK: (id: INode['id']) => `/node/${id}/lock`,
|
POST_LOCK: (id: INode['id']) => `/node/${id}/lock`,
|
||||||
POST_LOCK_COMMENT: (id: INode['id'], comment_id: IComment['id']) =>
|
LOCK_COMMENT: (id: INode['id'], comment_id: IComment['id']) =>
|
||||||
`/node/${id}/comment/${comment_id}/lock`,
|
`/node/${id}/comment/${comment_id}/lock`,
|
||||||
SET_CELL_VIEW: (id: INode['id']) => `/node/${id}/cell-view`,
|
SET_CELL_VIEW: (id: INode['id']) => `/node/${id}/cell-view`,
|
||||||
},
|
},
|
||||||
|
|
|
@ -42,6 +42,7 @@ export const ERRORS = {
|
||||||
CANT_RESTORE_COMMENT: 'CantRestoreComment',
|
CANT_RESTORE_COMMENT: 'CantRestoreComment',
|
||||||
MESSAGE_NOT_FOUND: 'MessageNotFound',
|
MESSAGE_NOT_FOUND: 'MessageNotFound',
|
||||||
COMMENT_TOO_LONG: 'CommentTooLong',
|
COMMENT_TOO_LONG: 'CommentTooLong',
|
||||||
|
NETWORK_ERROR: 'Network Error',
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ERROR_LITERAL = {
|
export const ERROR_LITERAL = {
|
||||||
|
@ -89,4 +90,5 @@ export const ERROR_LITERAL = {
|
||||||
[ERRORS.CANT_RESTORE_COMMENT]: 'Не удалось восстановить комментарий',
|
[ERRORS.CANT_RESTORE_COMMENT]: 'Не удалось восстановить комментарий',
|
||||||
[ERRORS.MESSAGE_NOT_FOUND]: 'Сообщение не найдено',
|
[ERRORS.MESSAGE_NOT_FOUND]: 'Сообщение не найдено',
|
||||||
[ERRORS.COMMENT_TOO_LONG]: 'Комментарий слишком длинный',
|
[ERRORS.COMMENT_TOO_LONG]: 'Комментарий слишком длинный',
|
||||||
|
[ERRORS.NETWORK_ERROR]: 'Подключение не удалось',
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import { INode } from '~/redux/types';
|
||||||
|
|
||||||
export const URLS = {
|
export const URLS = {
|
||||||
BASE: '/',
|
BASE: '/',
|
||||||
BORIS: '/boris',
|
BORIS: '/boris',
|
||||||
|
@ -12,7 +14,7 @@ export const URLS = {
|
||||||
NOT_FOUND: '/lost',
|
NOT_FOUND: '/lost',
|
||||||
BACKEND_DOWN: '/oopsie',
|
BACKEND_DOWN: '/oopsie',
|
||||||
},
|
},
|
||||||
NODE_URL: (id: number | string) => `/post${id}`,
|
NODE_URL: (id: INode['id'] | string) => `/post${id}`,
|
||||||
NODE_TAG_URL: (id: number, tagName: string) => `/post${id}/tag/${tagName}`,
|
NODE_TAG_URL: (id: number, tagName: string) => `/post${id}/tag/${tagName}`,
|
||||||
PROFILE: (username: string) => `/~${username}`,
|
PROFILE: (username: string) => `/~${username}`,
|
||||||
PROFILE_PAGE: (username: string) => `/profile/${username}`,
|
PROFILE_PAGE: (username: string) => `/profile/${username}`,
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import React, { FC, MouseEventHandler, ReactElement, useEffect, useRef } from "react";
|
import React, { FC, MouseEventHandler, ReactElement, useEffect, useRef } from 'react';
|
||||||
import styles from "./styles.module.scss";
|
import styles from './styles.module.scss';
|
||||||
import { clearAllBodyScrollLocks, disableBodyScroll } from "body-scroll-lock";
|
import { clearAllBodyScrollLocks, disableBodyScroll } from 'body-scroll-lock';
|
||||||
import { Icon } from "~/components/input/Icon";
|
import { Icon } from '~/components/input/Icon';
|
||||||
import { LoaderCircle } from "~/components/input/LoaderCircle";
|
import { LoaderCircle } from '~/components/input/LoaderCircle';
|
||||||
import { useCloseOnEscape } from "~/utils/hooks";
|
import { useCloseOnEscape } from '~/utils/hooks';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
children: React.ReactChild;
|
children: React.ReactChild;
|
||||||
|
@ -14,7 +14,7 @@ interface IProps {
|
||||||
width?: number;
|
width?: number;
|
||||||
error?: string;
|
error?: string;
|
||||||
is_loading?: boolean;
|
is_loading?: boolean;
|
||||||
overlay?: ReactElement;
|
overlay?: JSX.Element;
|
||||||
|
|
||||||
onOverlayClick?: MouseEventHandler<HTMLDivElement>;
|
onOverlayClick?: MouseEventHandler<HTMLDivElement>;
|
||||||
onRefCapture?: (ref: any) => void;
|
onRefCapture?: (ref: any) => void;
|
||||||
|
|
|
@ -1,4 +1,12 @@
|
||||||
import React, { createElement, FC, FormEvent, useCallback, useEffect, useState } from 'react';
|
import React, {
|
||||||
|
createElement,
|
||||||
|
FC,
|
||||||
|
FormEvent,
|
||||||
|
useCallback,
|
||||||
|
useEffect,
|
||||||
|
useMemo,
|
||||||
|
useState,
|
||||||
|
} from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { IDialogProps } from '~/redux/modal/constants';
|
import { IDialogProps } from '~/redux/modal/constants';
|
||||||
import { useCloseOnEscape } from '~/utils/hooks';
|
import { useCloseOnEscape } from '~/utils/hooks';
|
||||||
|
@ -16,6 +24,7 @@ import { EMPTY_NODE, NODE_EDITORS } from '~/redux/node/constants';
|
||||||
import { BetterScrollDialog } from '../BetterScrollDialog';
|
import { BetterScrollDialog } from '../BetterScrollDialog';
|
||||||
import { CoverBackdrop } from '~/components/containers/CoverBackdrop';
|
import { CoverBackdrop } from '~/components/containers/CoverBackdrop';
|
||||||
import { IEditorComponentProps } from '~/redux/node/types';
|
import { IEditorComponentProps } from '~/redux/node/types';
|
||||||
|
import { has, values } from 'ramda';
|
||||||
|
|
||||||
const mapStateToProps = state => {
|
const mapStateToProps = state => {
|
||||||
const { editor, errors } = selectNode(state);
|
const { editor, errors } = selectNode(state);
|
||||||
|
@ -32,7 +41,7 @@ const mapDispatchToProps = {
|
||||||
type IProps = IDialogProps &
|
type IProps = IDialogProps &
|
||||||
ReturnType<typeof mapStateToProps> &
|
ReturnType<typeof mapStateToProps> &
|
||||||
typeof mapDispatchToProps & {
|
typeof mapDispatchToProps & {
|
||||||
type: keyof typeof NODE_EDITORS;
|
type: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
const EditorDialogUnconnected: FC<IProps> = ({
|
const EditorDialogUnconnected: FC<IProps> = ({
|
||||||
|
@ -44,7 +53,7 @@ const EditorDialogUnconnected: FC<IProps> = ({
|
||||||
type,
|
type,
|
||||||
}) => {
|
}) => {
|
||||||
const [data, setData] = useState(EMPTY_NODE);
|
const [data, setData] = useState(EMPTY_NODE);
|
||||||
const [temp, setTemp] = useState([]);
|
const [temp, setTemp] = useState<string[]>([]);
|
||||||
|
|
||||||
useEffect(() => setData(editor), [editor]);
|
useEffect(() => setData(editor), [editor]);
|
||||||
|
|
||||||
|
@ -93,9 +102,18 @@ const EditorDialogUnconnected: FC<IProps> = ({
|
||||||
|
|
||||||
useCloseOnEscape(onRequestClose);
|
useCloseOnEscape(onRequestClose);
|
||||||
|
|
||||||
const error = errors && Object.values(errors)[0];
|
const error = values(errors)[0];
|
||||||
|
const component = useMemo(() => {
|
||||||
|
if (!has(type, NODE_EDITORS)) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
if (!Object.prototype.hasOwnProperty.call(NODE_EDITORS, type)) return null;
|
return NODE_EDITORS[type];
|
||||||
|
}, [type]);
|
||||||
|
|
||||||
|
if (!component) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form onSubmit={onSubmit} className={styles.form}>
|
<form onSubmit={onSubmit} className={styles.form}>
|
||||||
|
@ -107,7 +125,7 @@ const EditorDialogUnconnected: FC<IProps> = ({
|
||||||
onClose={onRequestClose}
|
onClose={onRequestClose}
|
||||||
>
|
>
|
||||||
<div className={styles.editor}>
|
<div className={styles.editor}>
|
||||||
{createElement(NODE_EDITORS[type], {
|
{createElement(component, {
|
||||||
data,
|
data,
|
||||||
setData,
|
setData,
|
||||||
temp,
|
temp,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React, { FC, FormEvent, useCallback, useEffect, useState } from 'react';
|
import React, { FC, FormEvent, useCallback, useEffect, useMemo, useState } from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { DIALOGS, IDialogProps } from '~/redux/modal/constants';
|
import { DIALOGS, IDialogProps } from '~/redux/modal/constants';
|
||||||
import { useCloseOnEscape } from '~/utils/hooks';
|
import { useCloseOnEscape } from '~/utils/hooks';
|
||||||
|
@ -18,6 +18,8 @@ import { pick } from 'ramda';
|
||||||
import { LoginDialogButtons } from '~/containers/dialogs/LoginDialogButtons';
|
import { LoginDialogButtons } from '~/containers/dialogs/LoginDialogButtons';
|
||||||
import { OAUTH_EVENT_TYPES } from '~/redux/types';
|
import { OAUTH_EVENT_TYPES } from '~/redux/types';
|
||||||
import { DialogTitle } from '~/components/dialogs/DialogTitle';
|
import { DialogTitle } from '~/components/dialogs/DialogTitle';
|
||||||
|
import { ERROR_LITERAL } from '~/constants/errors';
|
||||||
|
import { useTranslatedError } from '~/utils/hooks/useTranslatedError';
|
||||||
|
|
||||||
const mapStateToProps = state => ({
|
const mapStateToProps = state => ({
|
||||||
...pick(['error', 'is_registering'], selectAuthLogin(state)),
|
...pick(['error', 'is_registering'], selectAuthLogin(state)),
|
||||||
|
@ -80,7 +82,7 @@ const LoginDialogUnconnected: FC<IProps> = ({
|
||||||
);
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (error) userSetLoginError(null);
|
if (error) userSetLoginError('');
|
||||||
}, [username, password]);
|
}, [username, password]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
@ -90,12 +92,14 @@ const LoginDialogUnconnected: FC<IProps> = ({
|
||||||
|
|
||||||
useCloseOnEscape(onRequestClose);
|
useCloseOnEscape(onRequestClose);
|
||||||
|
|
||||||
|
const translatedError = useTranslatedError(error);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form onSubmit={onSubmit}>
|
<form onSubmit={onSubmit}>
|
||||||
<div>
|
<div>
|
||||||
<BetterScrollDialog
|
<BetterScrollDialog
|
||||||
width={300}
|
width={300}
|
||||||
error={error}
|
error={translatedError}
|
||||||
onClose={onRequestClose}
|
onClose={onRequestClose}
|
||||||
footer={<LoginDialogButtons openOauthWindow={openOauthWindow} />}
|
footer={<LoginDialogButtons openOauthWindow={openOauthWindow} />}
|
||||||
backdrop={<div className={styles.backdrop} />}
|
backdrop={<div className={styles.backdrop} />}
|
||||||
|
|
|
@ -3,9 +3,10 @@ import { Button } from '~/components/input/Button';
|
||||||
import { Grid } from '~/components/containers/Grid';
|
import { Grid } from '~/components/containers/Grid';
|
||||||
import { Group } from '~/components/containers/Group';
|
import { Group } from '~/components/containers/Group';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
|
import { ISocialProvider } from '~/redux/auth/types';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
openOauthWindow: (provider: string) => MouseEventHandler;
|
openOauthWindow: (provider: ISocialProvider) => MouseEventHandler;
|
||||||
}
|
}
|
||||||
|
|
||||||
const LoginDialogButtons: FC<IProps> = ({ openOauthWindow }) => (
|
const LoginDialogButtons: FC<IProps> = ({ openOauthWindow }) => (
|
||||||
|
|
|
@ -24,7 +24,7 @@ const ModalUnconnected: FC<IProps> = ({
|
||||||
}) => {
|
}) => {
|
||||||
const onRequestClose = useCallback(() => {
|
const onRequestClose = useCallback(() => {
|
||||||
modalSetShown(false);
|
modalSetShown(false);
|
||||||
modalSetDialog(null);
|
modalSetDialog('');
|
||||||
}, [modalSetShown, modalSetDialog]);
|
}, [modalSetShown, modalSetDialog]);
|
||||||
|
|
||||||
if (!dialog || !DIALOG_CONTENT[dialog] || !is_shown) return null;
|
if (!dialog || !DIALOG_CONTENT[dialog] || !is_shown) return null;
|
||||||
|
@ -43,10 +43,7 @@ const ModalUnconnected: FC<IProps> = ({
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const Modal = connect(
|
const Modal = connect(mapStateToProps, mapDispatchToProps)(ModalUnconnected);
|
||||||
mapStateToProps,
|
|
||||||
mapDispatchToProps
|
|
||||||
)(ModalUnconnected);
|
|
||||||
|
|
||||||
export { ModalUnconnected, Modal };
|
export { ModalUnconnected, Modal };
|
||||||
|
|
||||||
|
|
|
@ -78,7 +78,9 @@ const PhotoSwipeUnconnected: FC<Props> = ({ photoswipe, modalSetShown }) => {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
window.location.hash = 'preview';
|
window.location.hash = 'preview';
|
||||||
return () => (window.location.hash = '');
|
return () => {
|
||||||
|
window.location.hash = '';
|
||||||
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React, { FC, useState, useMemo, useCallback, useEffect } from 'react';
|
import React, { FC, useCallback, useEffect, useMemo, useState } from 'react';
|
||||||
import { IDialogProps } from '~/redux/types';
|
import { IDialogProps } from '~/redux/types';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { BetterScrollDialog } from '../BetterScrollDialog';
|
import { BetterScrollDialog } from '../BetterScrollDialog';
|
||||||
|
@ -49,7 +49,7 @@ const RestorePasswordDialogUnconnected: FC<IProps> = ({
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (error || is_succesfull) {
|
if (error || is_succesfull) {
|
||||||
authSetRestore({ error: null, is_succesfull: false });
|
authSetRestore({ error: '', is_succesfull: false });
|
||||||
}
|
}
|
||||||
}, [password, password_again]);
|
}, [password, password_again]);
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ const RestorePasswordDialogUnconnected: FC<IProps> = ({
|
||||||
<Icon icon="check" size={64} />
|
<Icon icon="check" size={64} />
|
||||||
|
|
||||||
<div>Пароль обновлен</div>
|
<div>Пароль обновлен</div>
|
||||||
<div>Добро пожаловать домой, ~{user.username}!</div>
|
<div>Добро пожаловать домой, ~{user?.username}!</div>
|
||||||
|
|
||||||
<div />
|
<div />
|
||||||
|
|
||||||
|
@ -77,14 +77,16 @@ const RestorePasswordDialogUnconnected: FC<IProps> = ({
|
||||||
Ура!
|
Ура!
|
||||||
</Button>
|
</Button>
|
||||||
</Group>
|
</Group>
|
||||||
) : null,
|
) : (
|
||||||
|
undefined
|
||||||
|
),
|
||||||
[is_succesfull]
|
[is_succesfull]
|
||||||
);
|
);
|
||||||
|
|
||||||
const not_ready = useMemo(() => (is_loading && !user ? <div className={styles.shade} /> : null), [
|
const not_ready = useMemo(
|
||||||
is_loading,
|
() => (is_loading && !user ? <div className={styles.shade} /> : undefined),
|
||||||
user,
|
[is_loading, user]
|
||||||
]);
|
);
|
||||||
|
|
||||||
const invalid_code = useMemo(
|
const invalid_code = useMemo(
|
||||||
() =>
|
() =>
|
||||||
|
@ -100,7 +102,9 @@ const RestorePasswordDialogUnconnected: FC<IProps> = ({
|
||||||
Очень жаль
|
Очень жаль
|
||||||
</Button>
|
</Button>
|
||||||
</Group>
|
</Group>
|
||||||
) : null,
|
) : (
|
||||||
|
undefined
|
||||||
|
),
|
||||||
[is_loading, user, error]
|
[is_loading, user, error]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -135,7 +139,7 @@ const RestorePasswordDialogUnconnected: FC<IProps> = ({
|
||||||
type="password"
|
type="password"
|
||||||
value={password_again}
|
value={password_again}
|
||||||
handler={setPasswordAgain}
|
handler={setPasswordAgain}
|
||||||
error={password_again && doesnt_match && ERROR_LITERAL[ERRORS.DOESNT_MATCH]}
|
error={password_again && doesnt_match ? ERROR_LITERAL[ERRORS.DOESNT_MATCH] : ''}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Group className={styles.text}>
|
<Group className={styles.text}>
|
||||||
|
|
|
@ -43,7 +43,7 @@ const RestoreRequestDialogUnconnected: FC<IProps> = ({
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (error || is_succesfull) {
|
if (error || is_succesfull) {
|
||||||
authSetRestore({ error: null, is_succesfull: false });
|
authSetRestore({ error: '', is_succesfull: false });
|
||||||
}
|
}
|
||||||
}, [field]);
|
}, [field]);
|
||||||
|
|
||||||
|
@ -72,7 +72,9 @@ const RestoreRequestDialogUnconnected: FC<IProps> = ({
|
||||||
Отлично!
|
Отлично!
|
||||||
</Button>
|
</Button>
|
||||||
</Group>
|
</Group>
|
||||||
) : null,
|
) : (
|
||||||
|
undefined
|
||||||
|
),
|
||||||
[is_succesfull]
|
[is_succesfull]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,7 @@ const BorisLayout: FC<IProps> = () => {
|
||||||
|
|
||||||
if (
|
if (
|
||||||
user.last_seen_boris &&
|
user.last_seen_boris &&
|
||||||
|
last_comment.created_at &&
|
||||||
!isBefore(new Date(user.last_seen_boris), new Date(last_comment.created_at))
|
!isBefore(new Date(user.last_seen_boris), new Date(last_comment.created_at))
|
||||||
)
|
)
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -12,9 +12,14 @@ import { NodeNoComments } from '~/components/node/NodeNoComments';
|
||||||
import { NodeRelated } from '~/components/node/NodeRelated';
|
import { NodeRelated } from '~/components/node/NodeRelated';
|
||||||
import { NodeComments } from '~/components/node/NodeComments';
|
import { NodeComments } from '~/components/node/NodeComments';
|
||||||
import { NodeTags } from '~/components/node/NodeTags';
|
import { NodeTags } from '~/components/node/NodeTags';
|
||||||
import { INodeComponentProps, NODE_COMPONENTS, NODE_HEADS, NODE_INLINES } from '~/redux/node/constants';
|
import {
|
||||||
|
INodeComponentProps,
|
||||||
|
NODE_COMPONENTS,
|
||||||
|
NODE_HEADS,
|
||||||
|
NODE_INLINES,
|
||||||
|
} from '~/redux/node/constants';
|
||||||
import { selectUser } from '~/redux/auth/selectors';
|
import { selectUser } from '~/redux/auth/selectors';
|
||||||
import { pick } from 'ramda';
|
import { path, pick, prop } from 'ramda';
|
||||||
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 { NodeCommentForm } from '~/components/node/NodeCommentForm';
|
import { NodeCommentForm } from '~/components/node/NodeCommentForm';
|
||||||
|
@ -71,9 +76,6 @@ const NodeLayoutUnconnected: FC<IProps> = memo(
|
||||||
nodeStar,
|
nodeStar,
|
||||||
nodeLock,
|
nodeLock,
|
||||||
nodeSetCoverImage,
|
nodeSetCoverImage,
|
||||||
nodeLockComment,
|
|
||||||
nodeEditComment,
|
|
||||||
nodeLoadMoreComments,
|
|
||||||
modalShowPhotoswipe,
|
modalShowPhotoswipe,
|
||||||
}) => {
|
}) => {
|
||||||
const [layout, setLayout] = useState({});
|
const [layout, setLayout] = useState({});
|
||||||
|
@ -84,7 +86,6 @@ const NodeLayoutUnconnected: FC<IProps> = memo(
|
||||||
comments = [],
|
comments = [],
|
||||||
current: node,
|
current: node,
|
||||||
related,
|
related,
|
||||||
comment_data,
|
|
||||||
comment_count,
|
comment_count,
|
||||||
} = useShallowSelect(selectNode);
|
} = useShallowSelect(selectNode);
|
||||||
const updateLayout = useCallback(() => setLayout({}), []);
|
const updateLayout = useCallback(() => setLayout({}), []);
|
||||||
|
@ -103,6 +104,10 @@ const NodeLayoutUnconnected: FC<IProps> = memo(
|
||||||
|
|
||||||
const onTagClick = useCallback(
|
const onTagClick = useCallback(
|
||||||
(tag: Partial<ITag>) => {
|
(tag: Partial<ITag>) => {
|
||||||
|
if (!node?.id || !tag?.title) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
history.push(URLS.NODE_TAG_URL(node.id, encodeURIComponent(tag.title)));
|
history.push(URLS.NODE_TAG_URL(node.id, encodeURIComponent(tag.title)));
|
||||||
},
|
},
|
||||||
[history, node.id]
|
[history, node.id]
|
||||||
|
@ -112,9 +117,9 @@ const NodeLayoutUnconnected: FC<IProps> = memo(
|
||||||
const can_like = useMemo(() => canLikeNode(node, user), [node, user]);
|
const can_like = useMemo(() => canLikeNode(node, user), [node, user]);
|
||||||
const can_star = useMemo(() => canStarNode(node, user), [node, user]);
|
const can_star = useMemo(() => canStarNode(node, user), [node, user]);
|
||||||
|
|
||||||
const head = node && node.type && NODE_HEADS[node.type];
|
const head = useMemo(() => node?.type && prop(node?.type, NODE_HEADS), [node.type]);
|
||||||
const block = node && node.type && NODE_COMPONENTS[node.type];
|
const block = useMemo(() => node?.type && prop(node?.type, NODE_COMPONENTS), [node.type]);
|
||||||
const inline = node && node.type && NODE_INLINES[node.type];
|
const inline = useMemo(() => node?.type && prop(node?.type, NODE_INLINES), [node.type]);
|
||||||
|
|
||||||
const onEdit = useCallback(() => nodeEdit(node.id), [nodeEdit, node]);
|
const onEdit = useCallback(() => nodeEdit(node.id), [nodeEdit, node]);
|
||||||
const onLike = useCallback(() => nodeLike(node.id), [nodeLike, node]);
|
const onLike = useCallback(() => nodeLike(node.id), [nodeLike, node]);
|
||||||
|
@ -147,10 +152,10 @@ const NodeLayoutUnconnected: FC<IProps> = memo(
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{createNodeBlock(head)}
|
{!!head && createNodeBlock(head)}
|
||||||
|
|
||||||
<Card className={styles.node} seamless>
|
<Card className={styles.node} seamless>
|
||||||
{createNodeBlock(block)}
|
{!!block && createNodeBlock(block)}
|
||||||
|
|
||||||
<NodePanel
|
<NodePanel
|
||||||
node={pick(
|
node={pick(
|
||||||
|
@ -208,12 +213,13 @@ const NodeLayoutUnconnected: FC<IProps> = memo(
|
||||||
{!is_loading &&
|
{!is_loading &&
|
||||||
related &&
|
related &&
|
||||||
related.albums &&
|
related.albums &&
|
||||||
|
!!node?.id &&
|
||||||
Object.keys(related.albums)
|
Object.keys(related.albums)
|
||||||
.filter(album => related.albums[album].length > 0)
|
.filter(album => related.albums[album].length > 0)
|
||||||
.map(album => (
|
.map(album => (
|
||||||
<NodeRelated
|
<NodeRelated
|
||||||
title={
|
title={
|
||||||
<Link to={URLS.NODE_TAG_URL(node.id, encodeURIComponent(album))}>
|
<Link to={URLS.NODE_TAG_URL(node.id!, encodeURIComponent(album))}>
|
||||||
{album}
|
{album}
|
||||||
</Link>
|
</Link>
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,43 +1,42 @@
|
||||||
import React, { FC, useCallback, useEffect, useState } from "react";
|
import React, { FC, useCallback, useEffect, useState } from 'react';
|
||||||
import styles from "./styles.module.scss";
|
import styles from './styles.module.scss';
|
||||||
import { connect } from "react-redux";
|
import { connect } from 'react-redux';
|
||||||
import { getURL } from "~/utils/dom";
|
import { getURL } from '~/utils/dom';
|
||||||
import { pick } from "ramda";
|
import { pick } from 'ramda';
|
||||||
import { selectAuthProfile, selectAuthUser } from "~/redux/auth/selectors";
|
import { selectAuthProfile, selectAuthUser } from '~/redux/auth/selectors';
|
||||||
import { PRESETS } from "~/constants/urls";
|
import { PRESETS } from '~/constants/urls';
|
||||||
import { selectUploads } from "~/redux/uploads/selectors";
|
import { selectUploads } from '~/redux/uploads/selectors';
|
||||||
import { IFileWithUUID } from "~/redux/types";
|
import { IFileWithUUID } from '~/redux/types';
|
||||||
import uuid from "uuid4";
|
import uuid from 'uuid4';
|
||||||
import { UPLOAD_SUBJECTS, UPLOAD_TARGETS, UPLOAD_TYPES } from "~/redux/uploads/constants";
|
import { UPLOAD_SUBJECTS, UPLOAD_TARGETS, UPLOAD_TYPES } from '~/redux/uploads/constants';
|
||||||
import { path } from 'ramda';
|
import { path } from 'ramda';
|
||||||
import * as UPLOAD_ACTIONS from "~/redux/uploads/actions";
|
import * as UPLOAD_ACTIONS from '~/redux/uploads/actions';
|
||||||
import * as AUTH_ACTIONS from "~/redux/auth/actions";
|
import * as AUTH_ACTIONS from '~/redux/auth/actions';
|
||||||
import { Icon } from "~/components/input/Icon";
|
import { Icon } from '~/components/input/Icon';
|
||||||
|
|
||||||
const mapStateToProps = state => ({
|
const mapStateToProps = state => ({
|
||||||
user: pick(["id"], selectAuthUser(state)),
|
user: pick(['id'], selectAuthUser(state)),
|
||||||
profile: pick(["is_loading", "user"], selectAuthProfile(state)),
|
profile: pick(['is_loading', 'user'], selectAuthProfile(state)),
|
||||||
uploads: pick(["statuses", "files"], selectUploads(state))
|
uploads: pick(['statuses', 'files'], selectUploads(state)),
|
||||||
});
|
});
|
||||||
|
|
||||||
const mapDispatchToProps = {
|
const mapDispatchToProps = {
|
||||||
uploadUploadFiles: UPLOAD_ACTIONS.uploadUploadFiles,
|
uploadUploadFiles: UPLOAD_ACTIONS.uploadUploadFiles,
|
||||||
authPatchUser: AUTH_ACTIONS.authPatchUser
|
authPatchUser: AUTH_ACTIONS.authPatchUser,
|
||||||
};
|
};
|
||||||
|
|
||||||
type IProps = ReturnType<typeof mapStateToProps> &
|
type IProps = ReturnType<typeof mapStateToProps> & typeof mapDispatchToProps & {};
|
||||||
typeof mapDispatchToProps & {};
|
|
||||||
|
|
||||||
const ProfileAvatarUnconnected: FC<IProps> = ({
|
const ProfileAvatarUnconnected: FC<IProps> = ({
|
||||||
user: { id },
|
user: { id },
|
||||||
profile: { is_loading, user },
|
profile: { is_loading, user },
|
||||||
uploads: { statuses, files },
|
uploads: { statuses, files },
|
||||||
uploadUploadFiles,
|
uploadUploadFiles,
|
||||||
authPatchUser
|
authPatchUser,
|
||||||
}) => {
|
}) => {
|
||||||
const can_edit = !is_loading && id && id === user.id;
|
const can_edit = !is_loading && id && id === user?.id;
|
||||||
|
|
||||||
const [temp, setTemp] = useState<string>(null);
|
const [temp, setTemp] = useState<string>('');
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!can_edit) return;
|
if (!can_edit) return;
|
||||||
|
@ -45,7 +44,7 @@ const ProfileAvatarUnconnected: FC<IProps> = ({
|
||||||
Object.entries(statuses).forEach(([id, status]) => {
|
Object.entries(statuses).forEach(([id, status]) => {
|
||||||
if (temp === id && !!status.uuid && files[status.uuid]) {
|
if (temp === id && !!status.uuid && files[status.uuid]) {
|
||||||
authPatchUser({ photo: files[status.uuid] });
|
authPatchUser({ photo: files[status.uuid] });
|
||||||
setTemp(null);
|
setTemp('');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, [statuses, files, temp, can_edit, authPatchUser]);
|
}, [statuses, files, temp, can_edit, authPatchUser]);
|
||||||
|
@ -58,11 +57,11 @@ const ProfileAvatarUnconnected: FC<IProps> = ({
|
||||||
temp_id: uuid(),
|
temp_id: uuid(),
|
||||||
subject: UPLOAD_SUBJECTS.AVATAR,
|
subject: UPLOAD_SUBJECTS.AVATAR,
|
||||||
target: UPLOAD_TARGETS.PROFILES,
|
target: UPLOAD_TARGETS.PROFILES,
|
||||||
type: UPLOAD_TYPES.IMAGE
|
type: UPLOAD_TYPES.IMAGE,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
setTemp(path([0, "temp_id"], items));
|
setTemp(path([0, 'temp_id'], items) || '');
|
||||||
uploadUploadFiles(items.slice(0, 1));
|
uploadUploadFiles(items.slice(0, 1));
|
||||||
},
|
},
|
||||||
[uploadUploadFiles, setTemp]
|
[uploadUploadFiles, setTemp]
|
||||||
|
@ -81,13 +80,15 @@ const ProfileAvatarUnconnected: FC<IProps> = ({
|
||||||
[onUpload, can_edit]
|
[onUpload, can_edit]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const backgroundImage = is_loading
|
||||||
|
? undefined
|
||||||
|
: `url("${user && getURL(user.photo, PRESETS.avatar)}")`;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={styles.avatar}
|
className={styles.avatar}
|
||||||
style={{
|
style={{
|
||||||
backgroundImage: is_loading
|
backgroundImage,
|
||||||
? null
|
|
||||||
: `url("${user && getURL(user.photo, PRESETS.avatar)}")`
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{can_edit && <input type="file" onInput={onInputChange} />}
|
{can_edit && <input type="file" onInput={onInputChange} />}
|
||||||
|
@ -100,9 +101,6 @@ const ProfileAvatarUnconnected: FC<IProps> = ({
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const ProfileAvatar = connect(
|
const ProfileAvatar = connect(mapStateToProps, mapDispatchToProps)(ProfileAvatarUnconnected);
|
||||||
mapStateToProps,
|
|
||||||
mapDispatchToProps
|
|
||||||
)(ProfileAvatarUnconnected);
|
|
||||||
|
|
||||||
export { ProfileAvatar };
|
export { ProfileAvatar };
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import React, { FC, ReactNode } from 'react';
|
import React, { FC, ReactNode } from 'react';
|
||||||
import { IUser } from '~/redux/auth/types';
|
import { IAuthState, IUser } from '~/redux/auth/types';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
import { Group } from '~/components/containers/Group';
|
import { Group } from '~/components/containers/Group';
|
||||||
import { Placeholder } from '~/components/placeholders/Placeholder';
|
import { Placeholder } from '~/components/placeholders/Placeholder';
|
||||||
|
@ -14,7 +14,7 @@ interface IProps {
|
||||||
is_loading?: boolean;
|
is_loading?: boolean;
|
||||||
is_own?: boolean;
|
is_own?: boolean;
|
||||||
|
|
||||||
setTab?: (tab: string) => void;
|
setTab?: (tab: IAuthState['profile']['tab']) => void;
|
||||||
|
|
||||||
content?: ReactNode;
|
content?: ReactNode;
|
||||||
}
|
}
|
||||||
|
@ -26,16 +26,16 @@ const ProfileInfo: FC<IProps> = ({ user, tab, is_loading, is_own, setTab, conten
|
||||||
|
|
||||||
<div className={styles.field}>
|
<div className={styles.field}>
|
||||||
<div className={styles.name}>
|
<div className={styles.name}>
|
||||||
{is_loading ? <Placeholder width="80%" /> : user.fullname || user.username}
|
{is_loading ? <Placeholder width="80%" /> : user?.fullname || user?.username}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={styles.description}>
|
<div className={styles.description}>
|
||||||
{is_loading ? <Placeholder /> : getPrettyDate(user.last_seen)}
|
{is_loading ? <Placeholder /> : getPrettyDate(user?.last_seen)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Group>
|
</Group>
|
||||||
|
|
||||||
<ProfileTabs tab={tab} is_own={is_own} setTab={setTab} />
|
<ProfileTabs tab={tab} is_own={!!is_own} setTab={setTab} />
|
||||||
|
|
||||||
{content}
|
{content}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -20,10 +20,10 @@ const ProfileLayoutUnconnected: FC<IProps> = ({ history, nodeSetCoverImage }) =>
|
||||||
const {
|
const {
|
||||||
params: { username },
|
params: { username },
|
||||||
} = useRouteMatch<{ username: string }>();
|
} = useRouteMatch<{ username: string }>();
|
||||||
const [user, setUser] = useState<IUser>(null);
|
const [user, setUser] = useState<IUser | undefined>(undefined);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (user) setUser(null);
|
if (user) setUser(undefined);
|
||||||
}, [username]);
|
}, [username]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
|
@ -31,7 +31,7 @@ const ProfileMessagesUnconnected: FC<IProps> = ({
|
||||||
messagesRefreshMessages,
|
messagesRefreshMessages,
|
||||||
}) => {
|
}) => {
|
||||||
const wasAtBottom = useRef(true);
|
const wasAtBottom = useRef(true);
|
||||||
const [wrap, setWrap] = useState<HTMLDivElement>(null);
|
const [wrap, setWrap] = useState<HTMLDivElement | undefined>(undefined);
|
||||||
const [editingMessageId, setEditingMessageId] = useState(0);
|
const [editingMessageId, setEditingMessageId] = useState(0);
|
||||||
|
|
||||||
const onEditMessage = useCallback((id: number) => setEditingMessageId(id), [setEditingMessageId]);
|
const onEditMessage = useCallback((id: number) => setEditingMessageId(id), [setEditingMessageId]);
|
||||||
|
@ -95,31 +95,33 @@ const ProfileMessagesUnconnected: FC<IProps> = ({
|
||||||
if (!messages.messages.length || profile.is_loading)
|
if (!messages.messages.length || profile.is_loading)
|
||||||
return <NodeNoComments is_loading={messages.is_loading_messages || profile.is_loading} />;
|
return <NodeNoComments is_loading={messages.is_loading_messages || profile.is_loading} />;
|
||||||
|
|
||||||
return (
|
if (messages.messages.length <= 0) {
|
||||||
messages.messages.length > 0 && (
|
return null;
|
||||||
<div className={styles.messages} ref={storeRef}>
|
}
|
||||||
{messages.messages
|
|
||||||
.filter(message => !!message.text)
|
|
||||||
.map((
|
|
||||||
message // TODO: show files / memo
|
|
||||||
) => (
|
|
||||||
<Message
|
|
||||||
message={message}
|
|
||||||
incoming={id !== message.from.id}
|
|
||||||
key={message.id}
|
|
||||||
onEdit={onEditMessage}
|
|
||||||
onDelete={onDeleteMessage}
|
|
||||||
isEditing={editingMessageId === message.id}
|
|
||||||
onCancelEdit={onCancelEdit}
|
|
||||||
onRestore={onRestoreMessage}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
|
|
||||||
{!messages.is_loading_messages && messages.messages.length > 0 && (
|
return (
|
||||||
<div className={styles.placeholder}>Когда-нибудь здесь будут еще сообщения</div>
|
<div className={styles.messages} ref={storeRef}>
|
||||||
)}
|
{messages.messages
|
||||||
</div>
|
.filter(message => !!message.text)
|
||||||
)
|
.map((
|
||||||
|
message // TODO: show files / memo
|
||||||
|
) => (
|
||||||
|
<Message
|
||||||
|
message={message}
|
||||||
|
incoming={id !== message.from.id}
|
||||||
|
key={message.id}
|
||||||
|
onEdit={onEditMessage}
|
||||||
|
onDelete={onDeleteMessage}
|
||||||
|
isEditing={editingMessageId === message.id}
|
||||||
|
onCancelEdit={onCancelEdit}
|
||||||
|
onRestore={onRestoreMessage}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
|
||||||
|
{!messages.is_loading_messages && messages.messages.length > 0 && (
|
||||||
|
<div className={styles.placeholder}>Когда-нибудь здесь будут еще сообщения</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
import React, { FC, useMemo } from 'react';
|
import React, { FC, useMemo } from 'react';
|
||||||
import styles from './styles.module.scss';
|
|
||||||
import { IAuthState } from '~/redux/auth/types';
|
import { IAuthState } from '~/redux/auth/types';
|
||||||
import { getURL } from '~/utils/dom';
|
import { formatText, getURL } from '~/utils/dom';
|
||||||
import { PRESETS, URLS } from '~/constants/urls';
|
import { PRESETS, URLS } from '~/constants/urls';
|
||||||
import { Placeholder } from '~/components/placeholders/Placeholder';
|
import { Placeholder } from '~/components/placeholders/Placeholder';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
import { Icon } from '~/components/input/Icon';
|
import { Icon } from '~/components/input/Icon';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
|
||||||
|
import styles from './styles.module.scss';
|
||||||
|
import markdown from '~/styles/common/markdown.module.scss';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
profile: IAuthState['profile'];
|
profile: IAuthState['profile'];
|
||||||
|
@ -26,11 +29,11 @@ const ProfilePageLeft: FC<IProps> = ({ username, profile }) => {
|
||||||
<div className={styles.region_wrap}>
|
<div className={styles.region_wrap}>
|
||||||
<div className={styles.region}>
|
<div className={styles.region}>
|
||||||
<div className={styles.name}>
|
<div className={styles.name}>
|
||||||
{profile.is_loading ? <Placeholder /> : profile.user.fullname}
|
{profile.is_loading ? <Placeholder /> : profile?.user?.fullname}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={styles.username}>
|
<div className={styles.username}>
|
||||||
{profile.is_loading ? <Placeholder /> : `~${profile.user.username}`}
|
{profile.is_loading ? <Placeholder /> : `~${profile?.user?.username}`}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={styles.menu}>
|
<div className={styles.menu}>
|
||||||
|
@ -53,7 +56,9 @@ const ProfilePageLeft: FC<IProps> = ({ username, profile }) => {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{profile && profile.user && profile.user.description && false && (
|
{profile && profile.user && profile.user.description && false && (
|
||||||
<div className={styles.description}>{profile.user.description}</div>
|
<div className={classNames(styles.description, markdown.wrapper)}>
|
||||||
|
{formatText(profile?.user?.description || '')}
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,38 +1,49 @@
|
||||||
import React, { FC } from 'react';
|
import React, { FC, useCallback } from 'react';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
|
import { IAuthState } from '~/redux/auth/types';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
tab: string;
|
tab: string;
|
||||||
is_own: boolean;
|
is_own: boolean;
|
||||||
setTab: (tab: string) => void;
|
setTab?: (tab: IAuthState['profile']['tab']) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const ProfileTabs: FC<IProps> = ({ tab, is_own, setTab }) => (
|
const ProfileTabs: FC<IProps> = ({ tab, is_own, setTab }) => {
|
||||||
<div className={styles.wrap}>
|
const changeTab = useCallback(
|
||||||
<div
|
(tab: IAuthState['profile']['tab']) => () => {
|
||||||
className={classNames(styles.tab, { [styles.active]: tab === 'profile' })}
|
if (!setTab) return;
|
||||||
onClick={() => setTab('profile')}
|
setTab(tab);
|
||||||
>
|
},
|
||||||
Профиль
|
[setTab]
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={styles.wrap}>
|
||||||
|
<div
|
||||||
|
className={classNames(styles.tab, { [styles.active]: tab === 'profile' })}
|
||||||
|
onClick={changeTab('profile')}
|
||||||
|
>
|
||||||
|
Профиль
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
className={classNames(styles.tab, { [styles.active]: tab === 'messages' })}
|
||||||
|
onClick={changeTab('messages')}
|
||||||
|
>
|
||||||
|
Сообщения
|
||||||
|
</div>
|
||||||
|
{is_own && (
|
||||||
|
<>
|
||||||
|
<div
|
||||||
|
className={classNames(styles.tab, { [styles.active]: tab === 'settings' })}
|
||||||
|
onClick={changeTab('settings')}
|
||||||
|
>
|
||||||
|
Настройки
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div
|
);
|
||||||
className={classNames(styles.tab, { [styles.active]: tab === 'messages' })}
|
};
|
||||||
onClick={() => setTab('messages')}
|
|
||||||
>
|
|
||||||
Сообщения
|
|
||||||
</div>
|
|
||||||
{is_own && (
|
|
||||||
<>
|
|
||||||
<div
|
|
||||||
className={classNames(styles.tab, { [styles.active]: tab === 'settings' })}
|
|
||||||
onClick={() => setTab('settings')}
|
|
||||||
>
|
|
||||||
Настройки
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
|
|
||||||
export { ProfileTabs };
|
export { ProfileTabs };
|
||||||
|
|
|
@ -56,7 +56,7 @@ const ProfileSidebarUnconnected: FC<Props> = ({
|
||||||
</Switch>
|
</Switch>
|
||||||
|
|
||||||
<div className={classNames(styles.wrap, styles.secondary)}>
|
<div className={classNames(styles.wrap, styles.secondary)}>
|
||||||
<ProfileSidebarInfo is_loading={is_loading} user={user} />
|
{!!user && <ProfileSidebarInfo is_loading={is_loading} user={user} />}
|
||||||
<ProfileSidebarMenu path={url} />
|
<ProfileSidebarMenu path={url} />
|
||||||
<Filler />
|
<Filler />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -35,7 +35,10 @@ const TagSidebarUnconnected: FC<Props> = ({ nodes, tagLoadNodes, tagSetNodes })
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
tagLoadNodes(tag);
|
tagLoadNodes(tag);
|
||||||
return () => tagSetNodes({ list: [], count: 0 });
|
|
||||||
|
return () => {
|
||||||
|
tagSetNodes({ list: [], count: 0 });
|
||||||
|
};
|
||||||
}, [tag]);
|
}, [tag]);
|
||||||
|
|
||||||
const loadMore = useCallback(() => {
|
const loadMore = useCallback(() => {
|
||||||
|
|
|
@ -1,131 +1,72 @@
|
||||||
import { api, configWithToken, errorMiddleware, resultMiddleware } from '~/utils/api';
|
import { api, cleanResult, errorMiddleware, resultMiddleware } from '~/utils/api';
|
||||||
import { API } from '~/constants/api';
|
import { API } from '~/constants/api';
|
||||||
import { INotification, IResultWithStatus } from '~/redux/types';
|
import { IResultWithStatus } from '~/redux/types';
|
||||||
import { userLoginTransform } from '~/redux/auth/transforms';
|
import {
|
||||||
import { ISocialAccount, IUser } from './types';
|
ApiAttachSocialRequest,
|
||||||
|
ApiAttachSocialResult,
|
||||||
|
ApiAuthGetUpdatesRequest,
|
||||||
|
ApiAuthGetUpdatesResult,
|
||||||
|
ApiAuthGetUserProfileRequest,
|
||||||
|
ApiAuthGetUserProfileResult,
|
||||||
|
ApiAuthGetUserResult,
|
||||||
|
ApiCheckRestoreCodeRequest,
|
||||||
|
ApiCheckRestoreCodeResult,
|
||||||
|
ApiDropSocialRequest,
|
||||||
|
ApiDropSocialResult,
|
||||||
|
ApiGetSocialsResult,
|
||||||
|
ApiLoginWithSocialRequest,
|
||||||
|
ApiLoginWithSocialResult,
|
||||||
|
ApiRestoreCodeRequest,
|
||||||
|
ApiRestoreCodeResult,
|
||||||
|
ApiUpdateUserRequest,
|
||||||
|
ApiUpdateUserResult,
|
||||||
|
ApiUserLoginRequest,
|
||||||
|
ApiUserLoginResult,
|
||||||
|
} from './types';
|
||||||
|
|
||||||
export const apiUserLogin = ({
|
export const apiUserLogin = ({ username, password }: ApiUserLoginRequest) =>
|
||||||
username,
|
|
||||||
password,
|
|
||||||
}: {
|
|
||||||
username: string;
|
|
||||||
password: string;
|
|
||||||
}): Promise<IResultWithStatus<{ token: string; status?: number }>> =>
|
|
||||||
api
|
api
|
||||||
.post(API.USER.LOGIN, { username, password })
|
.post<ApiUserLoginResult>(API.USER.LOGIN, { username, password })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware)
|
|
||||||
.then(userLoginTransform);
|
|
||||||
|
|
||||||
export const apiAuthGetUser = ({ access }): Promise<IResultWithStatus<{ user: IUser }>> =>
|
export const apiAuthGetUser = () => api.get<ApiAuthGetUserResult>(API.USER.ME).then(cleanResult);
|
||||||
api
|
|
||||||
.get(API.USER.ME, configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiAuthGetUserProfile = ({
|
export const apiAuthGetUserProfile = ({ username }: ApiAuthGetUserProfileRequest) =>
|
||||||
access,
|
api.get<ApiAuthGetUserProfileResult>(API.USER.PROFILE(username)).then(cleanResult);
|
||||||
username,
|
|
||||||
}): Promise<IResultWithStatus<{ user: IUser }>> =>
|
|
||||||
api
|
|
||||||
.get(API.USER.PROFILE(username), configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiAuthGetUpdates = ({
|
export const apiAuthGetUpdates = ({ exclude_dialogs, last }: ApiAuthGetUpdatesRequest) =>
|
||||||
access,
|
|
||||||
exclude_dialogs,
|
|
||||||
last,
|
|
||||||
}): Promise<IResultWithStatus<{
|
|
||||||
notifications: INotification[];
|
|
||||||
boris: { commented_at: string };
|
|
||||||
}>> =>
|
|
||||||
api
|
api
|
||||||
.get(API.USER.GET_UPDATES, configWithToken(access, { params: { exclude_dialogs, last } }))
|
.get<ApiAuthGetUpdatesResult>(API.USER.GET_UPDATES, { params: { exclude_dialogs, last } })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiUpdateUser = ({ access, user }): Promise<IResultWithStatus<{ user: IUser }>> =>
|
export const apiUpdateUser = ({ user }: ApiUpdateUserRequest) =>
|
||||||
api
|
api.patch<ApiUpdateUserResult>(API.USER.ME, user).then(cleanResult);
|
||||||
.patch(API.USER.ME, user, configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiRequestRestoreCode = ({ field }): Promise<IResultWithStatus<{}>> =>
|
export const apiRequestRestoreCode = ({ field }: { field: string }) =>
|
||||||
api
|
api
|
||||||
.post(API.USER.REQUEST_CODE(), { field })
|
.post<{}>(API.USER.REQUEST_CODE(), { field })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiCheckRestoreCode = ({ code }): Promise<IResultWithStatus<{}>> =>
|
export const apiCheckRestoreCode = ({ code }: ApiCheckRestoreCodeRequest) =>
|
||||||
api
|
api.get<ApiCheckRestoreCodeResult>(API.USER.REQUEST_CODE(code)).then(cleanResult);
|
||||||
.get(API.USER.REQUEST_CODE(code))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiRestoreCode = ({ code, password }): Promise<IResultWithStatus<{}>> =>
|
export const apiRestoreCode = ({ code, password }: ApiRestoreCodeRequest) =>
|
||||||
api
|
api
|
||||||
.post(API.USER.REQUEST_CODE(code), { password })
|
.post<ApiRestoreCodeResult>(API.USER.REQUEST_CODE(code), { password })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiGetSocials = ({
|
export const apiGetSocials = () =>
|
||||||
access,
|
api.get<ApiGetSocialsResult>(API.USER.GET_SOCIALS).then(cleanResult);
|
||||||
}: {
|
|
||||||
access: string;
|
|
||||||
}): Promise<IResultWithStatus<{
|
|
||||||
accounts: ISocialAccount[];
|
|
||||||
}>> =>
|
|
||||||
api
|
|
||||||
.get(API.USER.GET_SOCIALS, configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiDropSocial = ({
|
export const apiDropSocial = ({ id, provider }: ApiDropSocialRequest) =>
|
||||||
access,
|
api.delete<ApiDropSocialResult>(API.USER.DROP_SOCIAL(provider, id)).then(cleanResult);
|
||||||
id,
|
|
||||||
provider,
|
|
||||||
}: {
|
|
||||||
access: string;
|
|
||||||
id: string;
|
|
||||||
provider: string;
|
|
||||||
}): Promise<IResultWithStatus<{
|
|
||||||
accounts: ISocialAccount[];
|
|
||||||
}>> =>
|
|
||||||
api
|
|
||||||
.delete(API.USER.DROP_SOCIAL(provider, id), configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiAttachSocial = ({
|
export const apiAttachSocial = ({ token }: ApiAttachSocialRequest) =>
|
||||||
access,
|
|
||||||
token,
|
|
||||||
}: {
|
|
||||||
access: string;
|
|
||||||
token: string;
|
|
||||||
}): Promise<IResultWithStatus<{
|
|
||||||
account: ISocialAccount;
|
|
||||||
}>> =>
|
|
||||||
api
|
api
|
||||||
.post(API.USER.ATTACH_SOCIAL, { token }, configWithToken(access))
|
.post<ApiAttachSocialResult>(API.USER.ATTACH_SOCIAL, { token })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiLoginWithSocial = ({
|
export const apiLoginWithSocial = ({ token, username, password }: ApiLoginWithSocialRequest) =>
|
||||||
token,
|
|
||||||
username,
|
|
||||||
password,
|
|
||||||
}: {
|
|
||||||
token: string;
|
|
||||||
username?: string;
|
|
||||||
password?: string;
|
|
||||||
}): Promise<IResultWithStatus<{
|
|
||||||
token: string;
|
|
||||||
error: string;
|
|
||||||
errors: Record<string, string>;
|
|
||||||
needs_register: boolean;
|
|
||||||
}>> =>
|
|
||||||
api
|
api
|
||||||
.post(API.USER.LOGIN_WITH_SOCIAL, { token, username, password })
|
.post<ApiLoginWithSocialResult>(API.USER.LOGIN_WITH_SOCIAL, { token, username, password })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
|
@ -53,26 +53,26 @@ export const USER_ROLES = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const EMPTY_TOKEN: IToken = {
|
export const EMPTY_TOKEN: IToken = {
|
||||||
access: null,
|
access: '',
|
||||||
refresh: null,
|
refresh: '',
|
||||||
};
|
};
|
||||||
|
|
||||||
export const EMPTY_USER: IUser = {
|
export const EMPTY_USER: IUser = {
|
||||||
id: null,
|
id: 0,
|
||||||
role: USER_ROLES.GUEST,
|
role: USER_ROLES.GUEST,
|
||||||
email: null,
|
email: '',
|
||||||
name: null,
|
name: '',
|
||||||
username: null,
|
username: '',
|
||||||
photo: null,
|
photo: undefined,
|
||||||
cover: null,
|
cover: undefined,
|
||||||
is_activated: false,
|
is_activated: false,
|
||||||
is_user: false,
|
is_user: false,
|
||||||
fullname: null,
|
fullname: '',
|
||||||
description: null,
|
description: '',
|
||||||
|
|
||||||
last_seen: null,
|
last_seen: '',
|
||||||
last_seen_messages: null,
|
last_seen_messages: '',
|
||||||
last_seen_boris: null,
|
last_seen_boris: '',
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface IApiUser {
|
export interface IApiUser {
|
||||||
|
|
|
@ -8,17 +8,17 @@ const HANDLERS = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const INITIAL_STATE: IAuthState = {
|
const INITIAL_STATE: IAuthState = {
|
||||||
token: null,
|
token: '',
|
||||||
user: { ...EMPTY_USER },
|
user: { ...EMPTY_USER },
|
||||||
|
|
||||||
updates: {
|
updates: {
|
||||||
last: null,
|
last: '',
|
||||||
notifications: [],
|
notifications: [],
|
||||||
boris_commented_at: null,
|
boris_commented_at: '',
|
||||||
},
|
},
|
||||||
|
|
||||||
login: {
|
login: {
|
||||||
error: null,
|
error: '',
|
||||||
is_loading: false,
|
is_loading: false,
|
||||||
is_registering: true,
|
is_registering: true,
|
||||||
},
|
},
|
||||||
|
@ -27,7 +27,7 @@ const INITIAL_STATE: IAuthState = {
|
||||||
tab: 'profile',
|
tab: 'profile',
|
||||||
is_loading: true,
|
is_loading: true,
|
||||||
|
|
||||||
user: null,
|
user: undefined,
|
||||||
patch_errors: {},
|
patch_errors: {},
|
||||||
|
|
||||||
socials: {
|
socials: {
|
||||||
|
@ -39,20 +39,19 @@ const INITIAL_STATE: IAuthState = {
|
||||||
|
|
||||||
restore: {
|
restore: {
|
||||||
code: '',
|
code: '',
|
||||||
user: null,
|
user: undefined,
|
||||||
is_loading: false,
|
is_loading: false,
|
||||||
is_succesfull: false,
|
is_succesfull: false,
|
||||||
error: null,
|
error: '',
|
||||||
},
|
},
|
||||||
|
|
||||||
register_social: {
|
register_social: {
|
||||||
errors: {
|
errors: {
|
||||||
username: 'and this',
|
username: '',
|
||||||
password: 'dislike this',
|
password: '',
|
||||||
},
|
},
|
||||||
error: 'dont like this one',
|
error: '',
|
||||||
token:
|
token: '',
|
||||||
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7IlByb3ZpZGVyIjoiZ29vZ2xlIiwiSWQiOiJma2F0dXJvdkBpY2Vyb2NrZGV2LmNvbSIsIkVtYWlsIjoiZmthdHVyb3ZAaWNlcm9ja2Rldi5jb20iLCJUb2tlbiI6InlhMjkuYTBBZkg2U01EeXFGdlRaTExXckhsQm1QdGZIOFNIVGQteWlSYTFKSXNmVXluY2F6MTZ5UGhjRmxydTlDMWFtTEg0aHlHRzNIRkhrVGU0SXFUS09hVVBEREdqR2JQRVFJbGpPME9UbUp2T2RrdEtWNDVoUGpJcTB1cHVLc003UWJLSm1oRWhkMEFVa3YyejVHWlNSMjhaM2VOZVdwTEVYSGV0MW1yNyIsIkZldGNoZWQiOnsiUHJvdmlkZXIiOiJnb29nbGUiLCJJZCI6OTIyMzM3MjAzNjg1NDc3NTgwNywiTmFtZSI6IkZlZG9yIEthdHVyb3YiLCJQaG90byI6Imh0dHBzOi8vbGg2Lmdvb2dsZXVzZXJjb250ZW50LmNvbS8ta1VMYXh0VV9jZTAvQUFBQUFBQUFBQUkvQUFBQUFBQUFBQUEvQU1adXVjbkEycTFReU1WLUN0RUtBclRhQzgydE52NTM2QS9waG90by5qcGcifX0sIlR5cGUiOiJvYXV0aF9jbGFpbSJ9.r1MY994BC_g4qRDoDoyNmwLs0qRzBLx6_Ez-3mHQtwg',
|
|
||||||
is_loading: false,
|
is_loading: false,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { call, delay, put, select, takeEvery, takeLatest } from 'redux-saga/effects';
|
import { call, delay, put, select, takeEvery, takeLatest } from 'redux-saga/effects';
|
||||||
import { AUTH_USER_ACTIONS, EMPTY_USER, USER_ERRORS, USER_ROLES } from '~/redux/auth/constants';
|
import { AUTH_USER_ACTIONS, EMPTY_USER, USER_ROLES } from '~/redux/auth/constants';
|
||||||
import {
|
import {
|
||||||
authAttachSocial,
|
authAttachSocial,
|
||||||
authDropSocial,
|
authDropSocial,
|
||||||
|
@ -48,49 +48,37 @@ import {
|
||||||
selectAuthRestore,
|
selectAuthRestore,
|
||||||
selectAuthUpdates,
|
selectAuthUpdates,
|
||||||
selectAuthUser,
|
selectAuthUser,
|
||||||
selectToken,
|
|
||||||
} from './selectors';
|
} from './selectors';
|
||||||
import { IResultWithStatus, OAUTH_EVENT_TYPES, Unwrap } from '../types';
|
import { OAUTH_EVENT_TYPES, Unwrap } from '../types';
|
||||||
import { IAuthState, IUser } from './types';
|
|
||||||
import { REHYDRATE, RehydrateAction } from 'redux-persist';
|
import { REHYDRATE, RehydrateAction } from 'redux-persist';
|
||||||
import { selectModal } from '~/redux/modal/selectors';
|
import { selectModal } from '~/redux/modal/selectors';
|
||||||
import { IModalState } from '~/redux/modal';
|
|
||||||
import { DIALOGS } from '~/redux/modal/constants';
|
import { DIALOGS } from '~/redux/modal/constants';
|
||||||
import { ERRORS } from '~/constants/errors';
|
import { ERRORS } from '~/constants/errors';
|
||||||
import { messagesSet } from '~/redux/messages/actions';
|
import { messagesSet } from '~/redux/messages/actions';
|
||||||
|
import { SagaIterator } from 'redux-saga';
|
||||||
|
import { isEmpty } from 'ramda';
|
||||||
|
import { AxiosError } from 'axios';
|
||||||
|
|
||||||
export function* reqWrapper(requestAction, props = {}): ReturnType<typeof requestAction> {
|
function* setTokenSaga({ token }: ReturnType<typeof authSetToken>) {
|
||||||
const access = yield select(selectToken);
|
localStorage.setItem('token', token);
|
||||||
|
|
||||||
const result = yield call(requestAction, { access, ...props });
|
|
||||||
|
|
||||||
if (result && result.status === 401) {
|
|
||||||
return { error: USER_ERRORS.UNAUTHORIZED, data: {} };
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* sendLoginRequestSaga({ username, password }: ReturnType<typeof userSendLoginRequest>) {
|
function* sendLoginRequestSaga({ username, password }: ReturnType<typeof userSendLoginRequest>) {
|
||||||
if (!username || !password) return;
|
if (!username || !password) return;
|
||||||
|
|
||||||
const {
|
try {
|
||||||
error,
|
const { token, user }: Unwrap<typeof apiUserLogin> = yield call(apiUserLogin, {
|
||||||
data: { token, user },
|
username,
|
||||||
}: IResultWithStatus<{ token: string; user: IUser }> = yield call(apiUserLogin, {
|
password,
|
||||||
username,
|
});
|
||||||
password,
|
|
||||||
});
|
|
||||||
|
|
||||||
if (error) {
|
yield put(authSetToken(token));
|
||||||
yield put(userSetLoginError(error));
|
yield put(authSetUser({ ...user, is_user: true }));
|
||||||
return;
|
yield put(authLoggedIn());
|
||||||
|
yield put(modalSetShown(false));
|
||||||
|
} catch (error) {
|
||||||
|
yield put(userSetLoginError(error.message));
|
||||||
}
|
}
|
||||||
|
|
||||||
yield put(authSetToken(token));
|
|
||||||
yield put(authSetUser({ ...user, is_user: true }));
|
|
||||||
yield put(authLoggedIn());
|
|
||||||
yield put(modalSetShown(false));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* refreshUser() {
|
function* refreshUser() {
|
||||||
|
@ -98,23 +86,18 @@ function* refreshUser() {
|
||||||
|
|
||||||
if (!token) return;
|
if (!token) return;
|
||||||
|
|
||||||
const {
|
try {
|
||||||
error,
|
const { user }: Unwrap<typeof apiAuthGetUser> = yield call(apiAuthGetUser);
|
||||||
data: { user },
|
|
||||||
}: IResultWithStatus<{ user: IUser }> = yield call(reqWrapper, apiAuthGetUser);
|
|
||||||
|
|
||||||
if (error) {
|
yield put(authSetUser({ ...user, is_user: true }));
|
||||||
|
} catch (e) {
|
||||||
yield put(
|
yield put(
|
||||||
authSetUser({
|
authSetUser({
|
||||||
...EMPTY_USER,
|
...EMPTY_USER,
|
||||||
is_user: false,
|
is_user: false,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
yield put(authSetUser({ ...user, is_user: true }));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* checkUserSaga({ key }: RehydrateAction) {
|
function* checkUserSaga({ key }: RehydrateAction) {
|
||||||
|
@ -126,44 +109,43 @@ function* gotPostMessageSaga({ token }: ReturnType<typeof gotAuthPostMessage>) {
|
||||||
yield put(authSetToken(token));
|
yield put(authSetToken(token));
|
||||||
yield call(refreshUser);
|
yield call(refreshUser);
|
||||||
|
|
||||||
const { is_shown, dialog }: IModalState = yield select(selectModal);
|
const { is_shown, dialog }: ReturnType<typeof selectModal> = yield select(selectModal);
|
||||||
|
|
||||||
if (is_shown && dialog === DIALOGS.LOGIN) yield put(modalSetShown(false));
|
if (is_shown && dialog === DIALOGS.LOGIN) yield put(modalSetShown(false));
|
||||||
}
|
}
|
||||||
|
|
||||||
function* logoutSaga() {
|
function* logoutSaga() {
|
||||||
yield put(authSetToken(null));
|
yield put(authSetToken(''));
|
||||||
yield put(authSetUser({ ...EMPTY_USER }));
|
yield put(authSetUser({ ...EMPTY_USER }));
|
||||||
yield put(
|
yield put(
|
||||||
authSetUpdates({
|
authSetUpdates({
|
||||||
last: null,
|
last: '',
|
||||||
notifications: [],
|
notifications: [],
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function* loadProfile({ username }: ReturnType<typeof authLoadProfile>) {
|
function* loadProfile({ username }: ReturnType<typeof authLoadProfile>): SagaIterator<boolean> {
|
||||||
yield put(authSetProfile({ is_loading: true }));
|
yield put(authSetProfile({ is_loading: true }));
|
||||||
|
|
||||||
const {
|
try {
|
||||||
error,
|
const { user }: Unwrap<typeof apiAuthGetUserProfile> = yield call(apiAuthGetUserProfile, {
|
||||||
data: { user },
|
username,
|
||||||
} = yield call(reqWrapper, apiAuthGetUserProfile, { username });
|
});
|
||||||
|
|
||||||
if (error || !user) {
|
yield put(authSetProfile({ is_loading: false, user }));
|
||||||
|
yield put(messagesSet({ messages: [] }));
|
||||||
|
return true;
|
||||||
|
} catch (error) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
yield put(authSetProfile({ is_loading: false, user }));
|
|
||||||
yield put(messagesSet({ messages: [] }));
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* openProfile({ username, tab = 'profile' }: ReturnType<typeof authOpenProfile>) {
|
function* openProfile({ username, tab = 'profile' }: ReturnType<typeof authOpenProfile>) {
|
||||||
yield put(modalShowDialog(DIALOGS.PROFILE));
|
yield put(modalShowDialog(DIALOGS.PROFILE));
|
||||||
yield put(authSetProfile({ tab }));
|
yield put(authSetProfile({ tab }));
|
||||||
|
|
||||||
const success: boolean = yield call(loadProfile, authLoadProfile(username));
|
const success: Unwrap<typeof loadProfile> = yield call(loadProfile, authLoadProfile(username));
|
||||||
|
|
||||||
if (!success) {
|
if (!success) {
|
||||||
return yield put(modalSetShown(false));
|
return yield put(modalSetShown(false));
|
||||||
|
@ -171,42 +153,41 @@ function* openProfile({ username, tab = 'profile' }: ReturnType<typeof authOpenP
|
||||||
}
|
}
|
||||||
|
|
||||||
function* getUpdates() {
|
function* getUpdates() {
|
||||||
const user: ReturnType<typeof selectAuthUser> = yield select(selectAuthUser);
|
try {
|
||||||
|
const user: ReturnType<typeof selectAuthUser> = yield select(selectAuthUser);
|
||||||
|
|
||||||
if (!user || !user.is_user || user.role === USER_ROLES.GUEST || !user.id) return;
|
if (!user || !user.is_user || user.role === USER_ROLES.GUEST || !user.id) return;
|
||||||
|
|
||||||
const modal: IModalState = yield select(selectModal);
|
const modal: ReturnType<typeof selectModal> = yield select(selectModal);
|
||||||
const profile: IAuthState['profile'] = yield select(selectAuthProfile);
|
const profile: ReturnType<typeof selectAuthProfile> = yield select(selectAuthProfile);
|
||||||
const { last, boris_commented_at }: IAuthState['updates'] = yield select(selectAuthUpdates);
|
const { last, boris_commented_at }: ReturnType<typeof selectAuthUpdates> = yield select(
|
||||||
const exclude_dialogs =
|
selectAuthUpdates
|
||||||
modal.is_shown && modal.dialog === DIALOGS.PROFILE && profile.user.id ? profile.user.id : null;
|
|
||||||
|
|
||||||
const { error, data }: Unwrap<ReturnType<typeof apiAuthGetUpdates>> = yield call(
|
|
||||||
reqWrapper,
|
|
||||||
apiAuthGetUpdates,
|
|
||||||
{ exclude_dialogs, last: last || user.last_seen_messages }
|
|
||||||
);
|
|
||||||
|
|
||||||
if (error || !data) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (data.notifications && data.notifications.length) {
|
|
||||||
yield put(
|
|
||||||
authSetUpdates({
|
|
||||||
last: data.notifications[0].created_at,
|
|
||||||
notifications: data.notifications,
|
|
||||||
})
|
|
||||||
);
|
);
|
||||||
}
|
const exclude_dialogs =
|
||||||
|
modal.is_shown && modal.dialog === DIALOGS.PROFILE && profile.user?.id ? profile.user.id : 0;
|
||||||
|
|
||||||
if (data.boris && data.boris.commented_at && boris_commented_at !== data.boris.commented_at) {
|
const data: Unwrap<typeof apiAuthGetUpdates> = yield call(apiAuthGetUpdates, {
|
||||||
yield put(
|
exclude_dialogs,
|
||||||
authSetUpdates({
|
last: last || user.last_seen_messages,
|
||||||
boris_commented_at: data.boris.commented_at,
|
});
|
||||||
})
|
|
||||||
);
|
if (data.notifications && data.notifications.length) {
|
||||||
}
|
yield put(
|
||||||
|
authSetUpdates({
|
||||||
|
last: data.notifications[0].created_at,
|
||||||
|
notifications: data.notifications,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data.boris && data.boris.commented_at && boris_commented_at !== data.boris.commented_at) {
|
||||||
|
yield put(
|
||||||
|
authSetUpdates({
|
||||||
|
boris_commented_at: data.boris.commented_at,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} catch (error) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
function* startPollingSaga() {
|
function* startPollingSaga() {
|
||||||
|
@ -219,148 +200,137 @@ function* startPollingSaga() {
|
||||||
function* setLastSeenMessages({ last_seen_messages }: ReturnType<typeof authSetLastSeenMessages>) {
|
function* setLastSeenMessages({ last_seen_messages }: ReturnType<typeof authSetLastSeenMessages>) {
|
||||||
if (!Date.parse(last_seen_messages)) return;
|
if (!Date.parse(last_seen_messages)) return;
|
||||||
|
|
||||||
yield call(reqWrapper, apiUpdateUser, { user: { last_seen_messages } });
|
yield call(apiUpdateUser, { user: { last_seen_messages } });
|
||||||
}
|
}
|
||||||
|
|
||||||
function* patchUser({ user }: ReturnType<typeof authPatchUser>) {
|
function* patchUser(payload: ReturnType<typeof authPatchUser>) {
|
||||||
const me = yield select(selectAuthUser);
|
const me: ReturnType<typeof selectAuthUser> = yield select(selectAuthUser);
|
||||||
|
|
||||||
const { error, data } = yield call(reqWrapper, apiUpdateUser, { user });
|
try {
|
||||||
|
const { user }: Unwrap<typeof apiUpdateUser> = yield call(apiUpdateUser, {
|
||||||
|
user: payload.user,
|
||||||
|
});
|
||||||
|
|
||||||
if (error || !data.user || data.errors) {
|
yield put(authSetUser({ ...me, ...user }));
|
||||||
return yield put(authSetProfile({ patch_errors: data.errors }));
|
yield put(authSetProfile({ user: { ...me, ...user }, tab: 'profile' }));
|
||||||
|
} catch (error) {
|
||||||
|
if (isEmpty(error.response.data.errors)) return;
|
||||||
|
|
||||||
|
yield put(authSetProfile({ patch_errors: error.response.data.errors }));
|
||||||
}
|
}
|
||||||
|
|
||||||
yield put(authSetUser({ ...me, ...data.user }));
|
|
||||||
yield put(authSetProfile({ user: { ...me, ...data.user }, tab: 'profile' }));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* requestRestoreCode({ field }: ReturnType<typeof authRequestRestoreCode>) {
|
function* requestRestoreCode({ field }: ReturnType<typeof authRequestRestoreCode>) {
|
||||||
if (!field) return;
|
if (!field) return;
|
||||||
|
|
||||||
yield put(authSetRestore({ error: null, is_loading: true }));
|
try {
|
||||||
const { error, data } = yield call(apiRequestRestoreCode, { field });
|
yield put(authSetRestore({ error: '', is_loading: true }));
|
||||||
|
yield call(apiRequestRestoreCode, {
|
||||||
|
field,
|
||||||
|
});
|
||||||
|
|
||||||
if (data.error || error) {
|
yield put(authSetRestore({ is_loading: false, is_succesfull: true }));
|
||||||
return yield put(authSetRestore({ is_loading: false, error: data.error || error }));
|
} catch (error) {
|
||||||
|
return yield put(authSetRestore({ is_loading: false, error: error.message }));
|
||||||
}
|
}
|
||||||
|
|
||||||
yield put(authSetRestore({ is_loading: false, is_succesfull: true }));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* showRestoreModal({ code }: ReturnType<typeof authShowRestoreModal>) {
|
function* showRestoreModal({ code }: ReturnType<typeof authShowRestoreModal>) {
|
||||||
if (!code && !code.length) {
|
try {
|
||||||
return yield put(authSetRestore({ error: ERRORS.CODE_IS_INVALID, is_loading: false }));
|
if (!code && !code.length) {
|
||||||
}
|
return yield put(authSetRestore({ error: ERRORS.CODE_IS_INVALID, is_loading: false }));
|
||||||
|
}
|
||||||
|
|
||||||
yield put(authSetRestore({ user: null, is_loading: true }));
|
yield put(authSetRestore({ user: undefined, is_loading: true }));
|
||||||
|
|
||||||
const { error, data } = yield call(apiCheckRestoreCode, { code });
|
const data: Unwrap<typeof apiCheckRestoreCode> = yield call(apiCheckRestoreCode, { code });
|
||||||
|
|
||||||
if (data.error || error || !data.user) {
|
yield put(authSetRestore({ user: data.user, code, is_loading: false }));
|
||||||
|
yield put(modalShowDialog(DIALOGS.RESTORE_PASSWORD));
|
||||||
|
} catch (error) {
|
||||||
yield put(
|
yield put(
|
||||||
authSetRestore({ is_loading: false, error: data.error || error || ERRORS.CODE_IS_INVALID })
|
authSetRestore({ is_loading: false, error: error.message || ERRORS.CODE_IS_INVALID })
|
||||||
);
|
);
|
||||||
|
yield put(modalShowDialog(DIALOGS.RESTORE_PASSWORD));
|
||||||
return yield put(modalShowDialog(DIALOGS.RESTORE_PASSWORD));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
yield put(authSetRestore({ user: data.user, code, is_loading: false }));
|
|
||||||
yield put(modalShowDialog(DIALOGS.RESTORE_PASSWORD));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* restorePassword({ password }: ReturnType<typeof authRestorePassword>) {
|
function* restorePassword({ password }: ReturnType<typeof authRestorePassword>) {
|
||||||
if (!password) return;
|
try {
|
||||||
|
if (!password) return;
|
||||||
|
|
||||||
yield put(authSetRestore({ is_loading: true }));
|
yield put(authSetRestore({ is_loading: true }));
|
||||||
const { code } = yield select(selectAuthRestore);
|
const { code }: ReturnType<typeof selectAuthRestore> = yield select(selectAuthRestore);
|
||||||
|
|
||||||
if (!code) {
|
if (!code) {
|
||||||
return yield put(authSetRestore({ error: ERRORS.CODE_IS_INVALID, is_loading: false }));
|
return yield put(authSetRestore({ error: ERRORS.CODE_IS_INVALID, is_loading: false }));
|
||||||
}
|
}
|
||||||
|
|
||||||
const { error, data } = yield call(apiRestoreCode, { code, password });
|
const data: Unwrap<typeof apiRestoreCode> = yield call(apiRestoreCode, { code, password });
|
||||||
|
|
||||||
if (data.error || error || !data.user || !data.token) {
|
yield put(authSetToken(data.token));
|
||||||
|
yield put(authSetUser(data.user));
|
||||||
|
|
||||||
|
yield put(authSetRestore({ is_loading: false, is_succesfull: true, error: '' }));
|
||||||
|
|
||||||
|
yield call(refreshUser);
|
||||||
|
} catch (error) {
|
||||||
return yield put(
|
return yield put(
|
||||||
authSetRestore({ is_loading: false, error: data.error || error || ERRORS.CODE_IS_INVALID })
|
authSetRestore({ is_loading: false, error: error.message || ERRORS.CODE_IS_INVALID })
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
yield put(authSetToken(data.token));
|
|
||||||
yield put(authSetUser(data.user));
|
|
||||||
|
|
||||||
yield put(authSetRestore({ is_loading: false, is_succesfull: true, error: null }));
|
|
||||||
|
|
||||||
yield call(refreshUser);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* getSocials() {
|
function* getSocials() {
|
||||||
yield put(authSetSocials({ is_loading: true, error: '' }));
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const { data, error }: Unwrap<ReturnType<typeof apiGetSocials>> = yield call(
|
yield put(authSetSocials({ is_loading: true, error: '' }));
|
||||||
reqWrapper,
|
const data: Unwrap<typeof apiGetSocials> = yield call(apiGetSocials);
|
||||||
apiGetSocials,
|
yield put(authSetSocials({ accounts: data.accounts }));
|
||||||
{}
|
} catch (error) {
|
||||||
);
|
yield put(authSetSocials({ error: error.message }));
|
||||||
|
} finally {
|
||||||
if (error) {
|
yield put(authSetSocials({ is_loading: false }));
|
||||||
throw new Error(error);
|
|
||||||
}
|
|
||||||
|
|
||||||
yield put(authSetSocials({ is_loading: false, accounts: data.accounts, error: '' }));
|
|
||||||
} catch (e) {
|
|
||||||
yield put(authSetSocials({ is_loading: false, error: e.toString() }));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: start from here
|
||||||
function* dropSocial({ provider, id }: ReturnType<typeof authDropSocial>) {
|
function* dropSocial({ provider, id }: ReturnType<typeof authDropSocial>) {
|
||||||
try {
|
try {
|
||||||
yield put(authSetSocials({ error: '' }));
|
yield put(authSetSocials({ error: '' }));
|
||||||
const { error }: Unwrap<ReturnType<typeof apiDropSocial>> = yield call(
|
yield call(apiDropSocial, {
|
||||||
reqWrapper,
|
id,
|
||||||
apiDropSocial,
|
provider,
|
||||||
{ id, provider }
|
});
|
||||||
);
|
|
||||||
|
|
||||||
if (error) {
|
|
||||||
throw new Error(error);
|
|
||||||
}
|
|
||||||
|
|
||||||
yield call(getSocials);
|
yield call(getSocials);
|
||||||
} catch (e) {
|
} catch (error) {
|
||||||
yield put(authSetSocials({ error: e.message }));
|
yield put(authSetSocials({ error: error.message }));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function* attachSocial({ token }: ReturnType<typeof authAttachSocial>) {
|
function* attachSocial({ token }: ReturnType<typeof authAttachSocial>) {
|
||||||
if (!token) return;
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
if (!token) return;
|
||||||
|
|
||||||
yield put(authSetSocials({ error: '', is_loading: true }));
|
yield put(authSetSocials({ error: '', is_loading: true }));
|
||||||
|
|
||||||
const { data, error }: Unwrap<ReturnType<typeof apiAttachSocial>> = yield call(
|
const data: Unwrap<typeof apiAttachSocial> = yield call(apiAttachSocial, {
|
||||||
reqWrapper,
|
token,
|
||||||
apiAttachSocial,
|
});
|
||||||
{ token }
|
|
||||||
);
|
|
||||||
|
|
||||||
if (error) {
|
|
||||||
throw new Error(error);
|
|
||||||
}
|
|
||||||
|
|
||||||
const {
|
const {
|
||||||
socials: { accounts },
|
socials: { accounts },
|
||||||
}: ReturnType<typeof selectAuthProfile> = yield select(selectAuthProfile);
|
}: ReturnType<typeof selectAuthProfile> = yield select(selectAuthProfile);
|
||||||
|
|
||||||
if (accounts.some(it => it.id === data.account.id && it.provider === data.account.provider)) {
|
if (accounts.some(it => it.id === data.account.id && it.provider === data.account.provider)) {
|
||||||
yield put(authSetSocials({ is_loading: false }));
|
return;
|
||||||
} else {
|
|
||||||
yield put(authSetSocials({ is_loading: false, accounts: [...accounts, data.account] }));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
yield put(authSetSocials({ accounts: [...accounts, data.account] }));
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
yield put(authSetSocials({ is_loading: false, error: e.message }));
|
yield put(authSetSocials({ error: e.message }));
|
||||||
|
} finally {
|
||||||
|
yield put(authSetSocials({ is_loading: false }));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -368,21 +338,9 @@ function* loginWithSocial({ token }: ReturnType<typeof authLoginWithSocial>) {
|
||||||
try {
|
try {
|
||||||
yield put(userSetLoginError(''));
|
yield put(userSetLoginError(''));
|
||||||
|
|
||||||
const {
|
const data: Unwrap<typeof apiLoginWithSocial> = yield call(apiLoginWithSocial, {
|
||||||
data,
|
token,
|
||||||
error,
|
});
|
||||||
}: Unwrap<ReturnType<typeof apiLoginWithSocial>> = yield call(apiLoginWithSocial, { token });
|
|
||||||
|
|
||||||
// Backend asks us for account registration
|
|
||||||
if (data?.needs_register) {
|
|
||||||
yield put(authSetRegisterSocial({ token }));
|
|
||||||
yield put(modalShowDialog(DIALOGS.LOGIN_SOCIAL_REGISTER));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (error) {
|
|
||||||
throw new Error(error);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (data.token) {
|
if (data.token) {
|
||||||
yield put(authSetToken(data.token));
|
yield put(authSetToken(data.token));
|
||||||
|
@ -390,8 +348,21 @@ function* loginWithSocial({ token }: ReturnType<typeof authLoginWithSocial>) {
|
||||||
yield put(modalSetShown(false));
|
yield put(modalSetShown(false));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (error) {
|
||||||
yield put(userSetLoginError(e.message));
|
const { dialog }: ReturnType<typeof selectModal> = yield select(selectModal);
|
||||||
|
const data = (error as AxiosError<{
|
||||||
|
needs_register: boolean;
|
||||||
|
errors: Record<'username' | 'password', string>;
|
||||||
|
}>).response?.data;
|
||||||
|
|
||||||
|
// Backend asks us for account registration
|
||||||
|
if (dialog !== DIALOGS.LOGIN_SOCIAL_REGISTER && data?.needs_register) {
|
||||||
|
yield put(authSetRegisterSocial({ token }));
|
||||||
|
yield put(modalShowDialog(DIALOGS.LOGIN_SOCIAL_REGISTER));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
yield put(userSetLoginError(error.message));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -414,24 +385,15 @@ function* authRegisterSocial({ username, password }: ReturnType<typeof authSendR
|
||||||
try {
|
try {
|
||||||
yield put(authSetRegisterSocial({ error: '' }));
|
yield put(authSetRegisterSocial({ error: '' }));
|
||||||
|
|
||||||
const { token }: Unwrap<ReturnType<typeof selectAuthRegisterSocial>> = yield select(
|
const { token }: ReturnType<typeof selectAuthRegisterSocial> = yield select(
|
||||||
selectAuthRegisterSocial
|
selectAuthRegisterSocial
|
||||||
);
|
);
|
||||||
|
|
||||||
const { data, error }: Unwrap<ReturnType<typeof apiLoginWithSocial>> = yield call(
|
const data: Unwrap<typeof apiLoginWithSocial> = yield call(apiLoginWithSocial, {
|
||||||
apiLoginWithSocial,
|
token,
|
||||||
{
|
username,
|
||||||
token,
|
password,
|
||||||
username,
|
});
|
||||||
password,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
if (data?.errors) {
|
|
||||||
yield put(authSetRegisterSocialErrors(data.errors));
|
|
||||||
} else if (data?.error) {
|
|
||||||
throw new Error(error);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (data.token) {
|
if (data.token) {
|
||||||
yield put(authSetToken(data.token));
|
yield put(authSetToken(data.token));
|
||||||
|
@ -439,8 +401,18 @@ function* authRegisterSocial({ username, password }: ReturnType<typeof authSendR
|
||||||
yield put(modalSetShown(false));
|
yield put(modalSetShown(false));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (error) {
|
||||||
yield put(authSetRegisterSocial({ error: e.message }));
|
const data = (error as AxiosError<{
|
||||||
|
needs_register: boolean;
|
||||||
|
errors: Record<'username' | 'password', string>;
|
||||||
|
}>).response?.data;
|
||||||
|
|
||||||
|
if (data?.errors) {
|
||||||
|
yield put(authSetRegisterSocialErrors(data.errors));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
yield put(authSetRegisterSocial({ error: error.message }));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -449,6 +421,7 @@ function* authSaga() {
|
||||||
yield takeLatest([REHYDRATE, AUTH_USER_ACTIONS.LOGGED_IN], startPollingSaga);
|
yield takeLatest([REHYDRATE, AUTH_USER_ACTIONS.LOGGED_IN], startPollingSaga);
|
||||||
|
|
||||||
yield takeLatest(AUTH_USER_ACTIONS.LOGOUT, logoutSaga);
|
yield takeLatest(AUTH_USER_ACTIONS.LOGOUT, logoutSaga);
|
||||||
|
yield takeLatest(AUTH_USER_ACTIONS.SET_TOKEN, setTokenSaga);
|
||||||
yield takeLatest(AUTH_USER_ACTIONS.SEND_LOGIN_REQUEST, sendLoginRequestSaga);
|
yield takeLatest(AUTH_USER_ACTIONS.SEND_LOGIN_REQUEST, sendLoginRequestSaga);
|
||||||
yield takeLatest(AUTH_USER_ACTIONS.GOT_AUTH_POST_MESSAGE, gotPostMessageSaga);
|
yield takeLatest(AUTH_USER_ACTIONS.GOT_AUTH_POST_MESSAGE, gotPostMessageSaga);
|
||||||
yield takeLatest(AUTH_USER_ACTIONS.OPEN_PROFILE, openProfile);
|
yield takeLatest(AUTH_USER_ACTIONS.OPEN_PROFILE, openProfile);
|
||||||
|
|
|
@ -5,7 +5,7 @@ export const selectUser = (state: IState) => state.auth.user;
|
||||||
export const selectToken = (state: IState) => state.auth.token;
|
export const selectToken = (state: IState) => state.auth.token;
|
||||||
export const selectAuthLogin = (state: IState) => state.auth.login;
|
export const selectAuthLogin = (state: IState) => state.auth.login;
|
||||||
export const selectAuthProfile = (state: IState) => state.auth.profile;
|
export const selectAuthProfile = (state: IState) => state.auth.profile;
|
||||||
export const selectAuthProfileUsername = (state: IState) => state.auth.profile.user.username;
|
export const selectAuthProfileUsername = (state: IState) => state.auth.profile.user?.username;
|
||||||
export const selectAuthUser = (state: IState) => state.auth.user;
|
export const selectAuthUser = (state: IState) => state.auth.user;
|
||||||
export const selectAuthUpdates = (state: IState) => state.auth.updates;
|
export const selectAuthUpdates = (state: IState) => state.auth.updates;
|
||||||
export const selectAuthRestore = (state: IState) => state.auth.restore;
|
export const selectAuthRestore = (state: IState) => state.auth.restore;
|
||||||
|
|
|
@ -1,13 +1,18 @@
|
||||||
import { IResultWithStatus } from '~/redux/types';
|
import { IResultWithStatus } from '~/redux/types';
|
||||||
import { HTTP_RESPONSES } from '~/utils/api';
|
import { HTTP_RESPONSES } from '~/utils/api';
|
||||||
|
|
||||||
export const userLoginTransform = ({ status, data, error }: IResultWithStatus<any>): IResultWithStatus<any> => {
|
export const userLoginTransform = ({
|
||||||
|
status,
|
||||||
|
data,
|
||||||
|
error,
|
||||||
|
}: IResultWithStatus<any>): IResultWithStatus<any> => {
|
||||||
switch (true) {
|
switch (true) {
|
||||||
case (status === HTTP_RESPONSES.UNAUTHORIZED || !data.token) && status !== HTTP_RESPONSES.CONNECTION_REFUSED:
|
case (status === HTTP_RESPONSES.UNAUTHORIZED || !data.token) &&
|
||||||
|
status !== HTTP_RESPONSES.CONNECTION_REFUSED:
|
||||||
return { status, data, error: 'Пользователь не найден' };
|
return { status, data, error: 'Пользователь не найден' };
|
||||||
|
|
||||||
case status === 200:
|
case status === 200:
|
||||||
return { status, data, error: null };
|
return { status, data, error: '' };
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return { status, data, error: error || 'Неизвестная ошибка' };
|
return { status, data, error: error || 'Неизвестная ошибка' };
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { IFile, INotification } from '../types';
|
import { IFile, INotification, IResultWithStatus } from '../types';
|
||||||
|
|
||||||
export interface IToken {
|
export interface IToken {
|
||||||
access: string;
|
access: string;
|
||||||
|
@ -10,8 +10,8 @@ export interface IUser {
|
||||||
username: string;
|
username: string;
|
||||||
email: string;
|
email: string;
|
||||||
role: string;
|
role: string;
|
||||||
photo: IFile;
|
photo?: IFile;
|
||||||
cover: IFile;
|
cover?: IFile;
|
||||||
name: string;
|
name: string;
|
||||||
fullname: string;
|
fullname: string;
|
||||||
description: string;
|
description: string;
|
||||||
|
@ -53,7 +53,7 @@ export type IAuthState = Readonly<{
|
||||||
tab: 'profile' | 'messages' | 'settings';
|
tab: 'profile' | 'messages' | 'settings';
|
||||||
is_loading: boolean;
|
is_loading: boolean;
|
||||||
|
|
||||||
user: IUser;
|
user?: IUser;
|
||||||
patch_errors: Record<string, string>;
|
patch_errors: Record<string, string>;
|
||||||
|
|
||||||
socials: {
|
socials: {
|
||||||
|
@ -65,7 +65,7 @@ export type IAuthState = Readonly<{
|
||||||
|
|
||||||
restore: {
|
restore: {
|
||||||
code: string;
|
code: string;
|
||||||
user: Pick<IUser, 'username' | 'photo'>;
|
user?: Pick<IUser, 'username' | 'photo'>;
|
||||||
is_loading: boolean;
|
is_loading: boolean;
|
||||||
is_succesfull: boolean;
|
is_succesfull: boolean;
|
||||||
error: string;
|
error: string;
|
||||||
|
@ -81,3 +81,52 @@ export type IAuthState = Readonly<{
|
||||||
is_loading: boolean;
|
is_loading: boolean;
|
||||||
};
|
};
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
|
export type ApiWithTokenRequest = { access: string };
|
||||||
|
|
||||||
|
export type ApiUserLoginRequest = Record<'username' | 'password', string>;
|
||||||
|
export type ApiUserLoginResult = { token: string; user: IUser };
|
||||||
|
|
||||||
|
export type ApiAuthGetUserRequest = {};
|
||||||
|
export type ApiAuthGetUserResult = { user: IUser };
|
||||||
|
|
||||||
|
export type ApiUpdateUserRequest = { user: Partial<IUser> };
|
||||||
|
export type ApiUpdateUserResult = { user: IUser; errors: Record<Partial<keyof IUser>, string> };
|
||||||
|
|
||||||
|
export type ApiAuthGetUserProfileRequest = { username: string };
|
||||||
|
export type ApiAuthGetUserProfileResult = { user: IUser };
|
||||||
|
|
||||||
|
export type ApiAuthGetUpdatesRequest = {
|
||||||
|
exclude_dialogs: number;
|
||||||
|
last: string;
|
||||||
|
};
|
||||||
|
export type ApiAuthGetUpdatesResult = {
|
||||||
|
notifications: INotification[];
|
||||||
|
boris: { commented_at: string };
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ApiCheckRestoreCodeRequest = { code: string };
|
||||||
|
export type ApiCheckRestoreCodeResult = { user: IUser };
|
||||||
|
|
||||||
|
export type ApiRestoreCodeRequest = { code: string; password: string };
|
||||||
|
export type ApiRestoreCodeResult = { token: string; user: IUser };
|
||||||
|
|
||||||
|
export type ApiGetSocialsResult = { accounts: ISocialAccount[] };
|
||||||
|
|
||||||
|
export type ApiDropSocialRequest = { id: string; provider: string };
|
||||||
|
export type ApiDropSocialResult = { accounts: ISocialAccount[] };
|
||||||
|
|
||||||
|
export type ApiAttachSocialRequest = { token: string };
|
||||||
|
export type ApiAttachSocialResult = { account: ISocialAccount };
|
||||||
|
|
||||||
|
export type ApiLoginWithSocialRequest = {
|
||||||
|
token: string;
|
||||||
|
username?: string;
|
||||||
|
password?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ApiLoginWithSocialResult = {
|
||||||
|
token: string;
|
||||||
|
errors: Record<string, string>;
|
||||||
|
needs_register: boolean;
|
||||||
|
};
|
||||||
|
|
|
@ -1,13 +1,10 @@
|
||||||
import git from '~/stats/git.json';
|
import git from '~/stats/git.json';
|
||||||
import { API } from '~/constants/api';
|
import { API } from '~/constants/api';
|
||||||
import { api, resultMiddleware, errorMiddleware } from '~/utils/api';
|
import { api, resultMiddleware, errorMiddleware, cleanResult } from '~/utils/api';
|
||||||
import { IBorisState, IStatBackend } from './reducer';
|
import { IBorisState, IStatBackend } from './reducer';
|
||||||
import { IResultWithStatus } from '../types';
|
import { IResultWithStatus } from '../types';
|
||||||
|
|
||||||
export const getBorisGitStats = (): Promise<IBorisState['stats']['git']> => Promise.resolve(git);
|
export const getBorisGitStats = () => Promise.resolve<IBorisState['stats']['git']>(git);
|
||||||
|
|
||||||
export const getBorisBackendStats = (): Promise<IResultWithStatus<IStatBackend>> =>
|
export const getBorisBackendStats = () =>
|
||||||
api
|
api.get<IStatBackend>(API.BORIS.GET_BACKEND_STATS).then(cleanResult);
|
||||||
.get(API.BORIS.GET_BACKEND_STATS)
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ export type IStatBackend = {
|
||||||
export type IBorisState = Readonly<{
|
export type IBorisState = Readonly<{
|
||||||
stats: {
|
stats: {
|
||||||
git: Partial<IStatGitRow>[];
|
git: Partial<IStatGitRow>[];
|
||||||
backend: IStatBackend;
|
backend?: IStatBackend;
|
||||||
is_loading: boolean;
|
is_loading: boolean;
|
||||||
};
|
};
|
||||||
}>;
|
}>;
|
||||||
|
@ -39,7 +39,7 @@ export type IBorisState = Readonly<{
|
||||||
const BORIS_INITIAL_STATE: IBorisState = {
|
const BORIS_INITIAL_STATE: IBorisState = {
|
||||||
stats: {
|
stats: {
|
||||||
git: [],
|
git: [],
|
||||||
backend: null,
|
backend: undefined,
|
||||||
is_loading: false,
|
is_loading: false,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,17 +5,17 @@ import { getBorisGitStats, getBorisBackendStats } from './api';
|
||||||
import { Unwrap } from '../types';
|
import { Unwrap } from '../types';
|
||||||
|
|
||||||
function* loadStats() {
|
function* loadStats() {
|
||||||
yield put(borisSetStats({ is_loading: true }));
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const git: Unwrap<ReturnType<typeof getBorisGitStats>> = yield call(getBorisGitStats);
|
yield put(borisSetStats({ is_loading: true }));
|
||||||
const backend: Unwrap<ReturnType<typeof getBorisBackendStats>> = yield call(
|
|
||||||
getBorisBackendStats
|
|
||||||
);
|
|
||||||
|
|
||||||
yield put(borisSetStats({ git, backend: backend.data, is_loading: false }));
|
const git: Unwrap<typeof getBorisGitStats> = yield call(getBorisGitStats);
|
||||||
|
const backend: Unwrap<typeof getBorisBackendStats> = yield call(getBorisBackendStats);
|
||||||
|
|
||||||
|
yield put(borisSetStats({ git, backend }));
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
yield put(borisSetStats({ git: [], backend: null, is_loading: false }));
|
yield put(borisSetStats({ git: [], backend: undefined }));
|
||||||
|
} finally {
|
||||||
|
yield put(borisSetStats({ is_loading: false }));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import { api, configWithToken, resultMiddleware, errorMiddleware } from '~/utils/api';
|
import { api, cleanResult, configWithToken } from '~/utils/api';
|
||||||
import { INode, IResultWithStatus } from '../types';
|
import { INode, IResultWithStatus } from '../types';
|
||||||
import { API } from '~/constants/api';
|
import { API } from '~/constants/api';
|
||||||
import { flowSetCellView } from '~/redux/flow/actions';
|
import { PostCellViewRequest, PostCellViewResult } from '~/redux/node/types';
|
||||||
import { IFlowState } from './reducer';
|
import { GetSearchResultsRequest, GetSearchResultsResult } from '~/redux/flow/types';
|
||||||
|
|
||||||
export const postNode = ({
|
export const postNode = ({
|
||||||
access,
|
access,
|
||||||
|
@ -11,32 +11,14 @@ export const postNode = ({
|
||||||
access: string;
|
access: string;
|
||||||
node: INode;
|
node: INode;
|
||||||
}): Promise<IResultWithStatus<INode>> =>
|
}): Promise<IResultWithStatus<INode>> =>
|
||||||
api
|
api.post(API.NODE.SAVE, { node }, configWithToken(access)).then(cleanResult);
|
||||||
.post(API.NODE.SAVE, { node }, configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const postCellView = ({
|
export const postCellView = ({ id, flow }: PostCellViewRequest) =>
|
||||||
id,
|
|
||||||
flow,
|
|
||||||
access,
|
|
||||||
}: ReturnType<typeof flowSetCellView> & { access: string }): Promise<IResultWithStatus<{
|
|
||||||
is_liked: INode['is_liked'];
|
|
||||||
}>> =>
|
|
||||||
api
|
api
|
||||||
.post(API.NODE.SET_CELL_VIEW(id), { flow }, configWithToken(access))
|
.post<PostCellViewResult>(API.NODE.SET_CELL_VIEW(id), { flow })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const getSearchResults = ({
|
export const getSearchResults = ({ text, skip = 0 }: GetSearchResultsRequest) =>
|
||||||
access,
|
|
||||||
text,
|
|
||||||
skip = 0,
|
|
||||||
}: IFlowState['search'] & {
|
|
||||||
access: string;
|
|
||||||
skip: number;
|
|
||||||
}): Promise<IResultWithStatus<{ nodes: INode[]; total: number }>> =>
|
|
||||||
api
|
api
|
||||||
.get(API.SEARCH.NODES, configWithToken(access, { params: { text, skip } }))
|
.get<GetSearchResultsResult>(API.SEARCH.NODES, { params: { text, skip } })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ const INITIAL_STATE: IFlowState = {
|
||||||
is_loading_more: false,
|
is_loading_more: false,
|
||||||
},
|
},
|
||||||
is_loading: false,
|
is_loading: false,
|
||||||
error: null,
|
error: '',
|
||||||
};
|
};
|
||||||
|
|
||||||
export default createReducer(INITIAL_STATE, FLOW_HANDLERS);
|
export default createReducer(INITIAL_STATE, FLOW_HANDLERS);
|
||||||
|
|
|
@ -1,182 +1,188 @@
|
||||||
import { takeLatest, call, put, select, takeLeading, delay, race, take } from 'redux-saga/effects';
|
import { call, delay, put, race, select, take, takeLatest, takeLeading } from 'redux-saga/effects';
|
||||||
import { REHYDRATE } from 'redux-persist';
|
import { REHYDRATE } from 'redux-persist';
|
||||||
import { FLOW_ACTIONS } from './constants';
|
import { FLOW_ACTIONS } from './constants';
|
||||||
import { getNodeDiff } from '../node/api';
|
import { getNodeDiff } from '../node/api';
|
||||||
import {
|
import {
|
||||||
flowSetNodes,
|
|
||||||
flowSetCellView,
|
|
||||||
flowSetHeroes,
|
|
||||||
flowSetRecent,
|
|
||||||
flowSetUpdated,
|
|
||||||
flowSetFlow,
|
|
||||||
flowChangeSearch,
|
flowChangeSearch,
|
||||||
|
flowSetCellView,
|
||||||
|
flowSetFlow,
|
||||||
|
flowSetHeroes,
|
||||||
|
flowSetNodes,
|
||||||
|
flowSetRecent,
|
||||||
flowSetSearch,
|
flowSetSearch,
|
||||||
|
flowSetUpdated,
|
||||||
} from './actions';
|
} from './actions';
|
||||||
import { IResultWithStatus, INode, Unwrap } from '../types';
|
import { Unwrap } from '../types';
|
||||||
import { selectFlowNodes, selectFlow } from './selectors';
|
import { selectFlow, selectFlowNodes } from './selectors';
|
||||||
import { reqWrapper } from '../auth/sagas';
|
import { getSearchResults, postCellView } from './api';
|
||||||
import { postCellView, getSearchResults } from './api';
|
|
||||||
import { IFlowState } from './reducer';
|
|
||||||
import { uniq } from 'ramda';
|
import { uniq } from 'ramda';
|
||||||
|
|
||||||
function hideLoader() {
|
function hideLoader() {
|
||||||
document.getElementById('main_loader').style.display = 'none';
|
const loader = document.getElementById('main_loader');
|
||||||
}
|
|
||||||
|
|
||||||
function* onGetFlow() {
|
if (!loader) {
|
||||||
const {
|
|
||||||
flow: { _persist },
|
|
||||||
} = yield select();
|
|
||||||
|
|
||||||
if (!_persist.rehydrated) return;
|
|
||||||
|
|
||||||
const stored: IFlowState['nodes'] = yield select(selectFlowNodes);
|
|
||||||
|
|
||||||
if (stored.length) {
|
|
||||||
hideLoader();
|
|
||||||
}
|
|
||||||
|
|
||||||
yield put(flowSetFlow({ is_loading: true }));
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: { before = [], after = [], heroes = [], recent = [], updated = [], valid = null },
|
|
||||||
}: IResultWithStatus<{
|
|
||||||
before: IFlowState['nodes'];
|
|
||||||
after: IFlowState['nodes'];
|
|
||||||
heroes: IFlowState['heroes'];
|
|
||||||
recent: IFlowState['recent'];
|
|
||||||
updated: IFlowState['updated'];
|
|
||||||
valid: INode['id'][];
|
|
||||||
}> = yield call(reqWrapper, getNodeDiff, {
|
|
||||||
start: new Date().toISOString(),
|
|
||||||
end: new Date().toISOString(),
|
|
||||||
with_heroes: true,
|
|
||||||
with_updated: true,
|
|
||||||
with_recent: true,
|
|
||||||
with_valid: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const result = uniq([...(before || []), ...(after || [])]);
|
|
||||||
|
|
||||||
yield put(flowSetFlow({ is_loading: false, nodes: result }));
|
|
||||||
|
|
||||||
if (heroes.length) yield put(flowSetHeroes(heroes));
|
|
||||||
if (recent.length) yield put(flowSetRecent(recent));
|
|
||||||
if (updated.length) yield put(flowSetUpdated(updated));
|
|
||||||
|
|
||||||
if (!stored.length) hideLoader();
|
|
||||||
}
|
|
||||||
|
|
||||||
function* onSetCellView({ id, flow }: ReturnType<typeof flowSetCellView>) {
|
|
||||||
const nodes = yield select(selectFlowNodes);
|
|
||||||
yield put(flowSetNodes(nodes.map(node => (node.id === id ? { ...node, flow } : node))));
|
|
||||||
|
|
||||||
const { data, error } = yield call(reqWrapper, postCellView, { id, flow });
|
|
||||||
|
|
||||||
// TODO: error handling
|
|
||||||
}
|
|
||||||
|
|
||||||
function* getMore() {
|
|
||||||
yield put(flowSetFlow({ is_loading: true }));
|
|
||||||
const nodes: IFlowState['nodes'] = yield select(selectFlowNodes);
|
|
||||||
|
|
||||||
const start = nodes && nodes[0] && nodes[0].created_at;
|
|
||||||
const end = nodes && nodes[nodes.length - 1] && nodes[nodes.length - 1].created_at;
|
|
||||||
|
|
||||||
const { error, data } = yield call(reqWrapper, getNodeDiff, {
|
|
||||||
start,
|
|
||||||
end,
|
|
||||||
with_heroes: false,
|
|
||||||
with_updated: true,
|
|
||||||
with_recent: true,
|
|
||||||
with_valid: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
if (error || !data) return;
|
|
||||||
|
|
||||||
const result = uniq([
|
|
||||||
...(data.before || []),
|
|
||||||
...(data.valid ? nodes.filter(node => data.valid.includes(node.id)) : nodes),
|
|
||||||
...(data.after || []),
|
|
||||||
]);
|
|
||||||
|
|
||||||
yield put(
|
|
||||||
flowSetFlow({
|
|
||||||
is_loading: false,
|
|
||||||
nodes: result,
|
|
||||||
...(data.recent ? { recent: data.recent } : {}),
|
|
||||||
...(data.updated ? { updated: data.updated } : {}),
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
yield delay(1000);
|
|
||||||
}
|
|
||||||
|
|
||||||
function* changeSearch({ search }: ReturnType<typeof flowChangeSearch>) {
|
|
||||||
yield put(
|
|
||||||
flowSetSearch({
|
|
||||||
...search,
|
|
||||||
is_loading: !!search.text,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!search.text) return;
|
|
||||||
|
|
||||||
yield delay(500);
|
|
||||||
|
|
||||||
const { data, error }: Unwrap<ReturnType<typeof getSearchResults>> = yield call(
|
|
||||||
reqWrapper,
|
|
||||||
getSearchResults,
|
|
||||||
{
|
|
||||||
...search,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
if (error) {
|
|
||||||
yield put(flowSetSearch({ is_loading: false, results: [], total: 0 }));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
yield put(
|
loader.style.display = 'none';
|
||||||
flowSetSearch({
|
}
|
||||||
is_loading: false,
|
|
||||||
results: data.nodes,
|
function* onGetFlow() {
|
||||||
total: data.total,
|
try {
|
||||||
})
|
const {
|
||||||
);
|
flow: { _persist },
|
||||||
|
} = yield select();
|
||||||
|
|
||||||
|
if (!_persist.rehydrated) return;
|
||||||
|
|
||||||
|
const stored: ReturnType<typeof selectFlowNodes> = yield select(selectFlowNodes);
|
||||||
|
|
||||||
|
if (stored.length) {
|
||||||
|
hideLoader();
|
||||||
|
}
|
||||||
|
|
||||||
|
yield put(flowSetFlow({ is_loading: true }));
|
||||||
|
|
||||||
|
const {
|
||||||
|
before = [],
|
||||||
|
after = [],
|
||||||
|
heroes = [],
|
||||||
|
recent = [],
|
||||||
|
updated = [],
|
||||||
|
}: Unwrap<typeof getNodeDiff> = yield call(getNodeDiff, {
|
||||||
|
start: new Date().toISOString(),
|
||||||
|
end: new Date().toISOString(),
|
||||||
|
with_heroes: true,
|
||||||
|
with_updated: true,
|
||||||
|
with_recent: true,
|
||||||
|
with_valid: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
const result = uniq([...(before || []), ...(after || [])]);
|
||||||
|
|
||||||
|
yield put(flowSetFlow({ is_loading: false, nodes: result }));
|
||||||
|
|
||||||
|
if (heroes.length) yield put(flowSetHeroes(heroes));
|
||||||
|
if (recent.length) yield put(flowSetRecent(recent));
|
||||||
|
if (updated.length) yield put(flowSetUpdated(updated));
|
||||||
|
|
||||||
|
if (!stored.length) hideLoader();
|
||||||
|
} catch (error) {
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function* onSetCellView({ id, flow }: ReturnType<typeof flowSetCellView>) {
|
||||||
|
try {
|
||||||
|
const nodes: ReturnType<typeof selectFlowNodes> = yield select(selectFlowNodes);
|
||||||
|
yield put(flowSetNodes(nodes.map(node => (node.id === id ? { ...node, flow } : node))));
|
||||||
|
yield call(postCellView, { id, flow });
|
||||||
|
} catch (error) {
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function* getMore() {
|
||||||
|
try {
|
||||||
|
yield put(flowSetFlow({ is_loading: true }));
|
||||||
|
const nodes: ReturnType<typeof selectFlowNodes> = yield select(selectFlowNodes);
|
||||||
|
|
||||||
|
const start = nodes && nodes[0] && nodes[0].created_at;
|
||||||
|
const end = nodes && nodes[nodes.length - 1] && nodes[nodes.length - 1].created_at;
|
||||||
|
|
||||||
|
const data: Unwrap<typeof getNodeDiff> = yield call(getNodeDiff, {
|
||||||
|
start,
|
||||||
|
end,
|
||||||
|
with_heroes: false,
|
||||||
|
with_updated: true,
|
||||||
|
with_recent: true,
|
||||||
|
with_valid: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const result = uniq([
|
||||||
|
...(data.before || []),
|
||||||
|
...(data.valid ? nodes.filter(node => data.valid.includes(node.id)) : nodes),
|
||||||
|
...(data.after || []),
|
||||||
|
]);
|
||||||
|
|
||||||
|
yield put(
|
||||||
|
flowSetFlow({
|
||||||
|
is_loading: false,
|
||||||
|
nodes: result,
|
||||||
|
...(data.recent ? { recent: data.recent } : {}),
|
||||||
|
...(data.updated ? { updated: data.updated } : {}),
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
yield delay(1000);
|
||||||
|
} catch (error) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
function* changeSearch({ search }: ReturnType<typeof flowChangeSearch>) {
|
||||||
|
try {
|
||||||
|
yield put(
|
||||||
|
flowSetSearch({
|
||||||
|
...search,
|
||||||
|
is_loading: !!search.text,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!search.text) return;
|
||||||
|
|
||||||
|
yield delay(500);
|
||||||
|
|
||||||
|
const data: Unwrap<typeof getSearchResults> = yield call(getSearchResults, {
|
||||||
|
text: search.text,
|
||||||
|
});
|
||||||
|
|
||||||
|
yield put(
|
||||||
|
flowSetSearch({
|
||||||
|
results: data.nodes,
|
||||||
|
total: data.total,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
} catch (error) {
|
||||||
|
yield put(flowSetSearch({ results: [], total: 0 }));
|
||||||
|
} finally {
|
||||||
|
yield put(flowSetSearch({ is_loading: false }));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function* loadMoreSearch() {
|
function* loadMoreSearch() {
|
||||||
yield put(
|
try {
|
||||||
flowSetSearch({
|
yield put(
|
||||||
is_loading_more: true,
|
flowSetSearch({
|
||||||
})
|
is_loading_more: true,
|
||||||
);
|
})
|
||||||
|
);
|
||||||
|
|
||||||
const { search }: ReturnType<typeof selectFlow> = yield select(selectFlow);
|
const { search }: ReturnType<typeof selectFlow> = yield select(selectFlow);
|
||||||
|
|
||||||
const {
|
const { result, delay }: { result: Unwrap<typeof getSearchResults>; delay: any } = yield race({
|
||||||
result,
|
result: call(getSearchResults, {
|
||||||
delay,
|
...search,
|
||||||
}: { result: Unwrap<ReturnType<typeof getSearchResults>>; delay: any } = yield race({
|
skip: search.results.length,
|
||||||
result: call(reqWrapper, getSearchResults, {
|
}),
|
||||||
...search,
|
delay: take(FLOW_ACTIONS.CHANGE_SEARCH),
|
||||||
skip: search.results.length,
|
});
|
||||||
}),
|
|
||||||
delay: take(FLOW_ACTIONS.CHANGE_SEARCH),
|
|
||||||
});
|
|
||||||
|
|
||||||
if (delay || result.error) {
|
if (delay) {
|
||||||
return put(flowSetSearch({ is_loading_more: false }));
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
yield put(
|
||||||
|
flowSetSearch({
|
||||||
|
results: [...search.results, ...result.nodes],
|
||||||
|
total: result.total,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
} catch (error) {
|
||||||
|
yield put(
|
||||||
|
flowSetSearch({
|
||||||
|
is_loading_more: false,
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
yield put(
|
|
||||||
flowSetSearch({
|
|
||||||
results: [...search.results, ...result.data.nodes],
|
|
||||||
total: result.data.total,
|
|
||||||
is_loading_more: false,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function* nodeSaga() {
|
export default function* nodeSaga() {
|
||||||
|
|
10
src/redux/flow/types.ts
Normal file
10
src/redux/flow/types.ts
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import { INode } from '~/redux/types';
|
||||||
|
|
||||||
|
export type GetSearchResultsRequest = {
|
||||||
|
text: string;
|
||||||
|
skip?: number;
|
||||||
|
};
|
||||||
|
export type GetSearchResultsResult = {
|
||||||
|
nodes: INode[];
|
||||||
|
total: number;
|
||||||
|
};
|
|
@ -1,48 +1,29 @@
|
||||||
import { IMessage, IResultWithStatus } from '~/redux/types';
|
import { api, cleanResult } from '~/utils/api';
|
||||||
import { api, configWithToken, errorMiddleware, resultMiddleware } from '~/utils/api';
|
|
||||||
import { API } from '~/constants/api';
|
import { API } from '~/constants/api';
|
||||||
|
import {
|
||||||
|
ApiDeleteMessageRequest,
|
||||||
|
ApiDeleteMessageResult,
|
||||||
|
ApiGetUserMessagesRequest,
|
||||||
|
ApiGetUserMessagesResponse,
|
||||||
|
ApiSendMessageRequest,
|
||||||
|
ApiSendMessageResult,
|
||||||
|
} from '~/redux/messages/types';
|
||||||
|
|
||||||
export const apiMessagesGetUserMessages = ({
|
export const apiGetUserMessages = ({ username, after, before }: ApiGetUserMessagesRequest) =>
|
||||||
access,
|
|
||||||
username,
|
|
||||||
after,
|
|
||||||
before,
|
|
||||||
}: {
|
|
||||||
access: string;
|
|
||||||
username: string;
|
|
||||||
after?: string;
|
|
||||||
before?: string;
|
|
||||||
}): Promise<IResultWithStatus<{ messages: IMessage[] }>> =>
|
|
||||||
api
|
api
|
||||||
.get(API.USER.MESSAGES(username), configWithToken(access, { params: { after, before } }))
|
.get<ApiGetUserMessagesResponse>(API.USER.MESSAGES(username), {
|
||||||
.then(resultMiddleware)
|
params: { after, before },
|
||||||
.catch(errorMiddleware);
|
})
|
||||||
|
.then(cleanResult);
|
||||||
|
|
||||||
export const apiMessagesSendMessage = ({
|
export const apiSendMessage = ({ username, message }: ApiSendMessageRequest) =>
|
||||||
access,
|
|
||||||
username,
|
|
||||||
message,
|
|
||||||
}): Promise<IResultWithStatus<{ message: IMessage }>> =>
|
|
||||||
api
|
api
|
||||||
.post(API.USER.MESSAGE_SEND(username), { message }, configWithToken(access))
|
.post<ApiSendMessageResult>(API.USER.MESSAGE_SEND(username), { message })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const apiMessagesDeleteMessage = ({
|
export const apiDeleteMessage = ({ username, id, is_locked }: ApiDeleteMessageRequest) =>
|
||||||
access,
|
|
||||||
username,
|
|
||||||
id,
|
|
||||||
is_locked,
|
|
||||||
}: {
|
|
||||||
access: string;
|
|
||||||
username: string;
|
|
||||||
id: number;
|
|
||||||
is_locked: boolean;
|
|
||||||
}): Promise<IResultWithStatus<{ message: IMessage }>> =>
|
|
||||||
api
|
api
|
||||||
.delete(
|
.delete<ApiDeleteMessageResult>(API.USER.MESSAGE_DELETE(username, id), {
|
||||||
API.USER.MESSAGE_DELETE(username, id),
|
params: { is_locked },
|
||||||
configWithToken(access, { params: { is_locked } })
|
})
|
||||||
)
|
.then(cleanResult);
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ export interface IMessagesState {
|
||||||
const INITIAL_STATE: IMessagesState = {
|
const INITIAL_STATE: IMessagesState = {
|
||||||
is_loading_messages: true,
|
is_loading_messages: true,
|
||||||
is_sending_messages: false,
|
is_sending_messages: false,
|
||||||
error: null,
|
error: '',
|
||||||
messages: [],
|
messages: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -5,14 +5,9 @@ import {
|
||||||
selectAuthProfileUsername,
|
selectAuthProfileUsername,
|
||||||
selectAuthUpdates,
|
selectAuthUpdates,
|
||||||
} from '~/redux/auth/selectors';
|
} from '~/redux/auth/selectors';
|
||||||
import {
|
import { apiDeleteMessage, apiGetUserMessages, apiSendMessage } from '~/redux/messages/api';
|
||||||
apiMessagesDeleteMessage,
|
|
||||||
apiMessagesGetUserMessages,
|
|
||||||
apiMessagesSendMessage,
|
|
||||||
} from '~/redux/messages/api';
|
|
||||||
import { ERRORS } from '~/constants/errors';
|
import { ERRORS } from '~/constants/errors';
|
||||||
import { IMessageNotification, Unwrap } from '~/redux/types';
|
import { IMessageNotification, Unwrap } from '~/redux/types';
|
||||||
import { reqWrapper } from '~/redux/auth/sagas';
|
|
||||||
import {
|
import {
|
||||||
messagesDeleteMessage,
|
messagesDeleteMessage,
|
||||||
messagesGetMessages,
|
messagesGetMessages,
|
||||||
|
@ -25,191 +20,188 @@ import { selectMessages } from '~/redux/messages/selectors';
|
||||||
import { sortCreatedAtDesc } from '~/utils/date';
|
import { sortCreatedAtDesc } from '~/utils/date';
|
||||||
|
|
||||||
function* getMessages({ username }: ReturnType<typeof messagesGetMessages>) {
|
function* getMessages({ username }: ReturnType<typeof messagesGetMessages>) {
|
||||||
const { messages }: ReturnType<typeof selectMessages> = yield select(selectMessages);
|
try {
|
||||||
|
const { messages }: ReturnType<typeof selectMessages> = yield select(selectMessages);
|
||||||
|
|
||||||
yield put(
|
yield put(
|
||||||
messagesSet({
|
|
||||||
is_loading_messages: true,
|
|
||||||
messages:
|
|
||||||
messages &&
|
|
||||||
messages.length > 0 &&
|
|
||||||
(messages[0].to.username === username || messages[0].from.username === username)
|
|
||||||
? messages
|
|
||||||
: [],
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
const {
|
|
||||||
error,
|
|
||||||
data,
|
|
||||||
}: Unwrap<ReturnType<typeof apiMessagesGetUserMessages>> = yield call(
|
|
||||||
reqWrapper,
|
|
||||||
apiMessagesGetUserMessages,
|
|
||||||
{ username }
|
|
||||||
);
|
|
||||||
|
|
||||||
if (error || !data.messages) {
|
|
||||||
return yield put(
|
|
||||||
messagesSet({
|
messagesSet({
|
||||||
is_loading_messages: false,
|
is_loading_messages: true,
|
||||||
error: ERRORS.EMPTY_RESPONSE,
|
messages:
|
||||||
|
messages &&
|
||||||
|
messages.length > 0 &&
|
||||||
|
(messages[0].to.username === username || messages[0].from.username === username)
|
||||||
|
? messages
|
||||||
|
: [],
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
yield put(messagesSet({ is_loading_messages: false, messages: data.messages }));
|
const data: Unwrap<typeof apiGetUserMessages> = yield call(apiGetUserMessages, {
|
||||||
|
username,
|
||||||
|
});
|
||||||
|
|
||||||
const { notifications }: ReturnType<typeof selectAuthUpdates> = yield select(selectAuthUpdates);
|
yield put(messagesSet({ is_loading_messages: false, messages: data.messages }));
|
||||||
|
|
||||||
// clear viewed message from notifcation list
|
const { notifications }: ReturnType<typeof selectAuthUpdates> = yield select(selectAuthUpdates);
|
||||||
const filtered = notifications.filter(
|
|
||||||
notification =>
|
|
||||||
notification.type !== 'message' ||
|
|
||||||
(notification as IMessageNotification).content.from.username !== username
|
|
||||||
);
|
|
||||||
|
|
||||||
if (filtered.length !== notifications.length) {
|
// clear viewed message from notifcation list
|
||||||
yield put(authSetUpdates({ notifications: filtered }));
|
const filtered = notifications.filter(
|
||||||
|
notification =>
|
||||||
|
notification.type !== 'message' ||
|
||||||
|
(notification as IMessageNotification)?.content?.from?.username !== username
|
||||||
|
);
|
||||||
|
|
||||||
|
if (filtered.length !== notifications.length) {
|
||||||
|
yield put(authSetUpdates({ notifications: filtered }));
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
messagesSet({
|
||||||
|
error: error.message || ERRORS.EMPTY_RESPONSE,
|
||||||
|
});
|
||||||
|
} finally {
|
||||||
|
yield put(
|
||||||
|
messagesSet({
|
||||||
|
is_loading_messages: false,
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function* sendMessage({ message, onSuccess }: ReturnType<typeof messagesSendMessage>) {
|
function* sendMessage({ message, onSuccess }: ReturnType<typeof messagesSendMessage>) {
|
||||||
const username: ReturnType<typeof selectAuthProfileUsername> = yield select(
|
try {
|
||||||
selectAuthProfileUsername
|
const username: ReturnType<typeof selectAuthProfileUsername> = yield select(
|
||||||
);
|
selectAuthProfileUsername
|
||||||
|
);
|
||||||
|
|
||||||
if (!username) return;
|
if (!username) return;
|
||||||
|
|
||||||
yield put(messagesSet({ is_sending_messages: true, error: null }));
|
yield put(messagesSet({ is_sending_messages: true, error: '' }));
|
||||||
|
|
||||||
const { error, data }: Unwrap<ReturnType<typeof apiMessagesSendMessage>> = yield call(
|
const data: Unwrap<typeof apiSendMessage> = yield call(apiSendMessage, {
|
||||||
reqWrapper,
|
|
||||||
apiMessagesSendMessage,
|
|
||||||
{
|
|
||||||
username,
|
username,
|
||||||
message,
|
message,
|
||||||
|
});
|
||||||
|
|
||||||
|
const { user }: ReturnType<typeof selectAuthProfile> = yield select(selectAuthProfile);
|
||||||
|
|
||||||
|
if (user?.username !== username) {
|
||||||
|
return yield put(messagesSet({ is_sending_messages: false }));
|
||||||
}
|
}
|
||||||
);
|
|
||||||
|
|
||||||
if (error || !data.message) {
|
const { messages }: ReturnType<typeof selectMessages> = yield select(selectMessages);
|
||||||
return yield put(
|
|
||||||
messagesSet({
|
|
||||||
is_sending_messages: false,
|
|
||||||
error: error || ERRORS.EMPTY_RESPONSE,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const { user }: ReturnType<typeof selectAuthProfile> = yield select(selectAuthProfile);
|
if (message.id && message.id > 0) {
|
||||||
|
// modified
|
||||||
|
yield put(
|
||||||
|
messagesSet({
|
||||||
|
is_sending_messages: false,
|
||||||
|
messages: messages.map(item => (item.id === message.id ? data.message : item)),
|
||||||
|
})
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
// created
|
||||||
|
yield put(
|
||||||
|
messagesSet({
|
||||||
|
is_sending_messages: false,
|
||||||
|
messages: [data.message, ...messages],
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (user.username !== username) {
|
onSuccess();
|
||||||
return yield put(messagesSet({ is_sending_messages: false }));
|
} catch (error) {
|
||||||
}
|
messagesSet({
|
||||||
|
error: error.message || ERRORS.EMPTY_RESPONSE,
|
||||||
const { messages }: ReturnType<typeof selectMessages> = yield select(selectMessages);
|
});
|
||||||
|
} finally {
|
||||||
if (message.id > 0) {
|
|
||||||
// modified
|
|
||||||
yield put(
|
yield put(
|
||||||
messagesSet({
|
messagesSet({
|
||||||
is_sending_messages: false,
|
is_loading_messages: false,
|
||||||
messages: messages.map(item => (item.id === message.id ? data.message : item)),
|
|
||||||
})
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
// created
|
|
||||||
yield put(
|
|
||||||
messagesSet({
|
|
||||||
is_sending_messages: false,
|
|
||||||
messages: [data.message, ...messages],
|
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
onSuccess();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* deleteMessage({ id, is_locked }: ReturnType<typeof messagesDeleteMessage>) {
|
function* deleteMessage({ id, is_locked }: ReturnType<typeof messagesDeleteMessage>) {
|
||||||
const username: ReturnType<typeof selectAuthProfileUsername> = yield select(
|
try {
|
||||||
selectAuthProfileUsername
|
const username: ReturnType<typeof selectAuthProfileUsername> = yield select(
|
||||||
);
|
selectAuthProfileUsername
|
||||||
|
);
|
||||||
|
|
||||||
if (!username) return;
|
if (!username) return;
|
||||||
|
|
||||||
yield put(messagesSet({ is_sending_messages: true, error: null }));
|
yield put(messagesSet({ is_sending_messages: true, error: '' }));
|
||||||
|
|
||||||
const { error, data }: Unwrap<ReturnType<typeof apiMessagesDeleteMessage>> = yield call(
|
const data: Unwrap<typeof apiDeleteMessage> = yield call(apiDeleteMessage, {
|
||||||
reqWrapper,
|
|
||||||
apiMessagesDeleteMessage,
|
|
||||||
{
|
|
||||||
username,
|
username,
|
||||||
id,
|
id,
|
||||||
is_locked,
|
is_locked,
|
||||||
}
|
});
|
||||||
);
|
|
||||||
|
|
||||||
if (error || !data.message) {
|
const currentUsername: ReturnType<typeof selectAuthProfileUsername> = yield select(
|
||||||
return yield put(
|
selectAuthProfileUsername
|
||||||
|
);
|
||||||
|
|
||||||
|
if (currentUsername !== username) {
|
||||||
|
return yield put(messagesSet({ is_sending_messages: false }));
|
||||||
|
}
|
||||||
|
|
||||||
|
const { messages }: ReturnType<typeof selectMessages> = yield select(selectMessages);
|
||||||
|
|
||||||
|
yield put(
|
||||||
messagesSet({
|
messagesSet({
|
||||||
is_sending_messages: false,
|
is_sending_messages: false,
|
||||||
|
messages: messages.map(item => (item.id === id ? data.message : item)),
|
||||||
|
})
|
||||||
|
);
|
||||||
|
} catch (error) {
|
||||||
|
messagesSet({
|
||||||
|
error: error.message || ERRORS.EMPTY_RESPONSE,
|
||||||
|
});
|
||||||
|
} finally {
|
||||||
|
yield put(
|
||||||
|
messagesSet({
|
||||||
|
is_loading_messages: false,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const currentUsername: ReturnType<typeof selectAuthProfileUsername> = yield select(
|
|
||||||
selectAuthProfileUsername
|
|
||||||
);
|
|
||||||
|
|
||||||
if (currentUsername !== username) {
|
|
||||||
return yield put(messagesSet({ is_sending_messages: false }));
|
|
||||||
}
|
|
||||||
|
|
||||||
const { messages }: ReturnType<typeof selectMessages> = yield select(selectMessages);
|
|
||||||
|
|
||||||
yield put(
|
|
||||||
messagesSet({
|
|
||||||
is_sending_messages: false,
|
|
||||||
messages: messages.map(item => (item.id === id ? data.message : item)),
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* refreshMessages({}: ReturnType<typeof messagesRefreshMessages>) {
|
function* refreshMessages({}: ReturnType<typeof messagesRefreshMessages>) {
|
||||||
const username: ReturnType<typeof selectAuthProfileUsername> = yield select(
|
try {
|
||||||
selectAuthProfileUsername
|
const username: ReturnType<typeof selectAuthProfileUsername> = yield select(
|
||||||
);
|
selectAuthProfileUsername
|
||||||
|
);
|
||||||
|
|
||||||
if (!username) return;
|
if (!username) return;
|
||||||
|
|
||||||
const { messages }: ReturnType<typeof selectMessages> = yield select(selectMessages);
|
const { messages }: ReturnType<typeof selectMessages> = yield select(selectMessages);
|
||||||
|
|
||||||
yield put(messagesSet({ is_loading_messages: true }));
|
yield put(messagesSet({ is_loading_messages: true }));
|
||||||
|
|
||||||
const after = messages.length > 0 ? messages[0].created_at : undefined;
|
const after = messages.length > 0 ? messages[0].created_at : undefined;
|
||||||
|
|
||||||
const {
|
const data: Unwrap<typeof apiGetUserMessages> = yield call(apiGetUserMessages, {
|
||||||
data,
|
username,
|
||||||
error,
|
after,
|
||||||
}: Unwrap<ReturnType<typeof apiMessagesGetUserMessages>> = yield call(
|
});
|
||||||
reqWrapper,
|
|
||||||
apiMessagesGetUserMessages,
|
|
||||||
{ username, after }
|
|
||||||
);
|
|
||||||
|
|
||||||
yield put(messagesSet({ is_loading_messages: false }));
|
yield put(messagesSet({ is_loading_messages: false }));
|
||||||
|
|
||||||
if (error) {
|
if (!data.messages || !data.messages.length) return;
|
||||||
return yield put(
|
|
||||||
|
const newMessages = [...data.messages, ...messages].sort(sortCreatedAtDesc);
|
||||||
|
yield put(messagesSet({ messages: newMessages }));
|
||||||
|
} catch (error) {
|
||||||
|
messagesSet({
|
||||||
|
error: error.message || ERRORS.EMPTY_RESPONSE,
|
||||||
|
});
|
||||||
|
} finally {
|
||||||
|
yield put(
|
||||||
messagesSet({
|
messagesSet({
|
||||||
error: error || ERRORS.EMPTY_RESPONSE,
|
is_loading_messages: false,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!data.messages || !data.messages.length) return;
|
|
||||||
|
|
||||||
const newMessages = [...data.messages, ...messages].sort(sortCreatedAtDesc);
|
|
||||||
yield put(messagesSet({ messages: newMessages }));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function*() {
|
export default function*() {
|
||||||
|
|
26
src/redux/messages/types.ts
Normal file
26
src/redux/messages/types.ts
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
import { IMessage } from '~/redux/types';
|
||||||
|
|
||||||
|
export type ApiGetUserMessagesRequest = {
|
||||||
|
username: string;
|
||||||
|
after?: string;
|
||||||
|
before?: string;
|
||||||
|
};
|
||||||
|
export type ApiGetUserMessagesResponse = { messages: IMessage[] };
|
||||||
|
|
||||||
|
export type ApiSendMessageRequest = {
|
||||||
|
username: string;
|
||||||
|
message: Partial<IMessage>;
|
||||||
|
};
|
||||||
|
export type ApiSendMessageResult = {
|
||||||
|
message: IMessage;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ApiDeleteMessageRequest = {
|
||||||
|
username: string;
|
||||||
|
id: number;
|
||||||
|
is_locked: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ApiDeleteMessageResult = {
|
||||||
|
message: IMessage;
|
||||||
|
};
|
|
@ -14,7 +14,7 @@ export interface IModalState {
|
||||||
|
|
||||||
const INITIAL_STATE: IModalState = {
|
const INITIAL_STATE: IModalState = {
|
||||||
is_shown: false,
|
is_shown: false,
|
||||||
dialog: null,
|
dialog: '',
|
||||||
photoswipe: {
|
photoswipe: {
|
||||||
images: [],
|
images: [],
|
||||||
index: 0,
|
index: 0,
|
||||||
|
|
|
@ -17,7 +17,7 @@ export const nodeSetSaveErrors = (errors: IValidationErrors) => ({
|
||||||
type: NODE_ACTIONS.SET_SAVE_ERRORS,
|
type: NODE_ACTIONS.SET_SAVE_ERRORS,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const nodeGotoNode = (id: number, node_type: INode['type']) => ({
|
export const nodeGotoNode = (id: INode['id'], node_type: INode['type']) => ({
|
||||||
id,
|
id,
|
||||||
node_type,
|
node_type,
|
||||||
type: NODE_ACTIONS.GOTO_NODE,
|
type: NODE_ACTIONS.GOTO_NODE,
|
||||||
|
@ -55,11 +55,6 @@ export const nodePostLocalComment = (
|
||||||
type: NODE_ACTIONS.POST_COMMENT,
|
type: NODE_ACTIONS.POST_COMMENT,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const nodeCancelCommentEdit = (id: number) => ({
|
|
||||||
id,
|
|
||||||
type: NODE_ACTIONS.CANCEL_COMMENT_EDIT,
|
|
||||||
});
|
|
||||||
|
|
||||||
export const nodeSetSendingComment = (is_sending_comment: boolean) => ({
|
export const nodeSetSendingComment = (is_sending_comment: boolean) => ({
|
||||||
is_sending_comment,
|
is_sending_comment,
|
||||||
type: NODE_ACTIONS.SET_SENDING_COMMENT,
|
type: NODE_ACTIONS.SET_SENDING_COMMENT,
|
||||||
|
|
|
@ -1,181 +1,102 @@
|
||||||
import { api, configWithToken, resultMiddleware, errorMiddleware } from '~/utils/api';
|
import { api, cleanResult, configWithToken, errorMiddleware, resultMiddleware } from '~/utils/api';
|
||||||
import { INode, IResultWithStatus, IComment } from '../types';
|
import { IComment, INode, IResultWithStatus } from '../types';
|
||||||
import { API } from '~/constants/api';
|
import { API } from '~/constants/api';
|
||||||
import { nodeUpdateTags, nodeLike, nodeStar, nodeLock, nodeLockComment } from './actions';
|
|
||||||
import { INodeState } from './reducer';
|
|
||||||
import { COMMENTS_DISPLAY } from './constants';
|
import { COMMENTS_DISPLAY } from './constants';
|
||||||
|
import {
|
||||||
|
ApiGetNodeRelatedRequest,
|
||||||
|
ApiGetNodeRelatedResult,
|
||||||
|
ApiGetNodeRequest,
|
||||||
|
ApiGetNodeResult,
|
||||||
|
ApiLockCommentRequest,
|
||||||
|
ApiLockcommentResult,
|
||||||
|
ApiLockNodeRequest,
|
||||||
|
ApiLockNodeResult,
|
||||||
|
ApiPostCommentRequest,
|
||||||
|
ApiPostCommentResult,
|
||||||
|
ApiPostNodeHeroicRequest,
|
||||||
|
ApiPostNodeHeroicResponse,
|
||||||
|
ApiPostNodeLikeRequest,
|
||||||
|
ApiPostNodeLikeResult,
|
||||||
|
ApiPostNodeTagsRequest,
|
||||||
|
ApiPostNodeTagsResult,
|
||||||
|
GetNodeDiffRequest,
|
||||||
|
GetNodeDiffResult,
|
||||||
|
} from '~/redux/node/types';
|
||||||
|
|
||||||
export const postNode = ({
|
export type ApiPostNodeRequest = { node: INode };
|
||||||
access,
|
export type ApiPostNodeResult = {
|
||||||
node,
|
|
||||||
}: {
|
|
||||||
access: string;
|
|
||||||
node: INode;
|
node: INode;
|
||||||
}): Promise<IResultWithStatus<INode>> =>
|
errors: Record<string, string>;
|
||||||
api
|
};
|
||||||
.post(API.NODE.SAVE, node, configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const getNodes = ({
|
export type ApiGetNodeCommentsRequest = {
|
||||||
from = null,
|
id: number;
|
||||||
access,
|
take?: number;
|
||||||
}: {
|
skip?: number;
|
||||||
from?: string;
|
};
|
||||||
access: string;
|
export type ApiGetNodeCommentsResponse = { comments: IComment[]; comment_count: number };
|
||||||
}): Promise<IResultWithStatus<{ nodes: INode[] }>> =>
|
|
||||||
api
|
export const apiPostNode = ({ node }: ApiPostNodeRequest) =>
|
||||||
.get(API.NODE.GET, configWithToken(access, { params: { from } }))
|
api.post<ApiPostNodeResult>(API.NODE.SAVE, node).then(cleanResult);
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const getNodeDiff = ({
|
export const getNodeDiff = ({
|
||||||
start = null,
|
start,
|
||||||
end = null,
|
end,
|
||||||
take,
|
take,
|
||||||
with_heroes,
|
with_heroes,
|
||||||
with_updated,
|
with_updated,
|
||||||
with_recent,
|
with_recent,
|
||||||
with_valid,
|
with_valid,
|
||||||
access,
|
}: GetNodeDiffRequest) =>
|
||||||
}: {
|
|
||||||
start?: string;
|
|
||||||
end?: string;
|
|
||||||
take?: number;
|
|
||||||
access: string;
|
|
||||||
with_heroes: boolean;
|
|
||||||
with_updated: boolean;
|
|
||||||
with_recent: boolean;
|
|
||||||
with_valid: boolean;
|
|
||||||
}): Promise<IResultWithStatus<{ nodes: INode[] }>> =>
|
|
||||||
api
|
api
|
||||||
.get(
|
.get<GetNodeDiffResult>(API.NODE.GET_DIFF, {
|
||||||
API.NODE.GET_DIFF,
|
params: {
|
||||||
configWithToken(access, {
|
start,
|
||||||
params: {
|
end,
|
||||||
start,
|
take,
|
||||||
end,
|
with_heroes,
|
||||||
take,
|
with_updated,
|
||||||
with_heroes,
|
with_recent,
|
||||||
with_updated,
|
with_valid,
|
||||||
with_recent,
|
},
|
||||||
with_valid,
|
})
|
||||||
},
|
.then(cleanResult);
|
||||||
})
|
|
||||||
)
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const getNode = ({
|
export const apiGetNode = ({ id }: ApiGetNodeRequest) =>
|
||||||
id,
|
api.get<ApiGetNodeResult>(API.NODE.GET_NODE(id)).then(cleanResult);
|
||||||
access,
|
|
||||||
}: {
|
|
||||||
id: string | number;
|
|
||||||
access: string;
|
|
||||||
}): Promise<IResultWithStatus<{ nodes: INode[] }>> =>
|
|
||||||
api
|
|
||||||
.get(API.NODE.GET_NODE(id), configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const postNodeComment = ({
|
export const apiPostComment = ({ id, data }: ApiPostCommentRequest) =>
|
||||||
id,
|
api.post<ApiPostCommentResult>(API.NODE.COMMENT(id), data).then(cleanResult);
|
||||||
data,
|
|
||||||
access,
|
|
||||||
}: {
|
|
||||||
access: string;
|
|
||||||
id: number;
|
|
||||||
data: IComment;
|
|
||||||
}): Promise<IResultWithStatus<{ comment: Comment }>> =>
|
|
||||||
api
|
|
||||||
.post(API.NODE.COMMENT(id), data, configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const getNodeComments = ({
|
export const apiGetNodeComments = ({
|
||||||
id,
|
id,
|
||||||
access,
|
|
||||||
take = COMMENTS_DISPLAY,
|
take = COMMENTS_DISPLAY,
|
||||||
skip = 0,
|
skip = 0,
|
||||||
}: {
|
}: ApiGetNodeCommentsRequest) =>
|
||||||
id: number;
|
|
||||||
access: string;
|
|
||||||
take?: number;
|
|
||||||
skip?: number;
|
|
||||||
}): Promise<IResultWithStatus<{ comments: IComment[]; comment_count: number }>> =>
|
|
||||||
api
|
api
|
||||||
.get(API.NODE.COMMENT(id), configWithToken(access, { params: { take, skip } }))
|
.get<ApiGetNodeCommentsResponse>(API.NODE.COMMENT(id), { params: { take, skip } })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const getNodeRelated = ({
|
export const apiGetNodeRelated = ({ id }: ApiGetNodeRelatedRequest) =>
|
||||||
id,
|
api.get<ApiGetNodeRelatedResult>(API.NODE.RELATED(id)).then(cleanResult);
|
||||||
access,
|
|
||||||
}: {
|
|
||||||
id: number;
|
|
||||||
access: string;
|
|
||||||
}): Promise<IResultWithStatus<{ related: INodeState['related'] }>> =>
|
|
||||||
api
|
|
||||||
.get(API.NODE.RELATED(id), configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const updateNodeTags = ({
|
export const apiPostNodeTags = ({ id, tags }: ApiPostNodeTagsRequest) =>
|
||||||
id,
|
|
||||||
tags,
|
|
||||||
access,
|
|
||||||
}: ReturnType<typeof nodeUpdateTags> & { access: string }): Promise<IResultWithStatus<{
|
|
||||||
node: INode;
|
|
||||||
}>> =>
|
|
||||||
api
|
api
|
||||||
.post(API.NODE.UPDATE_TAGS(id), { tags }, configWithToken(access))
|
.post<ApiPostNodeTagsResult>(API.NODE.UPDATE_TAGS(id), { tags })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const postNodeLike = ({
|
export const apiPostNodeLike = ({ id }: ApiPostNodeLikeRequest) =>
|
||||||
id,
|
api.post<ApiPostNodeLikeResult>(API.NODE.POST_LIKE(id)).then(cleanResult);
|
||||||
access,
|
|
||||||
}: ReturnType<typeof nodeLike> & { access: string }): Promise<IResultWithStatus<{
|
|
||||||
is_liked: INode['is_liked'];
|
|
||||||
}>> =>
|
|
||||||
api
|
|
||||||
.post(API.NODE.POST_LIKE(id), {}, configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const postNodeStar = ({
|
export const apiPostNodeHeroic = ({ id }: ApiPostNodeHeroicRequest) =>
|
||||||
id,
|
api.post<ApiPostNodeHeroicResponse>(API.NODE.POST_HEROIC(id)).then(cleanResult);
|
||||||
access,
|
|
||||||
}: ReturnType<typeof nodeStar> & { access: string }): Promise<IResultWithStatus<{
|
|
||||||
is_liked: INode['is_liked'];
|
|
||||||
}>> =>
|
|
||||||
api
|
|
||||||
.post(API.NODE.POST_STAR(id), {}, configWithToken(access))
|
|
||||||
.then(resultMiddleware)
|
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const postNodeLock = ({
|
export const apiLockNode = ({ id, is_locked }: ApiLockNodeRequest) =>
|
||||||
id,
|
|
||||||
is_locked,
|
|
||||||
access,
|
|
||||||
}: ReturnType<typeof nodeLock> & { access: string }): Promise<IResultWithStatus<{
|
|
||||||
deleted_at: INode['deleted_at'];
|
|
||||||
}>> =>
|
|
||||||
api
|
api
|
||||||
.post(API.NODE.POST_LOCK(id), { is_locked }, configWithToken(access))
|
.post<ApiLockNodeResult>(API.NODE.POST_LOCK(id), { is_locked })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const postNodeLockComment = ({
|
export const apiLockComment = ({ id, is_locked, current }: ApiLockCommentRequest) =>
|
||||||
id,
|
|
||||||
is_locked,
|
|
||||||
current,
|
|
||||||
access,
|
|
||||||
}: ReturnType<typeof nodeLockComment> & {
|
|
||||||
access: string;
|
|
||||||
current: INode['id'];
|
|
||||||
}): Promise<IResultWithStatus<{ deleted_at: INode['deleted_at'] }>> =>
|
|
||||||
api
|
api
|
||||||
.post(API.NODE.POST_LOCK_COMMENT(current, id), { is_locked }, configWithToken(access))
|
.post<ApiLockcommentResult>(API.NODE.LOCK_COMMENT(current, id), { is_locked })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { FC } from 'react';
|
import { FC, ReactElement } from 'react';
|
||||||
import { IComment, INode, ValueOf } from '../types';
|
import { IComment, INode, ValueOf } from '../types';
|
||||||
import { NodeImageSlideBlock } from '~/components/node/NodeImageSlideBlock';
|
import { NodeImageSlideBlock } from '~/components/node/NodeImageSlideBlock';
|
||||||
import { NodeTextBlock } from '~/components/node/NodeTextBlock';
|
import { NodeTextBlock } from '~/components/node/NodeTextBlock';
|
||||||
|
@ -13,7 +13,7 @@ import { EditorImageUploadButton } from '~/components/editors/EditorImageUploadB
|
||||||
import { EditorAudioUploadButton } from '~/components/editors/EditorAudioUploadButton';
|
import { EditorAudioUploadButton } from '~/components/editors/EditorAudioUploadButton';
|
||||||
import { EditorUploadCoverButton } from '~/components/editors/EditorUploadCoverButton';
|
import { EditorUploadCoverButton } from '~/components/editors/EditorUploadCoverButton';
|
||||||
import { modalShowPhotoswipe } from '../modal/actions';
|
import { modalShowPhotoswipe } from '../modal/actions';
|
||||||
import { IEditorComponentProps } from '~/redux/node/types';
|
import { IEditorComponentProps, NodeEditorProps } from '~/redux/node/types';
|
||||||
import { EditorFiller } from '~/components/editors/EditorFiller';
|
import { EditorFiller } from '~/components/editors/EditorFiller';
|
||||||
|
|
||||||
const prefix = 'NODE.';
|
const prefix = 'NODE.';
|
||||||
|
@ -29,7 +29,6 @@ export const NODE_ACTIONS = {
|
||||||
LOCK: `${prefix}LOCK`,
|
LOCK: `${prefix}LOCK`,
|
||||||
LOCK_COMMENT: `${prefix}LOCK_COMMENT`,
|
LOCK_COMMENT: `${prefix}LOCK_COMMENT`,
|
||||||
EDIT_COMMENT: `${prefix}EDIT_COMMENT`,
|
EDIT_COMMENT: `${prefix}EDIT_COMMENT`,
|
||||||
CANCEL_COMMENT_EDIT: `${prefix}CANCEL_COMMENT_EDIT`,
|
|
||||||
CREATE: `${prefix}CREATE`,
|
CREATE: `${prefix}CREATE`,
|
||||||
LOAD_MORE_COMMENTS: `${prefix}LOAD_MORE_COMMENTS`,
|
LOAD_MORE_COMMENTS: `${prefix}LOAD_MORE_COMMENTS`,
|
||||||
|
|
||||||
|
@ -51,15 +50,13 @@ export const NODE_ACTIONS = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const EMPTY_NODE: INode = {
|
export const EMPTY_NODE: INode = {
|
||||||
id: null,
|
id: 0,
|
||||||
|
user: undefined,
|
||||||
user: null,
|
|
||||||
|
|
||||||
title: '',
|
title: '',
|
||||||
files: [],
|
files: [],
|
||||||
|
|
||||||
cover: null,
|
cover: undefined,
|
||||||
type: null,
|
type: undefined,
|
||||||
|
|
||||||
blocks: [],
|
blocks: [],
|
||||||
tags: [],
|
tags: [],
|
||||||
|
@ -103,13 +100,16 @@ export const NODE_INLINES: INodeComponents = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const EMPTY_COMMENT: IComment = {
|
export const EMPTY_COMMENT: IComment = {
|
||||||
id: null,
|
id: 0,
|
||||||
text: '',
|
text: '',
|
||||||
files: [],
|
files: [],
|
||||||
user: null,
|
user: undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
export const NODE_EDITORS = {
|
export const NODE_EDITORS: Record<
|
||||||
|
typeof NODE_TYPES[keyof typeof NODE_TYPES],
|
||||||
|
FC<NodeEditorProps>
|
||||||
|
> = {
|
||||||
[NODE_TYPES.IMAGE]: ImageEditor,
|
[NODE_TYPES.IMAGE]: ImageEditor,
|
||||||
[NODE_TYPES.TEXT]: TextEditor,
|
[NODE_TYPES.TEXT]: TextEditor,
|
||||||
[NODE_TYPES.VIDEO]: VideoEditor,
|
[NODE_TYPES.VIDEO]: VideoEditor,
|
||||||
|
|
|
@ -8,12 +8,12 @@ export type INodeState = Readonly<{
|
||||||
current: INode;
|
current: INode;
|
||||||
comments: IComment[];
|
comments: IComment[];
|
||||||
related: {
|
related: {
|
||||||
albums: Record<string, Partial<INode[]>>;
|
albums: Record<string, INode[]>;
|
||||||
similar: Partial<INode[]>;
|
similar: INode[];
|
||||||
};
|
};
|
||||||
comment_data: Record<number, IComment>;
|
comment_data: Record<number, IComment>;
|
||||||
comment_count: number;
|
comment_count: number;
|
||||||
current_cover_image: IFile;
|
current_cover_image?: IFile;
|
||||||
|
|
||||||
error: string;
|
error: string;
|
||||||
errors: Record<string, string>;
|
errors: Record<string, string>;
|
||||||
|
@ -38,14 +38,17 @@ const INITIAL_STATE: INodeState = {
|
||||||
},
|
},
|
||||||
comment_count: 0,
|
comment_count: 0,
|
||||||
comments: [],
|
comments: [],
|
||||||
related: null,
|
related: {
|
||||||
current_cover_image: null,
|
albums: {},
|
||||||
|
similar: [],
|
||||||
|
},
|
||||||
|
current_cover_image: undefined,
|
||||||
|
|
||||||
is_loading: false,
|
is_loading: false,
|
||||||
is_loading_comments: false,
|
is_loading_comments: false,
|
||||||
is_sending_comment: false,
|
is_sending_comment: false,
|
||||||
|
|
||||||
error: null,
|
error: '',
|
||||||
errors: {},
|
errors: {},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
import { all, call, delay, put, select, takeLatest, takeLeading } from 'redux-saga/effects';
|
import { all, call, put, select, takeLatest, takeLeading } from 'redux-saga/effects';
|
||||||
import { push } from 'connected-react-router';
|
import { push } from 'connected-react-router';
|
||||||
import { omit } from 'ramda';
|
|
||||||
|
|
||||||
import { COMMENTS_DISPLAY, EMPTY_COMMENT, EMPTY_NODE, NODE_ACTIONS, NODE_EDITOR_DATA } from './constants';
|
|
||||||
import {
|
import {
|
||||||
nodeCancelCommentEdit,
|
COMMENTS_DISPLAY,
|
||||||
|
EMPTY_COMMENT,
|
||||||
|
EMPTY_NODE,
|
||||||
|
NODE_ACTIONS,
|
||||||
|
NODE_EDITOR_DATA,
|
||||||
|
} from './constants';
|
||||||
|
import {
|
||||||
nodeCreate,
|
nodeCreate,
|
||||||
nodeEdit,
|
nodeEdit,
|
||||||
nodeEditComment,
|
|
||||||
nodeGotoNode,
|
nodeGotoNode,
|
||||||
nodeLike,
|
nodeLike,
|
||||||
nodeLoadNode,
|
nodeLoadNode,
|
||||||
|
@ -28,35 +31,34 @@ import {
|
||||||
nodeUpdateTags,
|
nodeUpdateTags,
|
||||||
} from './actions';
|
} from './actions';
|
||||||
import {
|
import {
|
||||||
getNode,
|
apiGetNode,
|
||||||
getNodeComments,
|
apiGetNodeComments,
|
||||||
getNodeRelated,
|
apiGetNodeRelated,
|
||||||
postNode,
|
apiLockComment,
|
||||||
postNodeComment,
|
apiLockNode,
|
||||||
postNodeLike,
|
apiPostComment,
|
||||||
postNodeLock,
|
apiPostNode,
|
||||||
postNodeLockComment,
|
apiPostNodeHeroic,
|
||||||
postNodeStar,
|
apiPostNodeLike,
|
||||||
updateNodeTags,
|
apiPostNodeTags,
|
||||||
} from './api';
|
} from './api';
|
||||||
import { reqWrapper } from '../auth/sagas';
|
|
||||||
import { flowSetNodes, flowSetUpdated } from '../flow/actions';
|
import { flowSetNodes, flowSetUpdated } from '../flow/actions';
|
||||||
import { ERRORS } from '~/constants/errors';
|
import { ERRORS } from '~/constants/errors';
|
||||||
import { modalSetShown, modalShowDialog } from '../modal/actions';
|
import { modalSetShown, modalShowDialog } from '../modal/actions';
|
||||||
import { selectFlow, selectFlowNodes } from '../flow/selectors';
|
import { selectFlow, selectFlowNodes } from '../flow/selectors';
|
||||||
import { URLS } from '~/constants/urls';
|
import { URLS } from '~/constants/urls';
|
||||||
import { selectNode } from './selectors';
|
import { selectNode } from './selectors';
|
||||||
import { INode, IResultWithStatus, Unwrap } from '../types';
|
import { Unwrap } from '../types';
|
||||||
import { NODE_EDITOR_DIALOGS } from '~/constants/dialogs';
|
import { NODE_EDITOR_DIALOGS } from '~/constants/dialogs';
|
||||||
import { DIALOGS } from '~/redux/modal/constants';
|
import { DIALOGS } from '~/redux/modal/constants';
|
||||||
import { INodeState } from './reducer';
|
import { has } from 'ramda';
|
||||||
import { IFlowState } from '../flow/reducer';
|
|
||||||
|
|
||||||
export function* updateNodeEverywhere(node) {
|
export function* updateNodeEverywhere(node) {
|
||||||
const {
|
const {
|
||||||
current: { id },
|
current: { id },
|
||||||
}: INodeState = yield select(selectNode);
|
}: ReturnType<typeof selectNode> = yield select(selectNode);
|
||||||
const flow_nodes: IFlowState['nodes'] = yield select(selectFlowNodes);
|
|
||||||
|
const flow_nodes: ReturnType<typeof selectFlowNodes> = yield select(selectFlowNodes);
|
||||||
|
|
||||||
if (id === node.id) {
|
if (id === node.id) {
|
||||||
yield put(nodeSetCurrent(node));
|
yield put(nodeSetCurrent(node));
|
||||||
|
@ -72,278 +74,282 @@ export function* updateNodeEverywhere(node) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onNodeSave({ node }: ReturnType<typeof nodeSave>) {
|
function* onNodeSave({ node }: ReturnType<typeof nodeSave>) {
|
||||||
yield put(nodeSetSaveErrors({}));
|
try {
|
||||||
|
yield put(nodeSetSaveErrors({}));
|
||||||
|
|
||||||
const {
|
const { errors, node: result }: Unwrap<typeof apiPostNode> = yield call(apiPostNode, { node });
|
||||||
error,
|
|
||||||
data: { errors, node: result },
|
|
||||||
} = yield call(reqWrapper, postNode, { node });
|
|
||||||
|
|
||||||
if (errors && Object.values(errors).length > 0) {
|
if (errors && Object.values(errors).length > 0) {
|
||||||
return yield put(nodeSetSaveErrors(errors));
|
yield put(nodeSetSaveErrors(errors));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const nodes: ReturnType<typeof selectFlowNodes> = yield select(selectFlowNodes);
|
||||||
|
const updated_flow_nodes = node.id
|
||||||
|
? nodes.map(item => (item.id === result.id ? result : item))
|
||||||
|
: [result, ...nodes];
|
||||||
|
|
||||||
|
yield put(flowSetNodes(updated_flow_nodes));
|
||||||
|
|
||||||
|
const { current } = yield select(selectNode);
|
||||||
|
|
||||||
|
if (node.id && current.id === result.id) {
|
||||||
|
yield put(nodeSetCurrent(result));
|
||||||
|
}
|
||||||
|
|
||||||
|
return yield put(modalSetShown(false));
|
||||||
|
} catch (error) {
|
||||||
|
yield put(nodeSetSaveErrors({ error: error.message || ERRORS.CANT_SAVE_NODE }));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (error || !result || !result.id) {
|
|
||||||
return yield put(nodeSetSaveErrors({ error: error || ERRORS.CANT_SAVE_NODE }));
|
|
||||||
}
|
|
||||||
|
|
||||||
const nodes = yield select(selectFlowNodes);
|
|
||||||
const updated_flow_nodes = node.id
|
|
||||||
? nodes.map(item => (item.id === result.id ? result : item))
|
|
||||||
: [result, ...nodes];
|
|
||||||
|
|
||||||
yield put(flowSetNodes(updated_flow_nodes));
|
|
||||||
|
|
||||||
const { current } = yield select(selectNode);
|
|
||||||
|
|
||||||
if (node.id && current.id === result.id) {
|
|
||||||
yield put(nodeSetCurrent(result));
|
|
||||||
}
|
|
||||||
|
|
||||||
return yield put(modalSetShown(false));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onNodeGoto({ id, node_type }: ReturnType<typeof nodeGotoNode>) {
|
function* onNodeGoto({ id, node_type }: ReturnType<typeof nodeGotoNode>) {
|
||||||
|
if (!id) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (node_type) yield put(nodeSetCurrent({ ...EMPTY_NODE, type: node_type }));
|
if (node_type) yield put(nodeSetCurrent({ ...EMPTY_NODE, type: node_type }));
|
||||||
|
|
||||||
yield put(nodeLoadNode(id));
|
yield put(nodeLoadNode(id));
|
||||||
yield put(nodeSetCommentData(0, { ...EMPTY_COMMENT }));
|
yield put(nodeSetCommentData(0, { ...EMPTY_COMMENT }));
|
||||||
yield put(nodeSetRelated(null));
|
yield put(nodeSetRelated({ albums: {}, similar: [] }));
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onNodeLoadMoreComments() {
|
function* onNodeLoadMoreComments() {
|
||||||
const {
|
try {
|
||||||
current: { id },
|
const {
|
||||||
comments,
|
current: { id },
|
||||||
}: ReturnType<typeof selectNode> = yield select(selectNode);
|
comments,
|
||||||
|
}: ReturnType<typeof selectNode> = yield select(selectNode);
|
||||||
|
|
||||||
const { data, error }: Unwrap<ReturnType<typeof getNodeComments>> = yield call(
|
if (!id) {
|
||||||
reqWrapper,
|
return;
|
||||||
getNodeComments,
|
}
|
||||||
{
|
|
||||||
|
const data: Unwrap<typeof apiGetNodeComments> = yield call(apiGetNodeComments, {
|
||||||
id,
|
id,
|
||||||
take: COMMENTS_DISPLAY,
|
take: COMMENTS_DISPLAY,
|
||||||
skip: comments.length,
|
skip: comments.length,
|
||||||
|
});
|
||||||
|
|
||||||
|
const current: ReturnType<typeof selectNode> = yield select(selectNode);
|
||||||
|
|
||||||
|
if (!data || current.current.id != id) {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
);
|
|
||||||
|
|
||||||
const current: ReturnType<typeof selectNode> = yield select(selectNode);
|
yield put(
|
||||||
|
nodeSet({
|
||||||
if (!data || error || current.current.id != id) {
|
comments: [...comments, ...data.comments],
|
||||||
return;
|
comment_count: data.comment_count,
|
||||||
}
|
})
|
||||||
|
);
|
||||||
yield put(
|
} catch (error) {}
|
||||||
nodeSet({
|
|
||||||
comments: [...comments, ...data.comments],
|
|
||||||
comment_count: data.comment_count,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onNodeLoad({ id, order = 'ASC' }: ReturnType<typeof nodeLoadNode>) {
|
function* onNodeLoad({ id }: ReturnType<typeof nodeLoadNode>) {
|
||||||
yield put(nodeSetLoading(true));
|
// Get node body
|
||||||
yield put(nodeSetLoadingComments(true));
|
try {
|
||||||
|
yield put(nodeSetLoading(true));
|
||||||
|
yield put(nodeSetLoadingComments(true));
|
||||||
|
|
||||||
const {
|
const { node }: Unwrap<typeof apiGetNode> = yield call(apiGetNode, { id });
|
||||||
data: { node, error },
|
|
||||||
} = yield call(reqWrapper, getNode, { id });
|
|
||||||
|
|
||||||
if (error || !node || !node.id) {
|
yield put(nodeSetCurrent(node));
|
||||||
|
yield put(nodeSetLoading(false));
|
||||||
|
} catch (error) {
|
||||||
yield put(push(URLS.ERRORS.NOT_FOUND));
|
yield put(push(URLS.ERRORS.NOT_FOUND));
|
||||||
yield put(nodeSetLoading(false));
|
yield put(nodeSetLoading(false));
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
yield put(nodeSetCurrent(node));
|
// Comments and related
|
||||||
yield put(nodeSetLoading(false));
|
try {
|
||||||
|
const [{ comments, comment_count }, { related }]: [
|
||||||
|
Unwrap<typeof apiGetNodeComments>,
|
||||||
|
Unwrap<typeof apiGetNodeRelated>
|
||||||
|
] = yield all([
|
||||||
|
call(apiGetNodeComments, { id, take: COMMENTS_DISPLAY, skip: 0 }),
|
||||||
|
call(apiGetNodeRelated, { id }),
|
||||||
|
]);
|
||||||
|
|
||||||
const {
|
yield put(
|
||||||
comments: {
|
nodeSet({
|
||||||
data: { comments, comment_count },
|
comments,
|
||||||
},
|
comment_count,
|
||||||
related: {
|
related,
|
||||||
data: { related },
|
is_loading_comments: false,
|
||||||
},
|
})
|
||||||
} = yield all({
|
);
|
||||||
comments: call(reqWrapper, getNodeComments, { id, take: COMMENTS_DISPLAY, skip: 0 }),
|
} catch {}
|
||||||
related: call(reqWrapper, getNodeRelated, { id }),
|
|
||||||
});
|
|
||||||
|
|
||||||
yield put(
|
|
||||||
nodeSet({
|
|
||||||
comments,
|
|
||||||
comment_count,
|
|
||||||
related,
|
|
||||||
is_loading_comments: false,
|
|
||||||
comment_data: { 0: { ...EMPTY_COMMENT } },
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
|
// Remove current node from recently updated
|
||||||
const { updated } = yield select(selectFlow);
|
const { updated } = yield select(selectFlow);
|
||||||
|
|
||||||
if (updated.some(item => item.id === id)) {
|
if (updated.some(item => item.id === id)) {
|
||||||
yield put(flowSetUpdated(updated.filter(item => item.id !== id)));
|
yield put(flowSetUpdated(updated.filter(item => item.id !== id)));
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onPostComment({ nodeId, comment, callback }: ReturnType<typeof nodePostLocalComment>) {
|
function* onPostComment({ nodeId, comment, callback }: ReturnType<typeof nodePostLocalComment>) {
|
||||||
const { data, error }: Unwrap<ReturnType<typeof postNodeComment>> = yield call(
|
try {
|
||||||
reqWrapper,
|
const data: Unwrap<typeof apiPostComment> = yield call(apiPostComment, {
|
||||||
postNodeComment,
|
|
||||||
{
|
|
||||||
data: comment,
|
data: comment,
|
||||||
id: nodeId,
|
id: nodeId,
|
||||||
|
});
|
||||||
|
|
||||||
|
const { current }: ReturnType<typeof selectNode> = yield select(selectNode);
|
||||||
|
|
||||||
|
if (current?.id === nodeId) {
|
||||||
|
const { comments }: ReturnType<typeof selectNode> = yield select(selectNode);
|
||||||
|
|
||||||
|
if (!comment.id) {
|
||||||
|
yield put(nodeSetComments([data.comment, ...comments]));
|
||||||
|
} else {
|
||||||
|
yield put(
|
||||||
|
nodeSet({
|
||||||
|
comments: comments.map(item => (item.id === comment.id ? data.comment : item)),
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
callback();
|
||||||
}
|
}
|
||||||
);
|
} catch (error) {
|
||||||
|
return callback(error.message);
|
||||||
if (error || !data.comment) {
|
|
||||||
return callback(error);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const { current }: ReturnType<typeof selectNode> = yield select(selectNode);
|
|
||||||
|
|
||||||
if (current?.id === nodeId) {
|
|
||||||
const { comments } = yield select(selectNode);
|
|
||||||
|
|
||||||
if (!comment.id) {
|
|
||||||
yield put(nodeSetComments([data.comment, ...comments]));
|
|
||||||
} else {
|
|
||||||
yield put(
|
|
||||||
nodeSet({
|
|
||||||
comments: comments.map(item => (item.id === comment.id ? data.comment : item)),
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
callback();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function* onCancelCommentEdit({ id }: ReturnType<typeof nodeCancelCommentEdit>) {
|
|
||||||
const { comment_data } = yield select(selectNode);
|
|
||||||
|
|
||||||
yield put(
|
|
||||||
nodeSet({
|
|
||||||
comment_data: omit([id.toString()], comment_data),
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onUpdateTags({ id, tags }: ReturnType<typeof nodeUpdateTags>) {
|
function* onUpdateTags({ id, tags }: ReturnType<typeof nodeUpdateTags>) {
|
||||||
yield delay(100);
|
try {
|
||||||
|
const { node }: Unwrap<typeof apiPostNodeTags> = yield call(apiPostNodeTags, { id, tags });
|
||||||
const {
|
const { current }: ReturnType<typeof selectNode> = yield select(selectNode);
|
||||||
data: { node },
|
if (!node || !node.id || node.id !== current.id) return;
|
||||||
}: IResultWithStatus<{ node: INode }> = yield call(reqWrapper, updateNodeTags, { id, tags });
|
yield put(nodeSetTags(node.tags));
|
||||||
|
} catch {}
|
||||||
const { current } = yield select(selectNode);
|
|
||||||
|
|
||||||
if (!node || !node.id || node.id !== current.id) return;
|
|
||||||
|
|
||||||
yield put(nodeSetTags(node.tags));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onCreateSaga({ node_type: type }: ReturnType<typeof nodeCreate>) {
|
function* onCreateSaga({ node_type: type }: ReturnType<typeof nodeCreate>) {
|
||||||
if (!NODE_EDITOR_DIALOGS[type]) return;
|
if (!type || !has(type, NODE_EDITOR_DIALOGS)) return;
|
||||||
|
|
||||||
yield put(nodeSetEditor({ ...EMPTY_NODE, ...(NODE_EDITOR_DATA[type] || {}), type }));
|
yield put(nodeSetEditor({ ...EMPTY_NODE, ...(NODE_EDITOR_DATA[type] || {}), type }));
|
||||||
yield put(modalShowDialog(NODE_EDITOR_DIALOGS[type]));
|
yield put(modalShowDialog(NODE_EDITOR_DIALOGS[type]));
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onEditSaga({ id }: ReturnType<typeof nodeEdit>) {
|
function* onEditSaga({ id }: ReturnType<typeof nodeEdit>) {
|
||||||
yield put(modalShowDialog(DIALOGS.LOADING));
|
try {
|
||||||
|
if (!id) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const {
|
yield put(modalShowDialog(DIALOGS.LOADING));
|
||||||
data: { node },
|
|
||||||
error,
|
|
||||||
} = yield call(reqWrapper, getNode, { id });
|
|
||||||
|
|
||||||
if (error || !node || !node.type || !NODE_EDITOR_DIALOGS[node.type])
|
const { node }: Unwrap<typeof apiGetNode> = yield call(apiGetNode, { id });
|
||||||
return yield put(modalSetShown(false));
|
|
||||||
|
|
||||||
yield put(nodeSetEditor(node));
|
if (!node.type || !has(node.type, NODE_EDITOR_DIALOGS)) return;
|
||||||
yield put(modalShowDialog(NODE_EDITOR_DIALOGS[node.type]));
|
|
||||||
|
|
||||||
return true;
|
if (!NODE_EDITOR_DIALOGS[node?.type]) {
|
||||||
|
throw new Error('Unknown node type');
|
||||||
|
}
|
||||||
|
|
||||||
|
yield put(nodeSetEditor(node));
|
||||||
|
yield put(modalShowDialog(NODE_EDITOR_DIALOGS[node.type]));
|
||||||
|
} catch (error) {
|
||||||
|
yield put(modalSetShown(false));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onLikeSaga({ id }: ReturnType<typeof nodeLike>) {
|
function* onLikeSaga({ id }: ReturnType<typeof nodeLike>) {
|
||||||
const {
|
const { current }: ReturnType<typeof selectNode> = yield select(selectNode);
|
||||||
current,
|
|
||||||
current: { is_liked, like_count },
|
|
||||||
} = yield select(selectNode);
|
|
||||||
|
|
||||||
yield call(updateNodeEverywhere, {
|
try {
|
||||||
...current,
|
const count = current.like_count || 0;
|
||||||
is_liked: !is_liked,
|
|
||||||
like_count: is_liked ? Math.max(like_count - 1, 0) : like_count + 1,
|
|
||||||
});
|
|
||||||
|
|
||||||
const { data, error } = yield call(reqWrapper, postNodeLike, { id });
|
yield call(updateNodeEverywhere, {
|
||||||
|
...current,
|
||||||
|
is_liked: !current.is_liked,
|
||||||
|
like_count: current.is_liked ? Math.max(count - 1, 0) : count + 1,
|
||||||
|
});
|
||||||
|
|
||||||
if (!error || data.is_liked === !is_liked) return; // ok and matches
|
const data: Unwrap<typeof apiPostNodeLike> = yield call(apiPostNodeLike, { id });
|
||||||
|
|
||||||
yield call(updateNodeEverywhere, { ...current, is_liked, like_count });
|
yield call(updateNodeEverywhere, {
|
||||||
|
...current,
|
||||||
|
is_liked: data.is_liked,
|
||||||
|
like_count: data.is_liked ? count + 1 : Math.max(count - 1, 0),
|
||||||
|
});
|
||||||
|
} catch {}
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onStarSaga({ id }: ReturnType<typeof nodeLike>) {
|
function* onStarSaga({ id }: ReturnType<typeof nodeLike>) {
|
||||||
const {
|
try {
|
||||||
current,
|
const {
|
||||||
current: { is_heroic },
|
current,
|
||||||
} = yield select(selectNode);
|
current: { is_heroic },
|
||||||
|
} = yield select(selectNode);
|
||||||
|
|
||||||
yield call(updateNodeEverywhere, { ...current, is_heroic: !is_heroic });
|
yield call(updateNodeEverywhere, { ...current, is_heroic: !is_heroic });
|
||||||
|
|
||||||
const { data, error } = yield call(reqWrapper, postNodeStar, { id });
|
const data: Unwrap<typeof apiPostNodeHeroic> = yield call(apiPostNodeHeroic, { id });
|
||||||
|
|
||||||
if (!error || data.is_heroic === !is_heroic) return; // ok and matches
|
yield call(updateNodeEverywhere, { ...current, is_heroic: data.is_heroic });
|
||||||
|
} catch {}
|
||||||
yield call(updateNodeEverywhere, { ...current, is_heroic });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onLockSaga({ id, is_locked }: ReturnType<typeof nodeLock>) {
|
function* onLockSaga({ id, is_locked }: ReturnType<typeof nodeLock>) {
|
||||||
const {
|
const { current }: ReturnType<typeof selectNode> = yield select(selectNode);
|
||||||
current,
|
|
||||||
current: { deleted_at },
|
|
||||||
} = yield select(selectNode);
|
|
||||||
|
|
||||||
yield call(updateNodeEverywhere, {
|
try {
|
||||||
...current,
|
yield call(updateNodeEverywhere, {
|
||||||
deleted_at: is_locked ? new Date().toISOString() : null,
|
...current,
|
||||||
});
|
deleted_at: is_locked ? new Date().toISOString() : null,
|
||||||
|
});
|
||||||
|
|
||||||
const { error } = yield call(reqWrapper, postNodeLock, { id, is_locked });
|
const data: Unwrap<typeof apiLockNode> = yield call(apiLockNode, { id, is_locked });
|
||||||
|
|
||||||
if (error) return yield call(updateNodeEverywhere, { ...current, deleted_at });
|
yield call(updateNodeEverywhere, {
|
||||||
|
...current,
|
||||||
|
deleted_at: data.deleted_at || undefined,
|
||||||
|
});
|
||||||
|
} catch {
|
||||||
|
yield call(updateNodeEverywhere, { ...current, deleted_at: current.deleted_at });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function* onLockCommentSaga({ id, is_locked }: ReturnType<typeof nodeLockComment>) {
|
function* onLockCommentSaga({ id, is_locked }: ReturnType<typeof nodeLockComment>) {
|
||||||
const { current, comments } = yield select(selectNode);
|
const { current, comments }: ReturnType<typeof selectNode> = yield select(selectNode);
|
||||||
|
|
||||||
yield put(
|
try {
|
||||||
nodeSetComments(
|
yield put(
|
||||||
comments.map(comment =>
|
nodeSetComments(
|
||||||
comment.id === id
|
comments.map(comment =>
|
||||||
? { ...comment, deleted_at: is_locked ? new Date().toISOString() : null }
|
comment.id === id
|
||||||
: comment
|
? { ...comment, deleted_at: is_locked ? new Date().toISOString() : undefined }
|
||||||
|
: comment
|
||||||
|
)
|
||||||
)
|
)
|
||||||
)
|
);
|
||||||
);
|
|
||||||
|
|
||||||
yield call(reqWrapper, postNodeLockComment, { current: current.id, id, is_locked });
|
const data: Unwrap<typeof apiLockComment> = yield call(apiLockComment, {
|
||||||
}
|
current: current.id,
|
||||||
|
id,
|
||||||
|
is_locked,
|
||||||
|
});
|
||||||
|
|
||||||
function* onEditCommentSaga({ id }: ReturnType<typeof nodeEditComment>) {
|
yield put(
|
||||||
const { comments } = yield select(selectNode);
|
nodeSetComments(
|
||||||
|
comments.map(comment =>
|
||||||
const comment = comments.find(item => item.id === id);
|
comment.id === id ? { ...comment, deleted_at: data.deleted_at || undefined } : comment
|
||||||
|
)
|
||||||
if (!comment) return;
|
)
|
||||||
|
);
|
||||||
yield put(nodeSetCommentData(id, { ...EMPTY_COMMENT, ...comment }));
|
} catch {
|
||||||
|
yield put(
|
||||||
|
nodeSetComments(
|
||||||
|
comments.map(comment =>
|
||||||
|
comment.id === id ? { ...comment, deleted_at: current.deleted_at } : comment
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function* nodeSaga() {
|
export default function* nodeSaga() {
|
||||||
|
@ -351,7 +357,6 @@ export default function* nodeSaga() {
|
||||||
yield takeLatest(NODE_ACTIONS.GOTO_NODE, onNodeGoto);
|
yield takeLatest(NODE_ACTIONS.GOTO_NODE, onNodeGoto);
|
||||||
yield takeLatest(NODE_ACTIONS.LOAD_NODE, onNodeLoad);
|
yield takeLatest(NODE_ACTIONS.LOAD_NODE, onNodeLoad);
|
||||||
yield takeLatest(NODE_ACTIONS.POST_COMMENT, onPostComment);
|
yield takeLatest(NODE_ACTIONS.POST_COMMENT, onPostComment);
|
||||||
yield takeLatest(NODE_ACTIONS.CANCEL_COMMENT_EDIT, onCancelCommentEdit);
|
|
||||||
yield takeLatest(NODE_ACTIONS.UPDATE_TAGS, onUpdateTags);
|
yield takeLatest(NODE_ACTIONS.UPDATE_TAGS, onUpdateTags);
|
||||||
yield takeLatest(NODE_ACTIONS.CREATE, onCreateSaga);
|
yield takeLatest(NODE_ACTIONS.CREATE, onCreateSaga);
|
||||||
yield takeLatest(NODE_ACTIONS.EDIT, onEditSaga);
|
yield takeLatest(NODE_ACTIONS.EDIT, onEditSaga);
|
||||||
|
@ -359,6 +364,5 @@ export default function* nodeSaga() {
|
||||||
yield takeLatest(NODE_ACTIONS.STAR, onStarSaga);
|
yield takeLatest(NODE_ACTIONS.STAR, onStarSaga);
|
||||||
yield takeLatest(NODE_ACTIONS.LOCK, onLockSaga);
|
yield takeLatest(NODE_ACTIONS.LOCK, onLockSaga);
|
||||||
yield takeLatest(NODE_ACTIONS.LOCK_COMMENT, onLockCommentSaga);
|
yield takeLatest(NODE_ACTIONS.LOCK_COMMENT, onLockCommentSaga);
|
||||||
yield takeLatest(NODE_ACTIONS.EDIT_COMMENT, onEditCommentSaga);
|
|
||||||
yield takeLeading(NODE_ACTIONS.LOAD_MORE_COMMENTS, onNodeLoadMoreComments);
|
yield takeLeading(NODE_ACTIONS.LOAD_MORE_COMMENTS, onNodeLoadMoreComments);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import { INode } from '~/redux/types';
|
import { IComment, INode } from '~/redux/types';
|
||||||
|
import { INodeState } from '~/redux/node/reducer';
|
||||||
|
|
||||||
export interface IEditorComponentProps {
|
export interface IEditorComponentProps {
|
||||||
data: INode;
|
data: INode;
|
||||||
|
@ -6,3 +7,85 @@ export interface IEditorComponentProps {
|
||||||
temp: string[];
|
temp: string[];
|
||||||
setTemp: (val: string[]) => void;
|
setTemp: (val: string[]) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type GetNodeDiffRequest = {
|
||||||
|
start?: string;
|
||||||
|
end?: string;
|
||||||
|
take?: number;
|
||||||
|
with_heroes: boolean;
|
||||||
|
with_updated: boolean;
|
||||||
|
with_recent: boolean;
|
||||||
|
with_valid: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type GetNodeDiffResult = {
|
||||||
|
before?: INode[];
|
||||||
|
after?: INode[];
|
||||||
|
heroes?: INode[];
|
||||||
|
recent?: INode[];
|
||||||
|
updated?: INode[];
|
||||||
|
valid: INode['id'][];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type PostCellViewRequest = {
|
||||||
|
id: INode['id'];
|
||||||
|
flow: INode['flow'];
|
||||||
|
};
|
||||||
|
export type PostCellViewResult = unknown; // TODO: update it with actual type
|
||||||
|
|
||||||
|
export type ApiGetNodeRequest = {
|
||||||
|
id: string | number;
|
||||||
|
};
|
||||||
|
export type ApiGetNodeResult = { node: INode };
|
||||||
|
|
||||||
|
export type ApiGetNodeRelatedRequest = {
|
||||||
|
id: INode['id'];
|
||||||
|
};
|
||||||
|
export type ApiGetNodeRelatedResult = {
|
||||||
|
related: INodeState['related'];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ApiPostCommentRequest = {
|
||||||
|
id: INode['id'];
|
||||||
|
data: IComment;
|
||||||
|
};
|
||||||
|
export type ApiPostCommentResult = {
|
||||||
|
comment: IComment;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ApiPostNodeTagsRequest = {
|
||||||
|
id: INode['id'];
|
||||||
|
tags: string[];
|
||||||
|
};
|
||||||
|
export type ApiPostNodeTagsResult = {
|
||||||
|
node: INode;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ApiPostNodeLikeRequest = { id: INode['id'] };
|
||||||
|
export type ApiPostNodeLikeResult = { is_liked: boolean };
|
||||||
|
|
||||||
|
export type ApiPostNodeHeroicRequest = { id: INode['id'] };
|
||||||
|
export type ApiPostNodeHeroicResponse = { is_heroic: boolean };
|
||||||
|
|
||||||
|
export type ApiLockNodeRequest = {
|
||||||
|
id: INode['id'];
|
||||||
|
is_locked: boolean;
|
||||||
|
};
|
||||||
|
export type ApiLockNodeResult = {
|
||||||
|
deleted_at: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ApiLockCommentRequest = {
|
||||||
|
id: IComment['id'];
|
||||||
|
current: INode['id'];
|
||||||
|
is_locked: boolean;
|
||||||
|
};
|
||||||
|
export type ApiLockcommentResult = {
|
||||||
|
deleted_at: string;
|
||||||
|
};
|
||||||
|
export type NodeEditorProps = {
|
||||||
|
data: INode;
|
||||||
|
setData: (val: INode) => void;
|
||||||
|
temp: string[];
|
||||||
|
setTemp: (val: string[]) => void;
|
||||||
|
};
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
import { IResultWithStatus, IEmbed } from '../types';
|
import { api, cleanResult } from '~/utils/api';
|
||||||
import { api, resultMiddleware, errorMiddleware } from '~/utils/api';
|
|
||||||
import { API } from '~/constants/api';
|
import { API } from '~/constants/api';
|
||||||
|
import { ApiGetEmbedYoutubeResult } from '~/redux/player/types';
|
||||||
|
|
||||||
export const getEmbedYoutube = (
|
export const apiGetEmbedYoutube = (ids: string[]) =>
|
||||||
ids: string[]
|
|
||||||
): Promise<IResultWithStatus<{ items: Record<string, IEmbed> }>> =>
|
|
||||||
api
|
api
|
||||||
.get(API.EMBED.YOUTUBE, { params: { ids: ids.join(',') } })
|
.get<ApiGetEmbedYoutubeResult>(API.EMBED.YOUTUBE, { params: { ids: ids.join(',') } })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
|
@ -5,13 +5,13 @@ import { IFile, IEmbed } from '../types';
|
||||||
|
|
||||||
export type IPlayerState = Readonly<{
|
export type IPlayerState = Readonly<{
|
||||||
status: typeof PLAYER_STATES[keyof typeof PLAYER_STATES];
|
status: typeof PLAYER_STATES[keyof typeof PLAYER_STATES];
|
||||||
file: IFile;
|
file?: IFile;
|
||||||
youtubes: Record<string, IEmbed>;
|
youtubes: Record<string, IEmbed>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
const INITIAL_STATE: IPlayerState = {
|
const INITIAL_STATE: IPlayerState = {
|
||||||
status: PLAYER_STATES.UNSET,
|
status: PLAYER_STATES.UNSET,
|
||||||
file: null,
|
file: undefined,
|
||||||
youtubes: {},
|
youtubes: {},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,16 @@ import {
|
||||||
import { Player } from '~/utils/player';
|
import { Player } from '~/utils/player';
|
||||||
import { getURL } from '~/utils/dom';
|
import { getURL } from '~/utils/dom';
|
||||||
import { Unwrap } from '../types';
|
import { Unwrap } from '../types';
|
||||||
import { getEmbedYoutube } from './api';
|
import { apiGetEmbedYoutube } from './api';
|
||||||
import { selectPlayer } from './selectors';
|
import { selectPlayer } from './selectors';
|
||||||
|
|
||||||
function* setFileAndPlaySaga({ file }: ReturnType<typeof playerSetFile>) {
|
function* setFileAndPlaySaga({ file }: ReturnType<typeof playerSetFile>) {
|
||||||
|
if (!file) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
yield put(playerSetFile(file));
|
yield put(playerSetFile(file));
|
||||||
|
|
||||||
Player.set(getURL(file));
|
Player.set(getURL(file));
|
||||||
Player.play();
|
Player.play();
|
||||||
}
|
}
|
||||||
|
@ -37,7 +42,7 @@ function seekSaga({ seek }: ReturnType<typeof playerSeek>) {
|
||||||
|
|
||||||
function* stoppedSaga() {
|
function* stoppedSaga() {
|
||||||
yield put(playerSetStatus(PLAYER_STATES.UNSET));
|
yield put(playerSetStatus(PLAYER_STATES.UNSET));
|
||||||
yield put(playerSetFile(null));
|
yield put(playerSetFile(undefined));
|
||||||
}
|
}
|
||||||
|
|
||||||
function* getYoutubeInfo() {
|
function* getYoutubeInfo() {
|
||||||
|
@ -49,34 +54,38 @@ function* getYoutubeInfo() {
|
||||||
ticker,
|
ticker,
|
||||||
}: { action: ReturnType<typeof playerGetYoutubeInfo>; ticker: any } = yield race({
|
}: { action: ReturnType<typeof playerGetYoutubeInfo>; ticker: any } = yield race({
|
||||||
action: take(PLAYER_ACTIONS.GET_YOUTUBE_INFO),
|
action: take(PLAYER_ACTIONS.GET_YOUTUBE_INFO),
|
||||||
...(ids.length > 0 ? { ticker: delay(1000) } : {}),
|
...(ids.length > 0 ? { ticker: delay(500) } : {}),
|
||||||
});
|
});
|
||||||
|
|
||||||
if (action) {
|
if (action) {
|
||||||
ids.push(action.url);
|
ids.push(action.url);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ticker || ids.length > 25) {
|
if (!ticker && ids.length <= 25) {
|
||||||
const result: Unwrap<ReturnType<typeof getEmbedYoutube>> = yield call(getEmbedYoutube, ids);
|
// Try to collect more items in next 500ms
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (!result.error && result.data.items && Object.keys(result.data.items).length) {
|
try {
|
||||||
|
const data: Unwrap<typeof apiGetEmbedYoutube> = yield call(apiGetEmbedYoutube, ids);
|
||||||
|
|
||||||
|
if (data.items && Object.keys(data.items).length) {
|
||||||
const { youtubes }: ReturnType<typeof selectPlayer> = yield select(selectPlayer);
|
const { youtubes }: ReturnType<typeof selectPlayer> = yield select(selectPlayer);
|
||||||
yield put(playerSet({ youtubes: { ...youtubes, ...result.data.items } }));
|
yield put(playerSet({ youtubes: { ...youtubes, ...data.items } }));
|
||||||
}
|
}
|
||||||
|
|
||||||
ids = [];
|
ids = [];
|
||||||
}
|
} catch {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function* playerSaga() {
|
export default function* playerSaga() {
|
||||||
|
yield fork(getYoutubeInfo);
|
||||||
|
|
||||||
yield takeLatest(PLAYER_ACTIONS.SET_FILE_AND_PLAY, setFileAndPlaySaga);
|
yield takeLatest(PLAYER_ACTIONS.SET_FILE_AND_PLAY, setFileAndPlaySaga);
|
||||||
yield takeLatest(PLAYER_ACTIONS.PAUSE, pauseSaga);
|
yield takeLatest(PLAYER_ACTIONS.PAUSE, pauseSaga);
|
||||||
yield takeLatest(PLAYER_ACTIONS.PLAY, playSaga);
|
yield takeLatest(PLAYER_ACTIONS.PLAY, playSaga);
|
||||||
yield takeLatest(PLAYER_ACTIONS.SEEK, seekSaga);
|
yield takeLatest(PLAYER_ACTIONS.SEEK, seekSaga);
|
||||||
yield takeLatest(PLAYER_ACTIONS.STOP, stopSaga);
|
yield takeLatest(PLAYER_ACTIONS.STOP, stopSaga);
|
||||||
yield takeLatest(PLAYER_ACTIONS.STOPPED, stoppedSaga);
|
yield takeLatest(PLAYER_ACTIONS.STOPPED, stoppedSaga);
|
||||||
|
|
||||||
yield fork(getYoutubeInfo);
|
|
||||||
// yield takeEvery(PLAYER_ACTIONS.GET_YOUTUBE_INFO, getYoutubeInfo);
|
|
||||||
}
|
}
|
||||||
|
|
3
src/redux/player/types.ts
Normal file
3
src/redux/player/types.ts
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
import { IEmbed } from '~/redux/types';
|
||||||
|
|
||||||
|
export type ApiGetEmbedYoutubeResult = { items: Record<string, IEmbed> };
|
|
@ -26,7 +26,7 @@ import playerSaga from '~/redux/player/sagas';
|
||||||
import modal, { IModalState } from '~/redux/modal';
|
import modal, { IModalState } from '~/redux/modal';
|
||||||
import { modalSaga } from './modal/sagas';
|
import { modalSaga } from './modal/sagas';
|
||||||
|
|
||||||
import { authOpenProfile, gotAuthPostMessage } from './auth/actions';
|
import { authLogout, authOpenProfile, gotAuthPostMessage } from './auth/actions';
|
||||||
|
|
||||||
import boris, { IBorisState } from './boris/reducer';
|
import boris, { IBorisState } from './boris/reducer';
|
||||||
import borisSaga from './boris/sagas';
|
import borisSaga from './boris/sagas';
|
||||||
|
@ -36,6 +36,9 @@ import messagesSaga from './messages/sagas';
|
||||||
|
|
||||||
import tag, { ITagState } from './tag';
|
import tag, { ITagState } from './tag';
|
||||||
import tagSaga from './tag/sagas';
|
import tagSaga from './tag/sagas';
|
||||||
|
import { AxiosError } from 'axios';
|
||||||
|
import { api } from '~/utils/api';
|
||||||
|
import { assocPath } from 'ramda';
|
||||||
|
|
||||||
const authPersistConfig: PersistConfig = {
|
const authPersistConfig: PersistConfig = {
|
||||||
key: 'auth',
|
key: 'auth',
|
||||||
|
@ -116,5 +119,27 @@ export function configureStore(): {
|
||||||
|
|
||||||
const persistor = persistStore(store);
|
const persistor = persistStore(store);
|
||||||
|
|
||||||
|
// Pass token to axios
|
||||||
|
api.interceptors.request.use(options => {
|
||||||
|
const token = store.getState().auth.token;
|
||||||
|
|
||||||
|
if (!token) {
|
||||||
|
return options;
|
||||||
|
}
|
||||||
|
|
||||||
|
return assocPath(['headers', 'authorization'], `Bearer ${token}`, options);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Logout on 401
|
||||||
|
api.interceptors.response.use(undefined, (error: AxiosError<{ error: string }>) => {
|
||||||
|
if (error.response?.status === 401) {
|
||||||
|
store.dispatch(authLogout());
|
||||||
|
}
|
||||||
|
|
||||||
|
error.message = error?.response?.data?.error || error?.response?.statusText || error.message;
|
||||||
|
|
||||||
|
throw error;
|
||||||
|
});
|
||||||
|
|
||||||
return { store, persistor };
|
return { store, persistor };
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,33 +1,18 @@
|
||||||
import { INode, IResultWithStatus } from '~/redux/types';
|
import { api, cleanResult } from '~/utils/api';
|
||||||
import { api, configWithToken, errorMiddleware, resultMiddleware } from '~/utils/api';
|
|
||||||
import { API } from '~/constants/api';
|
import { API } from '~/constants/api';
|
||||||
|
import {
|
||||||
|
ApiGetNodesOfTagRequest,
|
||||||
|
ApiGetNodesOfTagResult,
|
||||||
|
ApiGetTagSuggestionsRequest,
|
||||||
|
ApiGetTagSuggestionsResult,
|
||||||
|
} from '~/redux/tag/types';
|
||||||
|
|
||||||
export const getTagNodes = ({
|
export const apiGetNodesOfTag = ({ tag, offset, limit }: ApiGetNodesOfTagRequest) =>
|
||||||
access,
|
|
||||||
tag,
|
|
||||||
offset,
|
|
||||||
limit,
|
|
||||||
}: {
|
|
||||||
access: string;
|
|
||||||
tag: string;
|
|
||||||
offset: number;
|
|
||||||
limit: number;
|
|
||||||
}): Promise<IResultWithStatus<{ nodes: INode[]; count: number }>> =>
|
|
||||||
api
|
api
|
||||||
.get(API.TAG.NODES, configWithToken(access, { params: { name: tag, offset, limit } }))
|
.get<ApiGetNodesOfTagResult>(API.TAG.NODES, { params: { name: tag, offset, limit } })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
||||||
export const getTagAutocomplete = ({
|
export const apiGetTagSuggestions = ({ search, exclude }: ApiGetTagSuggestionsRequest) =>
|
||||||
search,
|
|
||||||
exclude,
|
|
||||||
access,
|
|
||||||
}: {
|
|
||||||
access: string;
|
|
||||||
search: string;
|
|
||||||
exclude: string[];
|
|
||||||
}): Promise<IResultWithStatus<{ tags: string[] }>> =>
|
|
||||||
api
|
api
|
||||||
.get(API.TAG.AUTOCOMPLETE, configWithToken(access, { params: { search, exclude } }))
|
.get<ApiGetTagSuggestionsResult>(API.TAG.AUTOCOMPLETE, { params: { search, exclude } })
|
||||||
.then(resultMiddleware)
|
.then(cleanResult);
|
||||||
.catch(errorMiddleware);
|
|
||||||
|
|
|
@ -1,48 +1,48 @@
|
||||||
import { TAG_ACTIONS } from '~/redux/tag/constants';
|
import { TAG_ACTIONS } from '~/redux/tag/constants';
|
||||||
import { call, delay, put, select, takeLatest } from 'redux-saga/effects';
|
import { call, delay, put, select, takeLatest } from 'redux-saga/effects';
|
||||||
import { tagLoadAutocomplete, tagLoadNodes, tagSetAutocomplete, tagSetNodes, } from '~/redux/tag/actions';
|
import {
|
||||||
import { reqWrapper } from '~/redux/auth/sagas';
|
tagLoadAutocomplete,
|
||||||
|
tagLoadNodes,
|
||||||
|
tagSetAutocomplete,
|
||||||
|
tagSetNodes,
|
||||||
|
} from '~/redux/tag/actions';
|
||||||
import { selectTagNodes } from '~/redux/tag/selectors';
|
import { selectTagNodes } from '~/redux/tag/selectors';
|
||||||
import { getTagAutocomplete, getTagNodes } from '~/redux/tag/api';
|
import { apiGetTagSuggestions, apiGetNodesOfTag } from '~/redux/tag/api';
|
||||||
import { Unwrap } from '~/redux/types';
|
import { Unwrap } from '~/redux/types';
|
||||||
|
|
||||||
function* loadTagNodes({ tag }: ReturnType<typeof tagLoadNodes>) {
|
function* loadTagNodes({ tag }: ReturnType<typeof tagLoadNodes>) {
|
||||||
yield put(tagSetNodes({ isLoading: true }));
|
yield put(tagSetNodes({ isLoading: true, list: [] }));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const { list }: ReturnType<typeof selectTagNodes> = yield select(selectTagNodes);
|
const { list }: ReturnType<typeof selectTagNodes> = yield select(selectTagNodes);
|
||||||
const { data, error }: Unwrap<ReturnType<typeof getTagNodes>> = yield call(
|
const data: Unwrap<typeof apiGetNodesOfTag> = yield call(apiGetNodesOfTag, {
|
||||||
reqWrapper,
|
tag,
|
||||||
getTagNodes,
|
limit: 18,
|
||||||
{ tag, limit: 18, offset: list.length }
|
offset: list.length,
|
||||||
);
|
});
|
||||||
|
|
||||||
if (error) throw new Error(error);
|
yield put(tagSetNodes({ list: [...list, ...data.nodes], count: data.count }));
|
||||||
|
} catch {
|
||||||
yield put(tagSetNodes({ isLoading: false, list: [...list, ...data.nodes], count: data.count }));
|
} finally {
|
||||||
} catch (e) {
|
|
||||||
console.log(e);
|
|
||||||
yield put(tagSetNodes({ isLoading: false }));
|
yield put(tagSetNodes({ isLoading: false }));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function* loadAutocomplete({ search, exclude }: ReturnType<typeof tagLoadAutocomplete>) {
|
function* loadAutocomplete({ search, exclude }: ReturnType<typeof tagLoadAutocomplete>) {
|
||||||
if (search.length < 3) return;
|
if (search.length < 2) return;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
yield put(tagSetAutocomplete({ isLoading: true }));
|
yield put(tagSetAutocomplete({ isLoading: true }));
|
||||||
yield delay(100);
|
yield delay(200);
|
||||||
|
|
||||||
const { data, error }: Unwrap<ReturnType<typeof getTagAutocomplete>> = yield call(
|
const data: Unwrap<typeof apiGetTagSuggestions> = yield call(apiGetTagSuggestions, {
|
||||||
reqWrapper,
|
search,
|
||||||
getTagAutocomplete,
|
exclude,
|
||||||
{ search, exclude }
|
});
|
||||||
);
|
|
||||||
|
|
||||||
if (error) throw new Error(error);
|
yield put(tagSetAutocomplete({ options: data.tags }));
|
||||||
|
} catch {
|
||||||
yield put(tagSetAutocomplete({ options: data.tags, isLoading: false }));
|
} finally {
|
||||||
} catch (e) {
|
|
||||||
yield put(tagSetAutocomplete({ isLoading: false }));
|
yield put(tagSetAutocomplete({ isLoading: false }));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
16
src/redux/tag/types.ts
Normal file
16
src/redux/tag/types.ts
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
import { INode } from '~/redux/types';
|
||||||
|
|
||||||
|
export type ApiGetNodesOfTagRequest = {
|
||||||
|
tag: string;
|
||||||
|
offset: number;
|
||||||
|
limit: number;
|
||||||
|
};
|
||||||
|
export type ApiGetNodesOfTagResult = { nodes: INode[]; count: number };
|
||||||
|
|
||||||
|
export type ApiGetTagSuggestionsRequest = {
|
||||||
|
search: string;
|
||||||
|
exclude: string[];
|
||||||
|
};
|
||||||
|
export type ApiGetTagSuggestionsResult = {
|
||||||
|
tags: string[];
|
||||||
|
};
|
|
@ -71,7 +71,7 @@ export interface IFile {
|
||||||
url: string;
|
url: string;
|
||||||
size: number;
|
size: number;
|
||||||
|
|
||||||
type: IUploadType;
|
type?: IUploadType;
|
||||||
mime: string;
|
mime: string;
|
||||||
metadata?: {
|
metadata?: {
|
||||||
id3title?: string;
|
id3title?: string;
|
||||||
|
@ -92,7 +92,7 @@ export interface IFileWithUUID {
|
||||||
file: File;
|
file: File;
|
||||||
subject?: string;
|
subject?: string;
|
||||||
target: string;
|
target: string;
|
||||||
type: string;
|
type?: string;
|
||||||
onSuccess?: (file: IFile) => void;
|
onSuccess?: (file: IFile) => void;
|
||||||
onFail?: () => void;
|
onFail?: () => void;
|
||||||
}
|
}
|
||||||
|
@ -111,13 +111,13 @@ export type IBlock = IBlockText | IBlockEmbed;
|
||||||
|
|
||||||
export interface INode {
|
export interface INode {
|
||||||
id?: number;
|
id?: number;
|
||||||
user: Partial<IUser>;
|
user?: Partial<IUser>;
|
||||||
|
|
||||||
title: string;
|
title: string;
|
||||||
files: IFile[];
|
files: IFile[];
|
||||||
|
|
||||||
cover: IFile;
|
cover?: IFile;
|
||||||
type: string;
|
type?: string;
|
||||||
|
|
||||||
blocks: IBlock[];
|
blocks: IBlock[];
|
||||||
thumbnail?: string;
|
thumbnail?: string;
|
||||||
|
@ -143,7 +143,7 @@ export interface IComment {
|
||||||
id: number;
|
id: number;
|
||||||
text: string;
|
text: string;
|
||||||
files: IFile[];
|
files: IFile[];
|
||||||
user: IUser;
|
user?: IUser;
|
||||||
|
|
||||||
created_at?: string;
|
created_at?: string;
|
||||||
update_at?: string;
|
update_at?: string;
|
||||||
|
@ -192,7 +192,13 @@ export type INodeNotification = {
|
||||||
|
|
||||||
export type INotification = IMessageNotification | ICommentNotification;
|
export type INotification = IMessageNotification | ICommentNotification;
|
||||||
|
|
||||||
export type Unwrap<T> = T extends Promise<infer U> ? U : T;
|
export type Unwrap<T> = T extends (...args: any) => Promise<any>
|
||||||
|
? T extends (...args: any) => Promise<infer U>
|
||||||
|
? U
|
||||||
|
: T
|
||||||
|
: T extends () => Iterator<any, infer U, any>
|
||||||
|
? U
|
||||||
|
: any;
|
||||||
|
|
||||||
export interface IEmbed {
|
export interface IEmbed {
|
||||||
provider: string;
|
provider: string;
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue