{{- $page := . }} {{- $autores := resources.Get "css/auto.css" }} {{- $nonautothemevariants := slice }} {{- /* we need relearn-light in every case for the print styles */}} {{- $refthemevariants := slice | append "relearn-light" }} {{- /* Unification run: - convert from old forms to slice of dicts - add default name property - convert auto property to slice - save non auto variants to later assign them as default for missing auto variants - mark variants configured by the user */}} {{- $tempthemevariants := slice | append (.Site.Params.themeVariant | default "auto" ) }} {{- $themevariants := slice }} {{- range $tempthemevariant := $tempthemevariants }} {{- $themevariant := $tempthemevariant }} {{- if not (reflect.IsMap $themevariant) }} {{- $themevariant = dict "identifier" $tempthemevariant }} {{- end }} {{- if not $themevariant.name }} {{- $themevariant = collections.Merge $themevariant (dict "name" ($themevariant.identifier | humanize | strings.Title)) }} {{- end }} {{- if eq $themevariant.identifier "auto" }} {{- $themevariant = collections.Merge $themevariant (dict "auto" ($themevariant.auto | default slice)) }} {{- end }} {{- if not (isset $themevariant "auto") }} {{- $nonautothemevariants = $nonautothemevariants | append $themevariant.identifier }} {{- end }} {{- $themevariant = collections.Merge $themevariant (dict "config" true) }} {{- $themevariants = $themevariants | append $themevariant }} {{- end }} {{- /* Auto run: - fill up auto property with defaults - save variants referenced by auto configuration - write variant CSS file based on auto template - add chroma property */}} {{- $defaultautothemevariants := slice }} {{- $defaultautothemevariants = $defaultautothemevariants | append (index .Site.Params.themeVariantAuto 0 | default (index $nonautothemevariants 0) | default "relearn-light") }} {{- $defaultautothemevariants = $defaultautothemevariants | append (index .Site.Params.themeVariantAuto 1 | default (index $nonautothemevariants 1) | default "relearn-dark") }} {{- $tempthemevariants = $themevariants }} {{- $themevariants = slice }} {{- range $tempthemevariant := $tempthemevariants }} {{- $themevariant := $tempthemevariant }} {{- if collections.IsSet $themevariant "auto" }} {{- $light := index $themevariant.auto 0 | default (index $defaultautothemevariants 0) }} {{- $dark := index $themevariant.auto 1 | default (index $defaultautothemevariants 1) }} {{- $themevariant = collections.Merge $themevariant (dict "auto" (slice | append $light | append $dark)) }} {{- $refthemevariants = $refthemevariants | append $themevariant.auto }} {{- $cssres := $autores | resources.ExecuteAsTemplate (printf "css/theme-%s.css" $themevariant.identifier) (dict "prefix" "theme" "light" $light "dark" $dark) }} {{- /* the following code causes Hugo to generate our css file - although it is in comments */}} {{- $themevariant = collections.Merge $themevariant (dict "chroma" $themevariant.identifier) }} {{- end }} {{- $themevariants = $themevariants | append $themevariant }} {{- end }} {{- /* Ref run: - add variants referenced by auto properties - add default name property */}} {{- range $refthemevariant := $refthemevariants }} {{- if not (index (collections.Where $themevariants "identifier" $refthemevariant) 0) }} {{- $themevariant := (dict "identifier" $refthemevariant "name" ($refthemevariant | humanize | strings.Title) "config" false) }} {{- $themevariants = $themevariants | append $themevariant }} {{- end }} {{- end }} {{- /* Non-auto run: - write variant CSS file and all imported variant CSS files - add chroma property from deepest imported variant - write chroma CSS file (just the root one because they are not allowed to be nested and the deepest one wins) */}} {{- $tempthemevariants = $themevariants }} {{- $themevariants = slice }} {{- range $tempthemevariant := $tempthemevariants }} {{- $themevariant := $tempthemevariant }} {{- if not (collections.IsSet $themevariant "auto") }} {{- $themevariant = partial "get-theme-details.html" (dict "themevariant" $themevariant "identifier" $themevariant.identifier)}} {{- $cssres := resources.Get (printf "css/chroma-%s.css" $themevariant.chroma) }} {{- if not $cssres }} {{- errorf "\"chroma-%s.css\": file not found in \"assets/css\"; if you are migrating from a theme version older thant 6.0.0, you have to move it over from \"static/css\"" $themevariant.chroma }} {{- end }} {{- /* the following code causes Hugo to generate our css file - although it is in comments */}} {{- end }} {{- $themevariants = $themevariants | append $themevariant }} {{- end }} {{- /* Chroma auto run: - write chroma CSS file based on auto template */}} {{- range $tempthemevariant := $themevariants }} {{- $themevariant := $tempthemevariant }} {{- if collections.IsSet $themevariant "auto" }} {{- $lighttheme := index $themevariant.auto 0 | default (index $defaultautothemevariants 0) }} {{- $darktheme := index $themevariant.auto 1 | default (index $defaultautothemevariants 1) }} {{- $light := (index (collections.Where $themevariants "identifier" $lighttheme) 0).chroma }} {{- $dark := (index (collections.Where $themevariants "identifier" $darktheme) 0).chroma }} {{- $cssres := $autores | resources.ExecuteAsTemplate (printf "css/chroma-%s.css" $themevariant.chroma) (dict "prefix" "chroma" "light" $light "dark" $dark) }} {{- /* the following code causes Hugo to generate our css file - although it is in comments */}} {{- end }} {{- end }} {{- /* - Add box styles to variables and variants */}} {{- with resources.Get "css/variables.css" }} {{- $variablescontent := print ":root {\n" .Content }} {{- range $page.Site.Params.boxStyle }} {{- $identifier := upper .identifier }} {{- $variablescontent = print $variablescontent "\n" "\n --INTERNAL-BOX-" $identifier "-color: var(--BOX-" $identifier "-color, " .color ");" "\n --INTERNAL-BOX-" $identifier "-TEXT-color: var(--BOX-" $identifier "-TEXT-color, var(--INTERNAL-BOX-TEXT-color));" }} {{- end }} {{- $variablescontent = print $variablescontent "\n}" }} {{- $cssres := $variablescontent | resources.FromString "css/variables.css" }} {{- /* the following code causes Hugo to generate our css file - although it is in comments */}} {{- end }} {{- with resources.Get "css/variant.css" }} {{- $assetBusting := partialCached "assetbusting.hugo" . }} {{- $variantcontent := print `@import "variables.css` $assetBusting `";` "\n\n" .Content }} {{- range $page.Site.Params.boxStyle }} {{- $identifier := upper .identifier }} {{- $identifierl := lower .identifier }} {{- $variantcontent = print $variantcontent "\n.cstyle." $identifierl " {" "\n --VARIABLE-BOX-color: var(--INTERNAL-BOX-" $identifier "-color);" "\n --VARIABLE-BOX-TEXT-color: var(--INTERNAL-BOX-" $identifier "-TEXT-color);" "\n}\n" }} {{- end }} {{- $cssres := $variantcontent | resources.FromString "css/variant.css" }} {{- /* the following code causes Hugo to generate our css file - although it is in comments */}} {{- end }} {{- /* - The ugly rest */}} {{- $printres := resources.Get "css/print.css" }} {{- $cssres := $printres | resources.ExecuteAsTemplate "css/print.css" (dict) }} {{- /* the following code causes Hugo to generate our css file - although it is in comments */}} {{- $formatprintres := resources.Get "css/format-print.css" }} {{- $cssres := $formatprintres | resources.ExecuteAsTemplate "css/format-print.css" (dict "themevariant" (index (collections.Where $themevariants "identifier" "relearn-light") 0)) }} {{- /* the following code causes Hugo to generate our css file - although it is in comments */}} {{- $swaggerres := resources.Get "css/swagger.css" }} {{- $cssres := $swaggerres | resources.ExecuteAsTemplate "css/swagger.css" (dict) }} {{- /* the following code causes Hugo to generate our css file - although it is in comments */}} {{- return collections.Where $themevariants "config" true }} {{- define "partials/get-theme-details.html" }} {{- $themevariant := .themevariant }} {{- $identifier := .identifier }} {{- $themecontent := "" }} {{- with resources.Get (printf "css/theme-%s.css" $identifier) }} {{- $themecontent = .Content }} {{- else }} {{- errorf "\"theme-%s.css\": file not found in \"assets/css\"; if you are migrating from a theme version older thant 6.0.0, you have to move it over from \"static/css\"" $identifier }} {{- end }} {{- $chroma := "" }} {{- range findRESubmatch `[ \t]*@import\s+[^$]*?chroma-([^.]*?)\.css` $themecontent }} {{- $chroma = index . 1 }} {{- errorf "\"theme-%s.css\": UNSUPPORTED use of @import for chroma stylesheet, instead use '--CODE-theme: %s;'; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration#600" $identifier $chroma }} {{- end }} {{- range findRESubmatch `[ \t]*@import\s+[^$]*?theme-([^.]*?)\.css` $themecontent }} {{- $subidentifier := index . 1 }} {{- $themevariant = partial "get-theme-details.html" (dict "themevariant" $themevariant "identifier" $subidentifier) }} {{- $chroma = $themevariant.chroma }} {{- end }} {{- range findRESubmatch `[ \t]*--CODE-theme\s*:\s*([^;]*?)\s*;` $themecontent }} {{- $chroma = index . 1 }} {{- end }} {{- if not $chroma }} {{- $chroma = "relearn-light" }} {{- $themecontent = replaceRE `(:root\s*\{[ \t]*)(\s*)` (printf "${1}${2}--CODE-theme: %s;${2}" $chroma) $themecontent }} {{- end }} {{- $themevariant = collections.Merge $themevariant (dict "chroma" $chroma) }} {{- $cssres := $themecontent | resources.FromString (printf "css/theme-%s.css" $identifier) }} {{- /* the following code causes Hugo to generate our css file - although it is in comments */}} {{- return $themevariant }} {{- end }}