Pregenerate the icons with a mix task
This commit is contained in:
19
lib/mix/heroicons/generator_helpers.ex
Normal file
19
lib/mix/heroicons/generator_helpers.ex
Normal file
@ -0,0 +1,19 @@
|
||||
defmodule Mix.Heroicons.GeneratorHelpers do
|
||||
alias Mix.Heroicons.SvgProcessor
|
||||
|
||||
def icon_name(path) do
|
||||
Path.basename(path, ".svg")
|
||||
|> String.replace("-", "_")
|
||||
|> String.to_atom()
|
||||
end
|
||||
|
||||
def icon_body(path, svg_opts) do
|
||||
icon =
|
||||
File.read!(path)
|
||||
|> SvgProcessor.process(svg_opts)
|
||||
|
||||
<<"<svg ", body::binary>> = icon
|
||||
|
||||
body
|
||||
end
|
||||
end
|
20
lib/mix/heroicons/svg_processor.ex
Normal file
20
lib/mix/heroicons/svg_processor.ex
Normal file
@ -0,0 +1,20 @@
|
||||
defmodule Mix.Heroicons.SvgProcessor do
|
||||
alias Mix.Heroicons.SvgProcessor.Handler
|
||||
|
||||
@moduledoc """
|
||||
An SVG parser loosly based on https://github.com/svg/svgo
|
||||
|
||||
## Options
|
||||
|
||||
Currently supports the following options:
|
||||
* `:remove_dimensions` - remove the `width` and `height` attributes. Defaults to false.
|
||||
* `:sort_attributes` - sort the svg attributes by name. Default to false.
|
||||
* `:remove_attributes` - list of attributes to remove
|
||||
* `:add_attributes` - list of `{"name", "value"}` pairs of attributes to add
|
||||
"""
|
||||
|
||||
def process(svg, opts \\ []) do
|
||||
{:ok, stack} = Saxy.parse_string(svg, Handler, {[], opts})
|
||||
Saxy.encode!(stack)
|
||||
end
|
||||
end
|
107
lib/mix/heroicons/svg_processor/handler.ex
Normal file
107
lib/mix/heroicons/svg_processor/handler.ex
Normal file
@ -0,0 +1,107 @@
|
||||
defmodule Mix.Heroicons.SvgProcessor.Handler do
|
||||
@moduledoc false
|
||||
|
||||
@behaviour Saxy.Handler
|
||||
|
||||
@impl Saxy.Handler
|
||||
def handle_event(:start_document, _prolog, {stack, opts}) do
|
||||
{:ok, {stack, opts}}
|
||||
end
|
||||
|
||||
@impl Saxy.Handler
|
||||
def handle_event(:start_element, {"svg", attributes}, {stack, opts}) do
|
||||
attributes =
|
||||
remove_dimensions(attributes, Keyword.get(opts, :remove_dimensions))
|
||||
|> remove_attributes(Keyword.get(opts, :remove_attributes))
|
||||
|> add_attributes(Keyword.get(opts, :add_attributes))
|
||||
|> sort_attributes(Keyword.get(opts, :sort_attributes))
|
||||
|
||||
tag = {"svg", attributes, []}
|
||||
{:ok, {[tag | stack], opts}}
|
||||
end
|
||||
|
||||
def handle_event(:start_element, {"path", attributes}, {stack, opts}) do
|
||||
attributes = remove_attributes(attributes, Keyword.get(opts, :remove_path_attributes, []))
|
||||
tag = {"path", attributes, []}
|
||||
{:ok, {[tag | stack], opts}}
|
||||
end
|
||||
|
||||
def handle_event(:start_element, {tag_name, attributes}, {stack, opts}) do
|
||||
tag = {tag_name, attributes, []}
|
||||
{:ok, {[tag | stack], opts}}
|
||||
end
|
||||
|
||||
@impl Saxy.Handler
|
||||
def handle_event(:characters, chars, {stack, opts}) do
|
||||
[{tag_name, attributes, content} | stack] = stack
|
||||
|
||||
current = {tag_name, attributes, [chars | content]}
|
||||
|
||||
{:ok, {[current | stack], opts}}
|
||||
end
|
||||
|
||||
@impl Saxy.Handler
|
||||
def handle_event(:cdata, chars, {stack, opts}) do
|
||||
[{tag_name, attributes, content} | stack] = stack
|
||||
|
||||
current = {tag_name, attributes, [{:cdata, chars} | content]}
|
||||
|
||||
{:ok, {[current | stack], opts}}
|
||||
end
|
||||
|
||||
@impl Saxy.Handler
|
||||
def handle_event(:end_element, tag_name, {[{tag_name, attributes, content} | stack], opts}) do
|
||||
current = {tag_name, attributes, Enum.reverse(content)}
|
||||
|
||||
case stack do
|
||||
[] ->
|
||||
{:ok, {current, opts}}
|
||||
|
||||
[parent | rest] ->
|
||||
{parent_tag_name, parent_attributes, parent_content} = parent
|
||||
parent = {parent_tag_name, parent_attributes, [current | parent_content]}
|
||||
{:ok, {[parent | rest], opts}}
|
||||
end
|
||||
end
|
||||
|
||||
@impl Saxy.Handler
|
||||
def handle_event(:end_document, _, {stack, _opts}) do
|
||||
{:ok, stack}
|
||||
end
|
||||
|
||||
defp remove_dimensions(attributes, true) do
|
||||
Enum.reject(attributes, fn {attr, _value} ->
|
||||
attr == "width" || attr == "height"
|
||||
end)
|
||||
end
|
||||
|
||||
defp remove_dimensions(attributes, _) do
|
||||
attributes
|
||||
end
|
||||
|
||||
defp remove_attributes(attributes, nil) do
|
||||
attributes
|
||||
end
|
||||
|
||||
defp remove_attributes(attributes, remove_attrs) do
|
||||
Enum.reject(attributes, fn {attr, _value} ->
|
||||
attr in remove_attrs
|
||||
end)
|
||||
end
|
||||
|
||||
defp add_attributes(attributes, nil) do
|
||||
attributes
|
||||
end
|
||||
|
||||
defp add_attributes(attributes, add_attrs) do
|
||||
attributes ++ add_attrs
|
||||
end
|
||||
|
||||
defp sort_attributes(attributes, true) do
|
||||
Enum.sort_by(attributes, fn {attr, _value} -> attr end)
|
||||
end
|
||||
|
||||
defp sort_attributes(attributes, nil) do
|
||||
attributes
|
||||
end
|
||||
end
|
85
lib/mix/tasks/heroicons/generate.ex
Normal file
85
lib/mix/tasks/heroicons/generate.ex
Normal file
@ -0,0 +1,85 @@
|
||||
defmodule Mix.Tasks.Heroicons.Generate do
|
||||
use Mix.Task
|
||||
import Mix.Heroicons.GeneratorHelpers
|
||||
|
||||
@icon_sets [
|
||||
%{
|
||||
module: Heroicons.Outline,
|
||||
path: "lib/heroicons/outline.ex",
|
||||
moduledoc:
|
||||
"Outline style icons drawn with a stroke, packaged as Phoenix Components.\n\n For primary navigation and marketing sections, with an outlined appearance,\n designed to be rendered at 24x24.",
|
||||
icon_dir: "icons/outline/",
|
||||
# Following https://github.com/tailwindlabs/heroicons/blob/b933d51df1f27c35414389fea185e9bac0097481/svgo.24.outline.yaml
|
||||
svg_opts: [
|
||||
remove_dimensions: true,
|
||||
sort_attributes: true,
|
||||
remove_attributes: ["stroke"],
|
||||
remove_path_attributes: ["stroke-width"],
|
||||
add_attributes: [
|
||||
{"stroke-width", "1.5"},
|
||||
{"stroke", "currentColor"},
|
||||
{"aria-hidden", "true"}
|
||||
]
|
||||
]
|
||||
},
|
||||
%{
|
||||
module: Heroicons.Solid,
|
||||
path: "lib/heroicons/solid.ex",
|
||||
moduledoc:
|
||||
"Solid style icons drawn with fills, packaged as Phoenix Components.\n\n For primary navigation and marketing sections, with a filled appearance,\n designed to be rendered at 24x24.",
|
||||
icon_dir: "icons/solid/",
|
||||
# Following https://github.com/tailwindlabs/heroicons/blob/b933d51df1f27c35414389fea185e9bac0097481/svgo.24.solid.yaml
|
||||
svg_opts: [
|
||||
remove_dimensions: true,
|
||||
sort_attributes: true,
|
||||
remove_attributes: ["fill"],
|
||||
add_attributes: [
|
||||
{"fill", "currentColor"},
|
||||
{"aria-hidden", "true"}
|
||||
]
|
||||
]
|
||||
},
|
||||
%{
|
||||
module: Heroicons.Mini,
|
||||
path: "lib/heroicons/mini.ex",
|
||||
moduledoc: "Solid style icons drawn with fills, packaged as Phoenix Components.\n\n For smaller elements like buttons, form elements, and to support text,\n designed to be rendered at 20x20.",
|
||||
icon_dir: "icons/mini/",
|
||||
# Following https://github.com/tailwindlabs/heroicons/blob/b933d51df1f27c35414389fea185e9bac0097481/svgo.20.solid.yaml
|
||||
svg_opts: [
|
||||
remove_dimensions: true,
|
||||
sort_attributes: true,
|
||||
remove_attributes: ["fill"],
|
||||
add_attributes: [
|
||||
{"fill", "currentColor"},
|
||||
{"aria-hidden", "true"}
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
@impl Mix.Task
|
||||
def run(_args) do
|
||||
for %{module: module, path: path, moduledoc: moduledoc, icon_dir: icon_dir, svg_opts: svg_opts} <-
|
||||
@icon_sets do
|
||||
icon_paths =
|
||||
Path.absname(icon_dir, :code.priv_dir(:heroicons))
|
||||
|> Path.join("*.svg")
|
||||
|> Path.wildcard()
|
||||
|
||||
|
||||
Mix.Generator.create_file(
|
||||
path,
|
||||
EEx.eval_file(
|
||||
"priv/templates/icon_set.ex",
|
||||
[
|
||||
module: module,
|
||||
moduledoc: moduledoc,
|
||||
icon_paths: icon_paths,
|
||||
svg_opts: svg_opts
|
||||
],
|
||||
functions: __ENV__.functions
|
||||
)
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user