1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 09:24:38 +01:00
gojekyll/sass.go
2017-06-19 14:03:04 -04:00

66 lines
1.6 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")
}
// CopySassFileIncludes copies sass partials into a temporary directory,
// removing initial underscores.
// TODO delete the temp directory when done
func (s *Site) CopySassFileIncludes() error {
// TODO use libsass.ImportsOption instead?
if s.sassTempDir == "" {
dir, err := ioutil.TempDir(os.TempDir(), "_sass")
if err != nil {
return err
}
s.sassTempDir = dir
}
src := filepath.Join(s.Source, "_sass")
dst := s.sassTempDir
return 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 {
return err
}
to := filepath.Join(dst, strings.TrimPrefix(rel, "_"))
return helpers.CopyFileContents(to, from, 0644)
})
}
// SassIncludePaths returns an array of sass include directories.
func (s *Site) SassIncludePaths() []string {
return []string{s.sassTempDir}
}
func (page *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(page.site.SassIncludePaths()))
if err != nil {
log.Fatal(err)
}
return comp.Run()
}