hugoblib: Fix "adding a bundle" in server mode
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 15 Aug 2018 18:41:19 +0000 (20:41 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 16 Aug 2018 10:54:59 +0000 (12:54 +0200)
Before this commit, the live reload logic in `hugo server` got confused when you dropped a new bundle into the project while the server was running. The workaround was to restart the server.

This commit fixes the "live reload bundle detection" in server mode, and also makes sure that the bundle headers are always processed first.

Fixes #5075

hugolib/hugo_sites.go
hugolib/page_bundler_capture.go

index 6ce6657fa7022dd1a2a9dce90b42e32ec25a9975..9241772b2c2873f90dff475cf0d146f38ea2c6d7 100644 (file)
@@ -740,6 +740,11 @@ func (m *contentChangeMap) resolveAndRemove(filename string) (string, string, bu
                }
        }
 
+       if isContent && fileTp != bundleNot {
+               // A new bundle.
+               return dir, dir, fileTp
+       }
+
        // Not part of any bundle
        return dir, filename, bundleNot
 }
index 15a80681e1f65fec0820e1a358733c13d9afd208..6fe413014a1fe94b16d1e880b35e9a0473c0e563 100644 (file)
@@ -20,6 +20,7 @@ import (
        "path"
        "path/filepath"
        "runtime"
+       "sort"
        "strings"
        "sync"
 
@@ -71,6 +72,30 @@ func newCapturer(
                numWorkers = n
        }
 
+       // TODO(bep) the "index" vs "_index" check/strings should be moved in one place.
+       isBundleHeader := func(filename string) bool {
+               base := filepath.Base(filename)
+               name := helpers.Filename(base)
+               return isContentFile(base) && (name == "index" || name == "_index")
+       }
+
+       // Make sure that any bundle header files are processed before the others. This makes
+       // sure that any bundle head is processed before its resources.
+       sort.Slice(filenames, func(i, j int) bool {
+               a, b := filenames[i], filenames[j]
+               ac, bc := isBundleHeader(a), isBundleHeader(b)
+
+               if ac {
+                       return true
+               }
+
+               if bc {
+                       return false
+               }
+
+               return a < b
+       })
+
        c := &capturer{
                sem:            make(chan bool, numWorkers),
                handler:        handler,