mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
moved out image grid components
This commit is contained in:
parent
a957281d01
commit
5872e7a457
6 changed files with 69 additions and 64 deletions
|
@ -1,15 +1,12 @@
|
||||||
import React, { FC, useCallback } from 'react';
|
import React, { FC, useCallback } from 'react';
|
||||||
import { SortableContainer, SortableElement, SortEvent, SortEnd } from 'react-sortable-hoc';
|
import { SortEnd } from 'react-sortable-hoc';
|
||||||
import * as styles from './styles.scss';
|
import * as styles from './styles.scss';
|
||||||
import { ImageUpload } from '~/components/upload/ImageUpload';
|
|
||||||
import { IFile, INode } from '~/redux/types';
|
import { IFile, INode } from '~/redux/types';
|
||||||
import { IUploadStatus } from '~/redux/uploads/reducer';
|
import { IUploadStatus } from '~/redux/uploads/reducer';
|
||||||
import { getURL } from '~/utils/dom';
|
|
||||||
import assocPath from 'ramda/es/assocPath';
|
import assocPath from 'ramda/es/assocPath';
|
||||||
import { moveArrItem } from '~/utils/fn';
|
import { moveArrItem } from '~/utils/fn';
|
||||||
import omit from 'ramda/es/omit';
|
|
||||||
import remove from 'ramda/es/remove';
|
|
||||||
import reject from 'ramda/es/reject';
|
import reject from 'ramda/es/reject';
|
||||||
|
import { SortableImageGrid } from '~/components/editors/SortableImageGrid';
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
data: INode;
|
data: INode;
|
||||||
|
@ -17,38 +14,6 @@ interface IProps {
|
||||||
locked: IUploadStatus[];
|
locked: IUploadStatus[];
|
||||||
}
|
}
|
||||||
|
|
||||||
const SortableImageGridItem = SortableElement(({ children }) => (
|
|
||||||
<div className={styles.item}>{children}</div>
|
|
||||||
));
|
|
||||||
|
|
||||||
const SortableImageGrid = SortableContainer(
|
|
||||||
({
|
|
||||||
items,
|
|
||||||
locked,
|
|
||||||
onDrop,
|
|
||||||
}: {
|
|
||||||
items: IFile[];
|
|
||||||
locked: IUploadStatus[];
|
|
||||||
onDrop: (file_id: IFile['id']) => void;
|
|
||||||
}) => (
|
|
||||||
<div className={styles.grid}>
|
|
||||||
{items
|
|
||||||
.filter(file => file && file.id)
|
|
||||||
.map((file, index) => (
|
|
||||||
<SortableImageGridItem key={file.id} index={index} collection={0}>
|
|
||||||
<ImageUpload id={file.id} thumb={getURL(file)} onDrop={onDrop} />
|
|
||||||
</SortableImageGridItem>
|
|
||||||
))}
|
|
||||||
|
|
||||||
{locked.map((item, index) => (
|
|
||||||
<SortableImageGridItem key={item.temp_id} index={index} collection={1} disabled>
|
|
||||||
<ImageUpload thumb={item.preview} progress={item.progress} is_uploading />
|
|
||||||
</SortableImageGridItem>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
const ImageGrid: FC<IProps> = ({ data, setData, locked }) => {
|
const ImageGrid: FC<IProps> = ({ data, setData, locked }) => {
|
||||||
const onMove = useCallback(
|
const onMove = useCallback(
|
||||||
({ oldIndex, newIndex }: SortEnd) => {
|
({ oldIndex, newIndex }: SortEnd) => {
|
||||||
|
|
|
@ -1,30 +1,4 @@
|
||||||
.grid {
|
|
||||||
min-height: 200px;
|
|
||||||
padding-bottom: 62px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
|
|
||||||
display: grid;
|
|
||||||
grid-column-gap: $gap;
|
|
||||||
grid-row-gap: $gap;
|
|
||||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
||||||
|
|
||||||
// display: flex;
|
|
||||||
// flex-wrap: wrap;
|
|
||||||
@media (max-width: 600px) {
|
|
||||||
grid-template-columns: repeat(auto-fill, minmax(30vw, 1fr));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.item {
|
|
||||||
// flex: 0 4 25%;
|
|
||||||
// width: 25%;
|
|
||||||
// float: left;
|
|
||||||
// padding: $gap / 2;
|
|
||||||
z-index: 1;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.helper {
|
.helper {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
z-index: 10;
|
z-index: 10 !important;
|
||||||
}
|
}
|
||||||
|
|
38
src/components/editors/SortableImageGrid/index.tsx
Normal file
38
src/components/editors/SortableImageGrid/index.tsx
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
import React from 'react';
|
||||||
|
import { SortableContainer } from 'react-sortable-hoc';
|
||||||
|
import { ImageUpload } from '~/components/upload/ImageUpload';
|
||||||
|
import * as styles from './styles.scss';
|
||||||
|
import { SortableImageGridItem } from '~/components/editors/SortableImageGridItem';
|
||||||
|
import { IFile } from '~/redux/types';
|
||||||
|
import { IUploadStatus } from '~/redux/uploads/reducer';
|
||||||
|
import { getURL } from '~/utils/dom';
|
||||||
|
|
||||||
|
const SortableImageGrid = SortableContainer(
|
||||||
|
({
|
||||||
|
items,
|
||||||
|
locked,
|
||||||
|
onDrop,
|
||||||
|
}: {
|
||||||
|
items: IFile[];
|
||||||
|
locked: IUploadStatus[];
|
||||||
|
onDrop: (file_id: IFile['id']) => void;
|
||||||
|
}) => (
|
||||||
|
<div className={styles.grid}>
|
||||||
|
{items
|
||||||
|
.filter(file => file && file.id)
|
||||||
|
.map((file, index) => (
|
||||||
|
<SortableImageGridItem key={file.id} index={index} collection={0}>
|
||||||
|
<ImageUpload id={file.id} thumb={getURL(file)} onDrop={onDrop} />
|
||||||
|
</SortableImageGridItem>
|
||||||
|
))}
|
||||||
|
|
||||||
|
{locked.map((item, index) => (
|
||||||
|
<SortableImageGridItem key={item.temp_id} index={index} collection={1} disabled>
|
||||||
|
<ImageUpload thumb={item.preview} progress={item.progress} is_uploading />
|
||||||
|
</SortableImageGridItem>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
export { SortableImageGrid };
|
14
src/components/editors/SortableImageGrid/styles.scss
Normal file
14
src/components/editors/SortableImageGrid/styles.scss
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
.grid {
|
||||||
|
min-height: 200px;
|
||||||
|
padding-bottom: 62px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
display: grid;
|
||||||
|
grid-column-gap: $gap;
|
||||||
|
grid-row-gap: $gap;
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(30vw, 1fr));
|
||||||
|
}
|
||||||
|
}
|
10
src/components/editors/SortableImageGridItem/index.tsx
Normal file
10
src/components/editors/SortableImageGridItem/index.tsx
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import React from 'react';
|
||||||
|
import { SortableElement } from 'react-sortable-hoc';
|
||||||
|
|
||||||
|
import * as styles from './styles.scss';
|
||||||
|
|
||||||
|
const SortableImageGridItem = SortableElement(({ children }) => (
|
||||||
|
<div className={styles.item}>{children}</div>
|
||||||
|
));
|
||||||
|
|
||||||
|
export { SortableImageGridItem };
|
4
src/components/editors/SortableImageGridItem/styles.scss
Normal file
4
src/components/editors/SortableImageGridItem/styles.scss
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
.item {
|
||||||
|
z-index: 1;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue