mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 09:34:41 +01:00
73 lines
1.7 KiB
Go
73 lines
1.7 KiB
Go
package gojekyll
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/osteele/gojekyll/helpers"
|
|
|
|
libsass "github.com/wellington/go-libsass"
|
|
)
|
|
|
|
// IsSassPath returns a boolean indicating whether the file is a Sass (".sass" or ".scss") file.
|
|
func (s *Site) IsSassPath(name string) bool {
|
|
return strings.HasSuffix(name, ".sass") || strings.HasSuffix(name, ".scss")
|
|
}
|
|
|
|
func (p *DynamicPage) writeSass(w io.Writer, data []byte) error {
|
|
comp, err := libsass.New(w, bytes.NewBuffer(data))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = comp.Option(libsass.IncludePaths(p.site.SassIncludePaths()))
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
return comp.Run()
|
|
}
|
|
|
|
// CopySassFileIncludes copies sass partials into a temporary directory,
|
|
// removing initial underscores.
|
|
// TODO delete the temp directory when done
|
|
func (s *Site) CopySassFileIncludes() {
|
|
// TODO use libsass.ImportsOption instead?
|
|
if s.sassTempDir == "" {
|
|
d, err := ioutil.TempDir(os.TempDir(), "_sass")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
s.sassTempDir = d
|
|
}
|
|
|
|
src := filepath.Join(s.Source, "_sass")
|
|
dst := s.sassTempDir
|
|
err := filepath.Walk(src, func(from string, info os.FileInfo, err error) error {
|
|
if err != nil || info.IsDir() {
|
|
return err
|
|
}
|
|
rel, err := filepath.Rel(src, from)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
to := filepath.Join(dst, strings.TrimPrefix(rel, "_"))
|
|
return helpers.CopyFileContents(to, from, 0644)
|
|
})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// SassIncludePaths returns an array of sass include directories.
|
|
func (s *Site) SassIncludePaths() []string {
|
|
if s.sassTempDir == "" {
|
|
s.CopySassFileIncludes()
|
|
}
|
|
s.CopySassFileIncludes()
|
|
return []string{s.sassTempDir}
|
|
}
|