1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
import React, {
memo,
useEffect,
useState,
useRef,
useLayoutEffect,
useCallback
} from 'react';
import { useActions, useStoreState } from 'm/store';
import Button from 'c/Button';
import { FixedSizeList as List, areEqual } from 'react-window';
import ContentHeader from 'c/ContentHeader';
import Rule from 'c/Rule';
import RuleSearch from 'c/RuleSearch';
import useRemainingViewPortHeight from '../hooks/useRemainingViewPortHeight';
import { getRules, fetchRules, fetchRulesOnce } from 'd/rules';
import s0 from './Rules.module.scss';
const paddingBottom = 30;
const mapStateToProps = s => ({
rules: getRules(s)
});
const actions = {
fetchRules,
fetchRulesOnce
};
function itemKey(index, data) {
const item = data[index];
return item.id;
}
const Row = memo(({ index, style, data }) => {
const r = data[index];
return (
<div style={style}>
<Rule {...r} />
</div>
);
}, areEqual);
export default function Rules() {
const { fetchRulesOnce, fetchRules } = useActions(actions);
const { rules } = useStoreState(mapStateToProps);
useEffect(() => {
fetchRulesOnce();
}, []);
const [refRulesContainer, containerHeight] = useRemainingViewPortHeight();
return (
<div>
<ContentHeader title="Rules" />
<RuleSearch />
<div ref={refRulesContainer} style={{ paddingBottom }}>
<List
height={containerHeight - paddingBottom}
width="100%"
itemCount={rules.length}
itemSize={80}
itemData={rules}
itemKey={itemKey}
>
{Row}
</List>
</div>
<div className={s0.fabgrp}>
<Button label="Refresh" onClick={fetchRules} />
</div>
</div>
);
}
|