1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

displaying profile photo

This commit is contained in:
Fedor Katurov 2019-10-12 14:51:05 +07:00
parent a27ff0f52a
commit 6c1e88804b
7 changed files with 24 additions and 15 deletions

View file

@ -1,6 +1,4 @@
import React, {
FC, useCallback, ChangeEventHandler, DragEventHandler,
} from 'react';
import React, { FC, useCallback, ChangeEventHandler, DragEventHandler } from 'react';
import { SortableContainer, SortableElement } from 'react-sortable-hoc';
import * as styles from './styles.scss';
import { ImageUpload } from '~/components/upload/ImageUpload';
@ -31,7 +29,7 @@ const SortableList = SortableContainer(
<div className={styles.grid}>
{items.map((file, index) => (
<SortableItem key={file.id} index={index} collection={0}>
<ImageUpload id={file.id} thumb={getURL(file.url)} />
<ImageUpload id={file.id} thumb={getURL(file)} />
</SortableItem>
))}
@ -44,9 +42,7 @@ const SortableList = SortableContainer(
)
);
const ImageGrid: FC<IProps> = ({
items, locked, onFileMove, onUpload,
}) => {
const ImageGrid: FC<IProps> = ({ items, locked, onFileMove, onUpload }) => {
const onMove = useCallback(({ oldIndex, newIndex }) => onFileMove(oldIndex, newIndex), [
onFileMove,
]);