mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
removed PhotoSwipeStore
This commit is contained in:
parent
224c27b6f4
commit
82308d2a91
15 changed files with 90 additions and 84 deletions
|
@ -132,7 +132,12 @@ const HeaderUnconnected: FC<IProps> = observer(
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{!is_user && (
|
{!is_user && (
|
||||||
<Button className={styles.user_button} onClick={onLogin} round color="secondary">
|
<Button
|
||||||
|
className={styles.user_button}
|
||||||
|
onClick={() => onLogin({})}
|
||||||
|
round
|
||||||
|
color="secondary"
|
||||||
|
>
|
||||||
ВДОХ
|
ВДОХ
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { FC } from 'react';
|
import { FC, VFC } from 'react';
|
||||||
import { LoginDialog } from '~/containers/dialogs/LoginDialog';
|
import { LoginDialog } from '~/containers/dialogs/LoginDialog';
|
||||||
import { LoginSocialRegisterDialog } from '~/containers/dialogs/LoginSocialRegisterDialog';
|
import { LoginSocialRegisterDialog } from '~/containers/dialogs/LoginSocialRegisterDialog';
|
||||||
import { LoadingDialog } from '~/containers/dialogs/LoadingDialog';
|
import { LoadingDialog } from '~/containers/dialogs/LoadingDialog';
|
||||||
|
@ -6,7 +6,7 @@ import { TestDialog } from '~/containers/dialogs/TestDialog';
|
||||||
import { ProfileDialog } from '~/containers/dialogs/ProfileDialog';
|
import { ProfileDialog } from '~/containers/dialogs/ProfileDialog';
|
||||||
import { RestoreRequestDialog } from '~/containers/dialogs/RestoreRequestDialog';
|
import { RestoreRequestDialog } from '~/containers/dialogs/RestoreRequestDialog';
|
||||||
import { RestorePasswordDialog } from '~/containers/dialogs/RestorePasswordDialog';
|
import { RestorePasswordDialog } from '~/containers/dialogs/RestorePasswordDialog';
|
||||||
import { PhotoSwipe } from '~/containers/dialogs/PhotoSwipe';
|
import { PhotoSwipe, PhotoSwipeProps } from '~/containers/dialogs/PhotoSwipe';
|
||||||
import { IDialogProps } from '~/types/modal';
|
import { IDialogProps } from '~/types/modal';
|
||||||
|
|
||||||
export enum Dialog {
|
export enum Dialog {
|
||||||
|
@ -20,7 +20,7 @@ export enum Dialog {
|
||||||
Photoswipe = 'Photoswipe',
|
Photoswipe = 'Photoswipe',
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DIALOG_CONTENT: Record<Dialog, FC<IDialogProps>> = {
|
export const DIALOG_CONTENT = {
|
||||||
[Dialog.Login]: LoginDialog,
|
[Dialog.Login]: LoginDialog,
|
||||||
[Dialog.LoginSocialRegister]: LoginSocialRegisterDialog,
|
[Dialog.LoginSocialRegister]: LoginSocialRegisterDialog,
|
||||||
[Dialog.Loading]: LoadingDialog,
|
[Dialog.Loading]: LoadingDialog,
|
||||||
|
@ -29,4 +29,4 @@ export const DIALOG_CONTENT: Record<Dialog, FC<IDialogProps>> = {
|
||||||
[Dialog.RestoreRequest]: RestoreRequestDialog,
|
[Dialog.RestoreRequest]: RestoreRequestDialog,
|
||||||
[Dialog.RestorePassword]: RestorePasswordDialog,
|
[Dialog.RestorePassword]: RestorePasswordDialog,
|
||||||
[Dialog.Photoswipe]: PhotoSwipe,
|
[Dialog.Photoswipe]: PhotoSwipe,
|
||||||
};
|
} as const;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import React, { FC } from 'react';
|
import React, { FC, VFC } from 'react';
|
||||||
import { LoaderCircle } from '~/components/input/LoaderCircle';
|
import { LoaderCircle } from '~/components/input/LoaderCircle';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
|
|
||||||
const LoadingDialog: FC<{}> = () => (
|
const LoadingDialog: VFC = () => (
|
||||||
<div className={styles.wrap}>
|
<div className={styles.wrap}>
|
||||||
<LoaderCircle size={64} />
|
<LoaderCircle size={64} />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -58,7 +58,7 @@ const LoginDialogUnconnected: FC<IProps> = ({
|
||||||
const onRestoreRequest = useCallback(
|
const onRestoreRequest = useCallback(
|
||||||
event => {
|
event => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
showRestoreDialog();
|
showRestoreDialog({});
|
||||||
},
|
},
|
||||||
[showRestoreDialog]
|
[showRestoreDialog]
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
import React, { FC } from "react";
|
import React, { FC } from 'react';
|
||||||
import { ModalWrapper } from "~/components/dialogs/ModalWrapper";
|
import { ModalWrapper } from '~/components/dialogs/ModalWrapper';
|
||||||
import { DIALOG_CONTENT } from "~/constants/modal";
|
import { DIALOG_CONTENT } from '~/constants/modal';
|
||||||
import { useModalStore } from "~/store/modal/useModalStore";
|
import { useModalStore } from '~/store/modal/useModalStore';
|
||||||
import { has } from "ramda";
|
import { has } from 'ramda';
|
||||||
import { observer } from "mobx-react-lite";
|
import { observer } from 'mobx-react-lite';
|
||||||
|
|
||||||
type IProps = {};
|
type IProps = {};
|
||||||
|
|
||||||
const Modal: FC<IProps> = observer(() => {
|
const Modal: FC<IProps> = observer(() => {
|
||||||
const { current, hide } = useModalStore();
|
const { current, hide, props } = useModalStore();
|
||||||
|
|
||||||
if (!current || !has(current, DIALOG_CONTENT)) {
|
if (!current || !has(current, DIALOG_CONTENT)) {
|
||||||
return null;
|
return null;
|
||||||
|
@ -16,8 +16,9 @@ const Modal: FC<IProps> = observer(() => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ModalWrapper onOverlayClick={hide}>
|
<ModalWrapper onOverlayClick={hide}>
|
||||||
{React.createElement(DIALOG_CONTENT[current!]!, {
|
{React.createElement(DIALOG_CONTENT[current!]! as any, {
|
||||||
onRequestClose: hide,
|
onRequestClose: hide,
|
||||||
|
...props,
|
||||||
})}
|
})}
|
||||||
</ModalWrapper>
|
</ModalWrapper>
|
||||||
);
|
);
|
||||||
|
|
|
@ -8,18 +8,23 @@ import styles from './styles.module.scss';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import { useBlockBackButton } from '~/hooks/navigation/useBlockBackButton';
|
import { useBlockBackButton } from '~/hooks/navigation/useBlockBackButton';
|
||||||
import { useModal } from '~/hooks/modal/useModal';
|
import { useModal } from '~/hooks/modal/useModal';
|
||||||
import { usePhotoSwipeStore } from '~/store/photoSwipe/usePhotoSwipeStore';
|
|
||||||
import { observer } from 'mobx-react';
|
import { observer } from 'mobx-react';
|
||||||
|
import { IFile } from '~/redux/types';
|
||||||
|
import { IDialogProps } from '~/types/modal';
|
||||||
|
|
||||||
const PhotoSwipe: VFC = observer(() => {
|
export interface PhotoSwipeProps extends IDialogProps {
|
||||||
|
items: IFile[];
|
||||||
|
index: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
const PhotoSwipe: VFC<PhotoSwipeProps> = observer(({ index, items }) => {
|
||||||
let ref = useRef<HTMLDivElement>(null);
|
let ref = useRef<HTMLDivElement>(null);
|
||||||
const { hideModal } = useModal();
|
const { hideModal } = useModal();
|
||||||
const photoswipe = usePhotoSwipeStore();
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
new Promise(async resolve => {
|
new Promise(async resolve => {
|
||||||
const images = await Promise.all(
|
const images = await Promise.all(
|
||||||
photoswipe.images.map(
|
items.map(
|
||||||
image =>
|
image =>
|
||||||
new Promise(resolveImage => {
|
new Promise(resolveImage => {
|
||||||
const img = new Image();
|
const img = new Image();
|
||||||
|
@ -44,7 +49,7 @@ const PhotoSwipe: VFC = observer(() => {
|
||||||
resolve(images);
|
resolve(images);
|
||||||
}).then(images => {
|
}).then(images => {
|
||||||
const ps = new PhotoSwipeJs(ref.current, PhotoSwipeUI_Default, images, {
|
const ps = new PhotoSwipeJs(ref.current, PhotoSwipeUI_Default, images, {
|
||||||
index: photoswipe.index || 0,
|
index: index || 0,
|
||||||
closeOnScroll: false,
|
closeOnScroll: false,
|
||||||
history: false,
|
history: false,
|
||||||
});
|
});
|
||||||
|
@ -53,7 +58,7 @@ const PhotoSwipe: VFC = observer(() => {
|
||||||
ps.listen('destroy', hideModal);
|
ps.listen('destroy', hideModal);
|
||||||
ps.listen('close', hideModal);
|
ps.listen('close', hideModal);
|
||||||
});
|
});
|
||||||
}, [hideModal, photoswipe.images, photoswipe.index]);
|
}, [hideModal, items, index]);
|
||||||
|
|
||||||
useBlockBackButton(hideModal);
|
useBlockBackButton(hideModal);
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import React, { FC, useCallback, useEffect, useMemo, useState } from 'react';
|
import React, { FC, useCallback, useEffect, useMemo, useState, VFC } from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect, useDispatch } from 'react-redux';
|
||||||
import { BetterScrollDialog } from '../BetterScrollDialog';
|
import { BetterScrollDialog } from '../BetterScrollDialog';
|
||||||
import { Group } from '~/components/containers/Group';
|
import { Group } from '~/components/containers/Group';
|
||||||
import { InputText } from '~/components/input/InputText';
|
import { InputText } from '~/components/input/InputText';
|
||||||
|
@ -7,29 +7,31 @@ import { Button } from '~/components/input/Button';
|
||||||
import styles from './styles.module.scss';
|
import styles from './styles.module.scss';
|
||||||
|
|
||||||
import * as AUTH_ACTIONS from '~/redux/auth/actions';
|
import * as AUTH_ACTIONS from '~/redux/auth/actions';
|
||||||
import { pick } from 'ramda';
|
|
||||||
import { selectAuthRestore } from '~/redux/auth/selectors';
|
import { selectAuthRestore } from '~/redux/auth/selectors';
|
||||||
import { ERROR_LITERAL } from '~/constants/errors';
|
import { ERROR_LITERAL } from '~/constants/errors';
|
||||||
import { Icon } from '~/components/input/Icon';
|
import { Icon } from '~/components/input/Icon';
|
||||||
import { useCloseOnEscape } from '~/hooks';
|
import { useCloseOnEscape } from '~/hooks';
|
||||||
import { IDialogProps } from '~/types/modal';
|
import { IDialogProps } from '~/types/modal';
|
||||||
|
import { useShallowSelect } from '~/hooks/data/useShallowSelect';
|
||||||
|
import { IAuthState } from '~/redux/auth/types';
|
||||||
|
|
||||||
const mapStateToProps = state => ({
|
interface RestoreRequestDialogProps extends IDialogProps {}
|
||||||
restore: selectAuthRestore(state),
|
|
||||||
});
|
|
||||||
|
|
||||||
const mapDispatchToProps = pick(['authRequestRestoreCode', 'authSetRestore'], AUTH_ACTIONS);
|
const RestoreRequestDialog: VFC<RestoreRequestDialogProps> = ({ onRequestClose }) => {
|
||||||
|
const dispatch = useDispatch();
|
||||||
type IProps = IDialogProps & ReturnType<typeof mapStateToProps> & typeof mapDispatchToProps & {};
|
const { error, is_loading, is_succesfull } = useShallowSelect(selectAuthRestore);
|
||||||
|
|
||||||
const RestoreRequestDialogUnconnected: FC<IProps> = ({
|
|
||||||
restore: { error, is_loading, is_succesfull },
|
|
||||||
authSetRestore,
|
|
||||||
onRequestClose,
|
|
||||||
authRequestRestoreCode,
|
|
||||||
}) => {
|
|
||||||
const [field, setField] = useState('');
|
const [field, setField] = useState('');
|
||||||
|
|
||||||
|
const authSetRestore = useCallback(
|
||||||
|
(restore: Partial<IAuthState['restore']>) => dispatch(AUTH_ACTIONS.authSetRestore(restore)),
|
||||||
|
[dispatch]
|
||||||
|
);
|
||||||
|
|
||||||
|
const authRequestRestoreCode = useCallback(
|
||||||
|
(field: string) => dispatch(AUTH_ACTIONS.authRequestRestoreCode(field)),
|
||||||
|
[dispatch]
|
||||||
|
);
|
||||||
|
|
||||||
const onSubmit = useCallback(
|
const onSubmit = useCallback(
|
||||||
event => {
|
event => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
@ -105,9 +107,4 @@ const RestoreRequestDialogUnconnected: FC<IProps> = ({
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const RestoreRequestDialog = connect(
|
|
||||||
mapStateToProps,
|
|
||||||
mapDispatchToProps
|
|
||||||
)(RestoreRequestDialogUnconnected);
|
|
||||||
|
|
||||||
export { RestoreRequestDialog };
|
export { RestoreRequestDialog };
|
||||||
|
|
|
@ -1,13 +1,24 @@
|
||||||
import { useModalStore } from '~/store/modal/useModalStore';
|
import { useModalStore } from '~/store/modal/useModalStore';
|
||||||
import { useCallback } from 'react';
|
import { FC, useCallback, VFC } from 'react';
|
||||||
import { Dialog } from '~/constants/modal';
|
import { Dialog, DIALOG_CONTENT } from '~/constants/modal';
|
||||||
|
import { IDialogProps } from '~/types/modal';
|
||||||
|
|
||||||
|
export type DialogContentProps = {
|
||||||
|
[K in keyof typeof DIALOG_CONTENT]: typeof DIALOG_CONTENT[K] extends (props: infer U) => any
|
||||||
|
? U extends IDialogProps
|
||||||
|
? keyof Omit<U, 'onRequestClose' | 'children'> extends never
|
||||||
|
? {}
|
||||||
|
: Omit<U, 'onRequestClose' | 'children'>
|
||||||
|
: {}
|
||||||
|
: {};
|
||||||
|
};
|
||||||
|
|
||||||
export const useModal = () => {
|
export const useModal = () => {
|
||||||
const { setCurrent, hide } = useModalStore();
|
const { setCurrent, hide } = useModalStore();
|
||||||
|
|
||||||
const showModal = useCallback(
|
const showModal = useCallback(
|
||||||
(dialog: Dialog) => {
|
<T extends Dialog>(dialog: T, props: DialogContentProps[T]) => {
|
||||||
setCurrent(dialog);
|
setCurrent(dialog, props);
|
||||||
},
|
},
|
||||||
[setCurrent]
|
[setCurrent]
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
import { useCallback } from 'react';
|
import { useCallback } from 'react';
|
||||||
import { useModal } from '~/hooks/modal/useModal';
|
import { DialogContentProps, useModal } from '~/hooks/modal/useModal';
|
||||||
import { Dialog } from '~/constants/modal';
|
import { Dialog } from '~/constants/modal';
|
||||||
|
|
||||||
export const useShowModal = (dialog: Dialog) => {
|
export const useShowModal = <T extends Dialog>(dialog: T) => {
|
||||||
const modal = useModal();
|
const modal = useModal();
|
||||||
|
|
||||||
return useCallback(() => {
|
return useCallback(
|
||||||
modal.showModal(dialog);
|
(props: DialogContentProps[T]) => {
|
||||||
}, [dialog, modal]);
|
modal.showModal(dialog, props);
|
||||||
|
},
|
||||||
|
[dialog, modal]
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,18 +1,15 @@
|
||||||
import { useCallback } from 'react';
|
import { useCallback } from 'react';
|
||||||
import { IFile } from '~/redux/types';
|
import { IFile } from '~/redux/types';
|
||||||
import { usePhotoSwipeStore } from '~/store/photoSwipe/usePhotoSwipeStore';
|
|
||||||
import { useShowModal } from '~/hooks/modal/useShowModal';
|
import { useShowModal } from '~/hooks/modal/useShowModal';
|
||||||
import { Dialog } from '~/constants/modal';
|
import { Dialog } from '~/constants/modal';
|
||||||
|
|
||||||
export const useImageModal = () => {
|
export const useImageModal = () => {
|
||||||
const { setData } = usePhotoSwipeStore();
|
|
||||||
const showModal = useShowModal(Dialog.Photoswipe);
|
const showModal = useShowModal(Dialog.Photoswipe);
|
||||||
|
|
||||||
return useCallback(
|
return useCallback(
|
||||||
(images: IFile[], index: number) => {
|
(images: IFile[], index: number) => {
|
||||||
setData(images, index);
|
showModal({ items: images, index });
|
||||||
showModal();
|
|
||||||
},
|
},
|
||||||
[setData, showModal]
|
[showModal]
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -152,7 +152,7 @@ function* loadProfile({ username }: ReturnType<typeof authLoadProfile>): SagaIte
|
||||||
}
|
}
|
||||||
|
|
||||||
function* openProfile({ username, tab = 'profile' }: ReturnType<typeof authOpenProfile>) {
|
function* openProfile({ username, tab = 'profile' }: ReturnType<typeof authOpenProfile>) {
|
||||||
modalStore.setCurrent(Dialog.Profile);
|
modalStore.setCurrent(Dialog.Profile, {});
|
||||||
yield put(authSetProfile({ tab }));
|
yield put(authSetProfile({ tab }));
|
||||||
|
|
||||||
const success: Unwrap<typeof loadProfile> = yield call(loadProfile, authLoadProfile(username));
|
const success: Unwrap<typeof loadProfile> = yield call(loadProfile, authLoadProfile(username));
|
||||||
|
@ -265,7 +265,7 @@ function* showRestoreModal({ code }: ReturnType<typeof authShowRestoreModal>) {
|
||||||
|
|
||||||
yield put(authSetRestore({ user: data.user, code, is_loading: false }));
|
yield put(authSetRestore({ user: data.user, code, is_loading: false }));
|
||||||
|
|
||||||
modalStore.setCurrent(Dialog.RestoreRequest);
|
modalStore.setCurrent(Dialog.RestoreRequest, {});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
showErrorToast(error);
|
showErrorToast(error);
|
||||||
|
|
||||||
|
@ -273,7 +273,7 @@ function* showRestoreModal({ code }: ReturnType<typeof authShowRestoreModal>) {
|
||||||
authSetRestore({ is_loading: false, error: getErrorMessage(error) || ERRORS.CODE_IS_INVALID })
|
authSetRestore({ is_loading: false, error: getErrorMessage(error) || ERRORS.CODE_IS_INVALID })
|
||||||
);
|
);
|
||||||
|
|
||||||
modalStore.setCurrent(Dialog.RestoreRequest);
|
modalStore.setCurrent(Dialog.RestoreRequest, {});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -378,7 +378,7 @@ function* loginWithSocial({ token }: ReturnType<typeof authLoginWithSocial>) {
|
||||||
// Backend asks us for account registration
|
// Backend asks us for account registration
|
||||||
if (current !== Dialog.LoginSocialRegister && data?.needs_register) {
|
if (current !== Dialog.LoginSocialRegister && data?.needs_register) {
|
||||||
yield put(authSetRegisterSocial({ token }));
|
yield put(authSetRegisterSocial({ token }));
|
||||||
modalStore.setCurrent(Dialog.LoginSocialRegister);
|
modalStore.setCurrent(Dialog.LoginSocialRegister, {});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
import { makeAutoObservable } from 'mobx';
|
import { makeAutoObservable } from 'mobx';
|
||||||
import { FlowStore } from '~/store/flow/FlowStore';
|
import { FlowStore } from '~/store/flow/FlowStore';
|
||||||
import { ModalStore } from '~/store/modal/ModalStore';
|
import { ModalStore } from '~/store/modal/ModalStore';
|
||||||
import { PhotoSwipeStore } from '~/store/photoSwipe/PhotoSwipeStore';
|
|
||||||
import { LabStore } from '~/store/lab/LabStore';
|
import { LabStore } from '~/store/lab/LabStore';
|
||||||
|
|
||||||
export class Store {
|
export class Store {
|
||||||
flow = new FlowStore();
|
flow = new FlowStore();
|
||||||
modal = new ModalStore();
|
modal = new ModalStore();
|
||||||
photoSwipe = new PhotoSwipeStore();
|
|
||||||
lab = new LabStore();
|
lab = new LabStore();
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
|
|
|
@ -1,14 +1,22 @@
|
||||||
import { makeAutoObservable } from 'mobx';
|
import { makeAutoObservable } from 'mobx';
|
||||||
import { Dialog } from '~/constants/modal';
|
import { Dialog } from '~/constants/modal';
|
||||||
|
import { DialogContentProps } from '~/hooks/modal/useModal';
|
||||||
|
|
||||||
export class ModalStore {
|
export class ModalStore {
|
||||||
current: Dialog | null = null;
|
current: Dialog | null = null;
|
||||||
|
props: object | undefined;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
makeAutoObservable(this);
|
makeAutoObservable(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
setCurrent = (current: Dialog | null) => (this.current = current);
|
setCurrent = <T extends Dialog>(current: T, props: DialogContentProps[T]) => {
|
||||||
|
this.props = props;
|
||||||
|
this.current = current ?? {};
|
||||||
|
};
|
||||||
|
|
||||||
hide = () => (this.current = null);
|
hide = () => {
|
||||||
|
this.current = null;
|
||||||
|
this.props = {};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
import { makeAutoObservable } from 'mobx';
|
|
||||||
import { IFile } from '~/redux/types';
|
|
||||||
|
|
||||||
export class PhotoSwipeStore {
|
|
||||||
images: IFile[] = [];
|
|
||||||
index: number = 0;
|
|
||||||
|
|
||||||
constructor() {
|
|
||||||
makeAutoObservable(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
setData = (images: IFile[], index: number) => {
|
|
||||||
this.images = images;
|
|
||||||
this.index = index;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
import { useStore } from '~/utils/context/StoreContextProvider';
|
|
||||||
|
|
||||||
export const usePhotoSwipeStore = () => useStore().photoSwipe;
|
|
Loading…
Add table
Add a link
Reference in a new issue