使用react-select
时,它不是按选项值自动调整大小,而是使用width:100%
,如图所示:
选项很简短:
getOptions() {
return [
{ value: 'AND', label: 'AND' },
{ value: 'OR', label: 'OR' }
]
}
产生它的代码:
<Select
options={this.getOptions()}
value={value}
autosize={true}
clearable={false}
simpleValue
/>
有没有办法让react-select
通过自动调整大小显示这些值,因此选择框与选项长度相同,例如,我可以将此选择框置于<div>
的中心位置?
更新于14.11.2017 在jsFiddle
中可以看到完整的示例答案 0 :(得分:5)
解决方案1
您可以根据所选选项的长度更新组件“inline styles
,从而利用React的width
。
让我进一步解释:说选择的值是HelloWorld
。此字符串的长度为10
。我们可以猜测每个角色平均每个人都说8px
(总猜测我根本没有线索)。因此,这个单词的宽度大约是8*10=80px
,对吧?此外,在单词(carret和十字架)之后还有一些控件,我们需要一些最小填充:它们一起可能是100px
宽度。然后你就可以了:你的div的宽度应该是( 8px * 10 letters ) + 100px = 180px
。
更确切地说,正确的公式如下:
(average_letter_size * selected_value.length) + other_elements_sizes
当selected_value
发生变化时,其length
也会发生变化,因此div的宽度会随着新的总数而更新。
示例:如果所选值现在为Lorem Ipsum dolor sit amet
,则长度现为26
。通过应用公式,我们得到更大的宽度:(8px * 26 letters) + 100px = 308px
。
为了在反应中工作,这里有一个片段:
<Select
style={{width: `${(8*this.state.selectedOption2.length) + 100}px`}}
className="select-custom-class"
name="form-field-name"
value={this.state.selectedOption2}
options={options2}
onChange={(value) => { this.setState({ selectedOption2: value.value }); }}
/>
如你所见,我补充道:
style={{width: `${(8*this.state.selectedOption2.length) + 100}px`}}
到你的组件。每当状态更新时,所有内容都会传播,包括组件的宽度。
请参阅此fiddle中的工作示例。
最终,您希望根据需要微调规则和平均值。我还建议您根据所选值中的大写字母数和小写字母应用字母大小。
解决方案2 (编辑)
如果你愿意,我想出了一个纯CSS解决方案。它应该针对您的设计进行更好的测试,但这应该有效:
// .Select-value comes with an absolute position to stack it below .Select-input
// we need to scratch that in order for us to be able to let the div grow depending on its content size
.Select-placeholder, .Select--single > .Select-control .Select-value {
position: relative;
padding-left: 0;
}
// All these 3 classes come with ugly "table" display...
.Select-control, .Select-clear-zone, .Select-arrow-zone {
display: inherit;
}
// here is the trick: we display the wrapper as flex in order to make it fit in height
// we flip positions of .Select-value and .Select-input using row-reverse in order to have a nice input to the left and no to the right
.select-custom-class .Select-multi-value-wrapper {
display: flex;
flex-direction: row-reverse;
}
// we put our controls back to a better center position
.Select-clear-zone {
position: absolute;
top: 8px;
right: 20px;
}
.Select-arrow-zone {
position: absolute;
top: 8px;
right: 0px;
}
查看工作fiddle(为了更好地说明,我更改了一些示例)
告诉我你的想法。 :)
答案 1 :(得分:5)
如果您使用的是react-select v3,则可以使用customStyles对象:
const customStyles = {
container: provided => ({
...provided,
width: 150
})
};
<Select
styles={customStyles}
{...otherProps}
/>
答案 2 :(得分:1)
内联样式对我不起作用。 我只是将Select组件包装在一个div中,并给div设置了我想要的宽度。
<div style={{width: '300px'}}>
<Select
menuPlacement="auto"
menuPosition="fixed"
etc, etc..
/>
</div>
答案 3 :(得分:1)
我从 aidan-keay 上的 repo thread 借用了这个,但是将它添加到自定义样式道具中对我有用:
menu: (base) => ({
...base,
width: "max-content",
minWidth: "100%"
}),
答案 4 :(得分:0)
更新:对于使用React-Select进行“标签自动完成”功能但在根据您之前搜索的标签设置样式宽度过窄的情况下遇到麻烦的人们,这是适用的我:
设置以下样式:
.myCustomPrefix__value-container > div {
width: auto !important;
}
在组件(docs)中设置classNamePrefix="myCustomPrefix"
。
旧答案:
请参阅https://react-select.com/styles#style-object
上的官方文档我最初以为width
将option
设置为“自动”对我有用:
const customStyles = {
option: (styles, { data, isDisabled, isFocused, isSelected }) => {
return {
...styles,
fontSize: '12px',
textAlign: 'left',
width: 'auto',
}
},
}
...
return (
//https://react-select.com/props
<AsyncSelect
components={animatedComponents}
isMulti
// isDisabled={isLoading}
// isLoading={isLoading}
onChange={handleChange}
onInputChange={handleInputChange}
cacheOptions
defaultOptions
defaultMenuIsOpen={false}
closeMenuOnSelect={closeMenuOnSelect}
placeholder={placeholder}
loadOptions={promiseOptions}
value={selectedOptions}
styles={customStyles}
formatOptionLabel={formatOptionLabel}
/>
)
答案 5 :(得分:0)
大家好:)解决方案比解决方法还简单!
这些__placeholder
,__single-value
类中的问题
只需将此CSS添加到它们两者中,您将获得自动调整大小的反应选择
.CUSTOM_PREFIX__single-value,
.CUSTOM_PREFIX__placeholder {
position: static;
top: auto;
left: auto;
transform: none;
max-width: none;
}