fix: graph keep re-index when loading

The reason is that `mtime` and `ctime` are lost in the main thread.
This commit is contained in:
Tienson Qin
2025-03-12 02:22:55 +08:00
parent 0ff5471aba
commit 2d8e80954e
3 changed files with 10 additions and 5 deletions

View File

@@ -52,7 +52,7 @@
(utils/read-file path))
stat (when (and (not= event "unlink")
(not dir-path?))
(fs/statSync path))]
(utils/fs-stat->clj path))]
(send-file-watcher! dir event (merge {:dir (utils/fix-win-path! dir)
:path (utils/fix-win-path! path)
:content content

View File

@@ -123,7 +123,7 @@
(when (and (chmod-enabled?) (fs/existsSync path) (not (writable? path)))
(fs/chmodSync path "644"))
(fs/writeFileSync path content)
(fs/statSync path)
(utils/fs-stat->clj path)
(catch :default e
(logger/warn ::write-file path e)
(let [backup-path (try
@@ -144,7 +144,7 @@
(fs/renameSync old-path new-path))
(defmethod handle :stat [_window [_ path]]
(fs/statSync path))
(utils/fs-stat->clj path))
(defn- get-files
"Returns vec of file-objs"
@@ -506,7 +506,6 @@
(debounced-configure-auto-commit!)
nil)
(defmethod handle :installMarketPlugin [_ [_ mft]]
(plugin/install-or-update! mft))

View File

@@ -149,7 +149,6 @@
(logger/warn "Unknown PAC rule:" line)
nil))))
(defn <get-system-proxy
"Get system proxy for url, requires proxy to be set to system"
([] (<get-system-proxy "https://www.google.com"))
@@ -288,3 +287,10 @@
(catch :default _
(println "decodeURIComponent failed: " uri)
uri)))
(defn fs-stat->clj
[path]
(let [stat (fs/statSync path)]
{:size (.-size stat)
:mtime (.-mtime stat)
:ctime (.-ctime stat)}))