我正在使用带有 Cider 和 ShadowCLJS 的 Emacs 使用基本的 ReactNative 应用程序。我可以非常一致地使用 REPL 进行开发,但是一旦我不小心保存了一个包含语法错误的文件,我就会失去与 REPL 的通信。我输入的任何内容都会导致延迟,然后是“REPL 命令超时”。我发现修复它的唯一方法是使用npx react-native run-android
. 但后来我失去了我在 REPL 中的所有状态。
问问题
194 次
1 回答
1
这可能是许多不同的事情。
这可能与 Metro(或 Expo)提供的实时重载有关。在模拟器中按 Ctrl-M(Mac 上为 Cmd-M)以调出关闭快速刷新的选项。
https://facebook.github.io/react-native/docs/fast-refresh
https://github.com/thheller/shadow-cljs/issues/469
如果禁用快速刷新后仍然出现此错误,可能是因为 ReactNative 在重新加载时没有完全断开旧的 websocket。这是 shadow-cljs 的创建者的评论。
它是 react-native 中的一个错误,因为它在重新加载应用程序时不会断开 websockets,因此 shadow-cljs 认为“旧”应用程序仍在运行并尝试与它交谈(但它从不回复)我在 RN 上打开了一个问题回购,但由于一年左右不活动而关闭。我猜没人在乎。
我找到了一种使用 ReactNative 的 AppState 和从 shadow-cljs dev 命名空间中引用 websocket 的解决方法。
https://facebook.github.io/react-native/docs/appstate.html
(defn on-app-state-change
"Fixes issue with shadow-cljs repl losing connection to websocket.
Put this in some root component's `component-did-mount`.
https://stackoverflow.com/questions/40561073/websocket-not-closed-on-reload-appreact-native
"
[state]
(cond
(= state "background")
(.close @shadow-rn/socket-ref)
(and (= state "active")
(nil? @shadow-rn/socket-ref))
(shadow-rn/ws-connect)))
(defn make-reloader
[component]
(let [component-ref (r/atom component)]
(letfn [(render []
(let [component @component-ref]
(if (fn? component)
(component)
component)))]
(let [wrapper (r/create-class
{:render render
:component-did-mount
(fn []
(.addEventListener rn/AppState "change" on-app-state-change))
:component-will-unmount
(fn []
(.removeEventListener rn/AppState "change" on-app-state-change))})]
(rn/AppRegistry.registerComponent "Ezmonic" (fn [] wrapper))
(fn [comp]
(reset! component-ref comp))))))
于 2019-12-19T19:53:55.573 回答