Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 2bf27ca

Browse files
author
cbrwizard
committed
Fix spacing; add editorconfig
1 parent 9327c60 commit 2bf27ca

File tree

2 files changed

+54
-45
lines changed

2 files changed

+54
-45
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
end_of_line = lf

src/index.js

+45-45
Original file line numberDiff line numberDiff line change
@@ -40,51 +40,51 @@ type Props = {
4040
};
4141

4242
class MultiSelect extends Component<Props> {
43-
static defaultProps = {
44-
hasSelectAll: true,
45-
shouldToggleOnHover: false,
46-
}
47-
48-
getSelectedText() {
49-
const {options, selected} = this.props;
50-
51-
const selectedOptions = selected
52-
.map(s => options.find(o => o.value === s));
53-
54-
const selectedLabels = selectedOptions.map(s => s ? s.label : "");
55-
56-
return selectedLabels.join(", ");
57-
}
58-
59-
renderHeader() {
60-
const {
61-
options,
62-
selected,
63-
valueRenderer,
64-
} = this.props;
65-
66-
const noneSelected = selected.length === 0;
67-
const allSelected = selected.length === options.length;
68-
69-
const customText = valueRenderer && valueRenderer(selected, options);
70-
71-
if (noneSelected) {
72-
return <span style={styles.noneSelected}>
73-
{customText || "Select some items..."}
74-
</span>;
75-
}
76-
77-
if (customText) {
78-
return <span>{customText}</span>;
79-
}
80-
81-
return <span>
82-
{allSelected
83-
? "All items are selected"
84-
: this.getSelectedText()
85-
}
86-
</span>;
87-
}
43+
static defaultProps = {
44+
hasSelectAll: true,
45+
shouldToggleOnHover: false,
46+
}
47+
48+
getSelectedText() {
49+
const {options, selected} = this.props;
50+
51+
const selectedOptions = selected
52+
.map(s => options.find(o => o.value === s));
53+
54+
const selectedLabels = selectedOptions.map(s => s ? s.label : "");
55+
56+
return selectedLabels.join(", ");
57+
}
58+
59+
renderHeader() {
60+
const {
61+
options,
62+
selected,
63+
valueRenderer,
64+
} = this.props;
65+
66+
const noneSelected = selected.length === 0;
67+
const allSelected = selected.length === options.length;
68+
69+
const customText = valueRenderer && valueRenderer(selected, options);
70+
71+
if (noneSelected) {
72+
return <span style={styles.noneSelected}>
73+
{customText || "Select some items..."}
74+
</span>;
75+
}
76+
77+
if (customText) {
78+
return <span>{customText}</span>;
79+
}
80+
81+
return <span>
82+
{allSelected
83+
? "All items are selected"
84+
: this.getSelectedText()
85+
}
86+
</span>;
87+
}
8888

8989
handleSelectedChanged = (selected: Array<any>) => {
9090
const {onSelectedChanged, disabled} = this.props;

0 commit comments

Comments
 (0)