Material UI Text Field/Input の InputProps で渡された Start Adornment の幅を取得するにはどうすればよいですか?
<TextField {...{
InputProps: {
startAdornment:
<InputAdornment position="start">
Kg
</InputAdornment>
},
}}/>
ここに TextField の実装があります
<FormControl>
{label && (
<InputLabel disabled={disabled} htmlFor={id} {...InputLabelProps}>
{label}
</InputLabel>
)}
<Input startAdornment={StartAdornment} />
{helperText && (
<FormHelperText id={helperTextId} disabled={disabled} {...FormHelperTextProps}>
{helperText}
</FormHelperText>
)}
</FormControl>
InputProps で startAdornment を取得し、ref を渡して componentDidMount で幅を取得しようとしています
constructor(props) {
super(props)
this.ref = React.createRef()
}
componentDidMount() {
console.log('Did mount', this.ref.current.offsetWidth)
}
const StartAdornment = React.cloneElement(this.props.InputProps.startAdornment, {ref: this.ref})
私は未定義になっています。ref の現在のプロパティで要素を取得しますが、offsetWidth は定義されていません。ここで何が問題なのかわかりません。