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

added updated nodes to flow

This commit is contained in:
Fedor Katurov 2019-10-30 17:26:30 +07:00
parent 6f76bec2c0
commit 74cd181530
13 changed files with 128 additions and 30 deletions

View file

@ -8,7 +8,7 @@ import pick from 'ramda/es/pick';
import { selectUser } from '~/redux/auth/selectors';
const mapStateToProps = state => ({
flow: pick(['nodes', 'heroes', 'recent'], selectFlow(state)),
flow: pick(['nodes', 'heroes', 'recent', 'updated'], selectFlow(state)),
user: pick(['role', 'id'], selectUser(state)),
});
@ -20,7 +20,7 @@ const mapDispatchToProps = {
type IProps = ReturnType<typeof mapStateToProps> & typeof mapDispatchToProps & {};
const FlowLayoutUnconnected: FC<IProps> = ({
flow: { nodes, heroes, recent },
flow: { nodes, heroes, recent, updated },
user,
nodeLoadNode,
flowSetCellView,
@ -29,6 +29,7 @@ const FlowLayoutUnconnected: FC<IProps> = ({
nodes={nodes}
heroes={heroes}
recent={recent}
updated={updated}
onSelect={nodeLoadNode}
user={user}
onChangeCellView={flowSetCellView}