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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
import * as React from 'react';
import { Component, Styles, Types, View } from 'reactxp';
import { compareRelayLocation, RelayLocation } from '../../shared/daemon-rpc-types';
import Accordion from './Accordion';
import * as Cell from './Cell';
import ChevronButton from './ChevronButton';
import CityRow from './CityRow';
import RelayStatusIndicator from './RelayStatusIndicator';
type CityRowElement = React.ReactElement<CityRow['props']>;
interface IProps {
name: string;
hasActiveRelays: boolean;
location: RelayLocation;
selected: boolean;
expanded: boolean;
onSelect?: (location: RelayLocation) => void;
onExpand?: (location: RelayLocation, value: boolean) => void;
children?: CityRowElement | CityRowElement[];
}
const styles = {
container: Styles.createViewStyle({
flexDirection: 'column',
flex: 0,
}),
base: Styles.createViewStyle({
paddingRight: 0,
paddingLeft: 16,
}),
};
export default class CountryRow extends Component<IProps> {
public static compareProps(oldProps: IProps, nextProps: IProps) {
if (React.Children.count(oldProps.children) !== React.Children.count(nextProps.children)) {
return false;
}
if (
oldProps.name !== nextProps.name ||
oldProps.hasActiveRelays !== nextProps.hasActiveRelays ||
oldProps.selected !== nextProps.selected ||
oldProps.expanded !== nextProps.expanded ||
!compareRelayLocation(oldProps.location, nextProps.location)
) {
return false;
}
const currChildren = React.Children.toArray(oldProps.children || []) as CityRowElement[];
const nextChildren = React.Children.toArray(nextProps.children || []) as CityRowElement[];
for (let i = 0; i < currChildren.length; i++) {
const currChild = currChildren[i];
const nextChild = nextChildren[i];
if (!CityRow.compareProps(currChild.props, nextChild.props)) {
return false;
}
}
return true;
}
public shouldComponentUpdate(nextProps: IProps) {
return !CountryRow.compareProps(this.props, nextProps);
}
public render() {
const childrenArray = React.Children.toArray(this.props.children || []) as CityRowElement[];
const numChildren = childrenArray.length;
const onlyChild = numChildren === 1 ? childrenArray[0] : undefined;
const numOnlyChildChildren = onlyChild
? React.Children.count(onlyChild.props.children || [])
: 0;
const hasChildren = numChildren > 1 || numOnlyChildChildren > 1;
return (
<View style={styles.container}>
<Cell.CellButton
style={styles.base}
onPress={this.handlePress}
disabled={!this.props.hasActiveRelays}
selected={this.props.selected}>
<RelayStatusIndicator
active={this.props.hasActiveRelays}
selected={this.props.selected}
/>
<Cell.Label>{this.props.name}</Cell.Label>
{hasChildren ? (
<ChevronButton onPress={this.toggleCollapse} up={this.props.expanded} />
) : null}
</Cell.CellButton>
{hasChildren && <Accordion expanded={this.props.expanded}>{this.props.children}</Accordion>}
</View>
);
}
private toggleCollapse = (event: Types.SyntheticEvent) => {
if (this.props.onExpand) {
this.props.onExpand(this.props.location, !this.props.expanded);
}
event.stopPropagation();
};
private handlePress = () => {
if (this.props.onSelect) {
this.props.onSelect(this.props.location);
}
};
}
|