Skip to content

Commit 696aea2

Browse files
Merged in r2-2827-insight-fixes (pull request #6762)
R2-2827: Wrapping insight filters
2 parents 99e0840 + 8023a1d commit 696aea2

File tree

5 files changed

+38
-46
lines changed

5 files changed

+38
-46
lines changed

app/javascript/components/form/components/styles.css

+2-13
Original file line numberDiff line numberDiff line change
@@ -128,21 +128,10 @@
128128

129129
:global [dir="rtl"] .MuiAutocomplete-endAdornment {
130130
right: initial !important;
131-
margin-left: 9px !important;
132-
left: 0;
131+
left: 9px !important;
133132
}
134133

135134
:global .MuiAutocomplete-endAdornment {
136-
position: relative !important;
137-
margin-right: 9px !important;
135+
right: 9px !important;
138136
left: initial !important;
139-
right: 0 !important;
140-
}
141-
142-
:global .MuiAutocomplete-inputRoot {
143-
display: flex;
144-
}
145-
146-
:global .MuiAutocomplete-inputRoot input {
147-
padding: 9.5px !important;
148137
}

app/javascript/components/form/fields/select-input.jsx

+2-7
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,8 @@ const SelectInput = ({ commonInputProps, metaInputProps, options: allOptions, fo
214214
return <TextField {...inputParams} label={<InputLabel tooltip={tooltip} text={label} />} {...rest} />;
215215
};
216216

217-
const renderTags = (value, getTagProps) => (
218-
<div>
219-
{value.map((option, index) => (
220-
<Chip label={optionLabel(option)} {...getTagProps({ index })} disabled={disabled} />
221-
))}
222-
</div>
223-
);
217+
const renderTags = (value, getTagProps) =>
218+
value.map((option, index) => <Chip label={optionLabel(option)} {...getTagProps({ index })} disabled={disabled} />);
224219

225220
const getOptionDisabled = option => {
226221
if (option?.disabled) {

app/javascript/components/insights-filters/component.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const Component = ({ moduleID, id, subReport, toggleControls }) => {
139139
<form noValidate onSubmit={formMethods.handleSubmit(submit)}>
140140
<div className={css.container}>
141141
<div className={css.dateControlGroup}>{filterInputs(DATE_CONTROLS_GROUP)}</div>
142-
{filterInputs()}
142+
<div className={css.filters}>{filterInputs()}</div>
143143
</div>
144144
<div className={css.actions}>
145145
<div>

app/javascript/components/insights-filters/styles.css

+12-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,17 @@
1212
}
1313
}
1414

15+
.filters {
16+
display: flex;
17+
gap: var(--sp-2);
18+
flex-wrap: wrap;
19+
20+
& > div {
21+
width: calc(50% - var(--sp-1));
22+
margin: 0;
23+
}
24+
}
25+
1526
.actions {
1627
display: flex;
1728
width: 25em;
@@ -26,9 +37,9 @@
2637
.dateControlGroup {
2738
display: flex;
2839
flex-wrap: wrap;
29-
flex: 2 !important;
3040
gap: var(--sp-1);
3141
justify-content: space-between;
42+
flex: 1;
3243

3344
& > div {
3445
margin: 0;

app/javascript/components/searchable-select/component.jsx

+21-24
Original file line numberDiff line numberDiff line change
@@ -48,31 +48,28 @@ const SearchableSelect = ({
4848
return defaultValues || defaultEmptyValue;
4949
})();
5050

51-
const renderTags = (value, getTagProps) => (
52-
<div>
53-
{value.map((option, index) => {
54-
const { onDelete, ...rest } = { ...getTagProps({ index }) };
55-
const chipProps = {
56-
...(isDisabled || { onDelete }),
57-
...rest,
58-
classes: {
59-
...(mode.isShow && {
60-
disabled: css.disabledChip
61-
})
62-
}
63-
};
51+
const renderTags = (value, getTagProps) =>
52+
value.map((option, index) => {
53+
const { onDelete, ...rest } = { ...getTagProps({ index }) };
54+
const chipProps = {
55+
...(isDisabled || { onDelete }),
56+
...rest,
57+
classes: {
58+
...(mode.isShow && {
59+
disabled: css.disabledChip
60+
})
61+
}
62+
};
6463

65-
return (
66-
<Chip
67-
size="small"
68-
label={optionLabel(option, options, optionIdKey, optionLabelKey)}
69-
{...chipProps}
70-
disabled={isDisabled}
71-
/>
72-
);
73-
})}
74-
</div>
75-
);
64+
return (
65+
<Chip
66+
size="small"
67+
label={optionLabel(option, options, optionIdKey, optionLabelKey)}
68+
{...chipProps}
69+
disabled={isDisabled}
70+
/>
71+
);
72+
});
7673

7774
const getSelectedOptions = (option, selected) => optionEquality(option, selected, optionIdKey);
7875
const getOptionLabel = option => optionLabel(option, options, optionIdKey, optionLabelKey);

0 commit comments

Comments
 (0)