sil*_*rry 6 autocomplete clojurescript reactjs material-ui reagent-forms
我在将 Material UIAutocomplete与 Reagent (ClojureScript) 一起使用时遇到问题。该元素呈现良好,但当我尝试单击它时,出现以下异常:
Uncaught TypeError: Cannot read property 'focus' of null
at handleClick (useAutocomplete.js:938)
at HTMLUnknownElement.callCallback (react-dom.development.js:189)
at Object.invokeGuardedCallbackImpl (react-dom.development.js:238)
at invokeGuardedCallback (react-dom.development.js:293)
at invokeGuardedCallbackAndCatchFirstError (react-dom.development.js:307)
at executeDispatch (react-dom.development.js:390)
at executeDispatchesAndReleaseTopLevel (react-dom.development.js:412)
at forEachAccumulated (react-dom.development.js:3260)
at runEventsInBatch (react-dom.development.js:3305)
at handleTopLevel (react-dom.development.js:3515)
useAutocomplete.js:322 Uncaught TypeError: Cannot read property 'removeAttribute' of null
at eval (useAutocomplete.js:322)
at eval (useEventCallback.js:26)
at eval (useAutocomplete.js:433)
at eval (useEventCallback.js:26)
at eval (useAutocomplete.js:463)
at eval (useAutocomplete.js:528)
at commitHookEffectListMount (react-dom.development.js:19765)
at commitPassiveHookEffects (react-dom.development.js:19803)
at HTMLUnknownElement.callCallback (react-dom.development.js:189)
at Object.invokeGuardedCallbackImpl (react-dom.development.js:238)
Run Code Online (Sandbox Code Playgroud)
在JS调试器打破,我看到inputRef.current为空(这是focus和removeAttribute被称为上。(奇怪的是,这里的唯一的地方inputRef在文件中设置是通过调用useRef(null),这是什么样的结果inputRef.current是零。)
在我的代码中,我将 Autocomplete 字段定义如下:
(ns my-product-redacted.views.atoms
(:require [reagent.core :as r]
["@material-ui/lab/Autocomplete" :default Autocomplete]
;; other requires
))
(def autocomplete-field (r/adapt-react-class Autocomplete))
Run Code Online (Sandbox Code Playgroud)
然后,在一个 React 组件中,它的用法如下:
[a/autocomplete-field {:render-input (fn [js-params]
(let [clj-params (js->clj js-params)
params {:label label
:width width
:select select?
:Input-label-props {:shrink true}
:Select-props {:native true}}
all-params (into clj-params params)]
(js/console.log (clj->js all-params))
(r/as-element [a/text-field all-params])))
:options (when select? (cons {:value "" :label ""} options))
:get-option-label (fn [option] (or (get (js->clj option) "label") ""))
:default-value (when (not select?) value-override)
:value (when select? value)
:disabled disabled?
:on-focus #(re-frame/dispatch [::forms/on-focus path])
:on-blur #(re-frame/dispatch [::forms/on-blur path])
:on-change #(re-frame/dispatch (conj on-change (-> % .-target .-value)))})]
Run Code Online (Sandbox Code Playgroud)
(这里,a/text-field也a/autocomplete-field以类似的方式定义在相同的命名空间中。)
JS 控制台日志(来自(js/console.log (clj->js params))调用)显示inputProps.ref.current设置为 null。但是,InputProps.ref不为空。即便如此,我还是尝试手动关联传递InputProps.ref给 to的相同函数inputProps.ref.current,但这并没有什么区别。
我还尝试了https://github.com/mui-org/material-ui/issues/21245 中建议的解决方法(尽管该问题与格式塔库有关,而不是与试剂有关,但这表明可能存在问题参考转发)。但是将 the 包装text-field成一个 div 与reftake fromInputProps.ref也没有区别。
有什么建议?
调用js->clj渲染输入 js 参数会破坏它们。
我把材料UI自动完成组件的快速演示我的演示存储库在这里。
但它主要取自此处的官方试剂文档/示例:
(defn autocomplete-example []
[:> mui/Grid
{:item true}
[:> Autocomplete {:options ["foo" "bar" "foobar"]
:style {:width 300}
;; Note that the function parameter is a JS Object!
;; Autocomplete expects the renderInput value to be function
;; returning React elements, not a component!
;; So reactify-component won't work here.
:render-input (fn [^js params]
;; Don't call js->clj because that would recursively
;; convert all JS objects (e.g. React ref objects)
;; to Cljs maps, which breaks them, even when converted back to JS.
;; Best thing is to use r/create-element and
;; pass the JS params to it.
;; If necessary, use JS interop to modify params.
(set! (.-variant params) "outlined")
(set! (.-label params) "Autocomplete")
(r/create-element mui/TextField params))}]])
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
715 次 |
| 最近记录: |