1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00
vault-frontend/src/components/flow/FlowGrid/index.tsx
muerwre 94c656fe0f
refactored flow cells, added colors for lab (#78)
* made better flow cells

* made cubical desaturation

* made colorfull lab nodes

* colorful lab nodes for all text ones

* all lab nodes are colorful

* disabled lazy loading on heroes

* fixed color calculation hook

* fixed lab color gradients calculation

* fixed cell text on flow
2021-10-08 11:33:53 +07:00

38 lines
1.2 KiB
TypeScript

import React, { FC, Fragment } from 'react';
import { IFlowState } from '~/redux/flow/reducer';
import { INode } from '~/redux/types';
import { IUser } from '~/redux/auth/types';
import { PRESETS, URLS } from '~/constants/urls';
import { FlowCell } from '~/components/flow/FlowCell';
import classNames from 'classnames';
import styles from './styles.module.scss';
import { getURLFromString } from '~/utils/dom';
type IProps = Partial<IFlowState> & {
user: Partial<IUser>;
onChangeCellView: (id: INode['id'], flow: INode['flow']) => void;
};
export const FlowGrid: FC<IProps> = ({ user, nodes, onChangeCellView }) => {
if (!nodes) {
return null;
}
return (
<Fragment>
{nodes.map(node => (
<div className={classNames(styles.cell, styles[node.flow.display])} key={node.id}>
<FlowCell
color={node.flow.dominant_color}
to={URLS.NODE_URL(node.id)}
image={getURLFromString(node.thumbnail, PRESETS.cover)}
display={node.flow.display}
text={node.flow.show_description ? node.description : ''}
title={node.title}
/>
</div>
))}
</Fragment>
);
};