cryogen-core/src/cryogen_core/sass.clj

71 lines
2.4 KiB
Clojure
Raw Normal View History

2014-12-05 15:56:40 +00:00
(ns cryogen-core.sass
2015-02-21 21:56:38 +00:00
(:require [clojure.java.shell :as shell]
[clojure.java.io :as io]
[cryogen-core.io :refer [ignore match-re-filter]]))
2014-12-04 16:38:48 +00:00
2015-02-21 21:56:38 +00:00
(defmacro sh
[& args]
(let [valid-args (remove nil? args)]
`(shell/sh ~@valid-args)))
2014-12-04 16:38:48 +00:00
(defn sass-installed?
"Checks for the installation of Sass."
[]
(= 0 (:exit (sh "sass" "--version"))))
2015-02-21 21:56:38 +00:00
(defn compass-installed?
"Checks for the installation of Compass."
[]
(= 0 (:exit (sh "compass" "--version"))))
2014-12-04 16:38:48 +00:00
(defn find-sass-files
"Given a Diretory, gets files, Filtered to those having scss or sass
extention. Ignores files matching any ignored regexps."
[dir ignored-files]
(let [filename-filter (match-re-filter #"(?i:s[ca]ss$)")]
(->> (.listFiles (io/file dir) filename-filter)
(filter #(not (.isDirectory %)))
(filter (ignore ignored-files))
(map #(.getName %)))))
2014-12-04 16:38:48 +00:00
(defn compile-sass-file!
"Given a sass file which might be in src-sass directory,
output the resulting css in dest-sass. All error handling is
done by sh / launching the sass command."
[sass-file
src-sass
2015-02-21 21:56:38 +00:00
dest-sass
compass?]
2014-12-04 16:38:48 +00:00
(sh "sass"
"--update"
2015-02-21 21:56:38 +00:00
(when compass? "--compass")
2014-12-04 16:38:48 +00:00
(str src-sass "/" sass-file)
(str dest-sass "/" )))
(defn compile-sass->css!
"Given a directory src-sass, looks for all sass files and compiles them into
dest-sass. Prompts you to install sass if he finds sass files and can't find
the command. Shows you any problems it comes across when compiling. "
[src-sass
dest-sass
ignored-files]
(let [sass-files (find-sass-files src-sass ignored-files)]
2014-12-04 16:38:48 +00:00
(if (seq sass-files)
;; I found sass files,
;; If sass is installed
(if (sass-installed?)
2015-02-21 21:56:38 +00:00
(let [compass? (compass-installed?)]
;; I compile all files
(doseq [a-file sass-files]
(println "Compiling Sass File:" a-file src-sass dest-sass)
(let [result (compile-sass-file! a-file src-sass dest-sass compass?)]
(if (zero? (:exit result))
;; no problems in sass compilation
(println "Successfully compiled:" a-file)
;; else I show the error
(println (:err result))))))
2014-12-04 16:38:48 +00:00
;; Else I prompt to install Sass
(println "Sass seems not to be installed, but you have scss / sass files in "
src-sass
" - You might want to install it here: sass-lang.com")))))