mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
71 lines
1.7 KiB
TypeScript
71 lines
1.7 KiB
TypeScript
import React, { FC } from 'react';
|
|
import Masonry from 'react-masonry-css';
|
|
import { useShallowSelect } from '~/utils/hooks/useShallowSelect';
|
|
import styles from './styles.module.scss';
|
|
import { LabNode } from '~/components/lab/LabNode';
|
|
import { selectLabList, selectLabListNodes } from '~/redux/lab/selectors';
|
|
import { EMPTY_NODE, NODE_TYPES } from '~/redux/node/constants';
|
|
import { values } from 'ramda';
|
|
|
|
interface IProps {}
|
|
|
|
const breakpointCols = {
|
|
default: 2,
|
|
1280: 1,
|
|
};
|
|
|
|
const getRandomNodeType = () =>
|
|
values(NODE_TYPES)[Math.floor(Math.random() * values(NODE_TYPES).length)];
|
|
|
|
const LoadingNode = () => (
|
|
<LabNode
|
|
node={{ ...EMPTY_NODE, type: getRandomNodeType() }}
|
|
isLoading
|
|
lastSeen=""
|
|
commentCount={0}
|
|
/>
|
|
);
|
|
|
|
const LabGrid: FC<IProps> = () => {
|
|
const nodes = useShallowSelect(selectLabListNodes);
|
|
const { is_loading } = useShallowSelect(selectLabList);
|
|
|
|
if (is_loading) {
|
|
return (
|
|
<Masonry
|
|
className={styles.wrap}
|
|
breakpointCols={breakpointCols}
|
|
columnClassName={styles.column}
|
|
>
|
|
<LoadingNode />
|
|
<LoadingNode />
|
|
<LoadingNode />
|
|
<LoadingNode />
|
|
<LoadingNode />
|
|
<LoadingNode />
|
|
<LoadingNode />
|
|
<LoadingNode />
|
|
<LoadingNode />
|
|
</Masonry>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Masonry
|
|
className={styles.wrap}
|
|
breakpointCols={breakpointCols}
|
|
columnClassName={styles.column}
|
|
>
|
|
{nodes.map(node => (
|
|
<LabNode
|
|
node={node.node}
|
|
key={node.node.id}
|
|
lastSeen={node.last_seen}
|
|
commentCount={node.comment_count}
|
|
/>
|
|
))}
|
|
</Masonry>
|
|
);
|
|
};
|
|
|
|
export { LabGrid };
|