-
Notifications
You must be signed in to change notification settings - Fork 5
/
watch.go
70 lines (61 loc) · 1.51 KB
/
watch.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package fir
import (
"context"
"fmt"
"io/fs"
"log"
"path/filepath"
"strings"
"time"
"slices"
"github.com/fsnotify/fsnotify"
"github.com/livefir/fir/internal/logger"
"github.com/livefir/fir/pubsub"
)
// defaultWatchExtensions is an array of default extensions to watch for changes.
var defaultWatchExtensions = []string{".gohtml", ".gotmpl", ".html", ".tmpl"}
const devReloadChannel = "dev_reload"
func watchTemplates(wc *controller) {
watcher, err := fsnotify.NewWatcher()
if err != nil {
log.Fatal(err)
}
defer watcher.Close()
done := make(chan bool)
go func() {
for {
select {
case event, ok := <-watcher.Events:
if !ok {
return
}
if event.Op&fsnotify.Write == fsnotify.Write ||
event.Op&fsnotify.Remove == fsnotify.Remove ||
event.Op&fsnotify.Create == fsnotify.Create {
fmt.Printf("[watcher]==> file changed: %v, reloading ... \n", event.Name)
wc.pubsub.Publish(context.Background(), devReloadChannel, pubsub.Event{ID: fir("reload")})
time.Sleep(1000 * time.Millisecond)
}
case err, ok := <-watcher.Errors:
if !ok {
return
}
logger.Errorf("error: %v", err)
}
}
}()
// watch extensions
filepath.WalkDir(wc.publicDir, func(path string, d fs.DirEntry, err error) error {
if d != nil && !d.IsDir() {
if slices.Contains(wc.watchExts, filepath.Ext(path)) {
if strings.Contains(path, "node_modules") {
return nil
}
fmt.Println("watching =>", path)
return watcher.Add(path)
}
}
return nil
})
<-done
}