Skip to content

Commit c6f6444

Browse files
authored
feat: extension priority (#16)
1 parent d6d77d9 commit c6f6444

File tree

3 files changed

+37
-10
lines changed

3 files changed

+37
-10
lines changed

lib/mix/tasks/tableau.build.ex

+1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,6 @@ defmodule Mix.Tasks.Tableau.Build do
4949
match?({:ok, :pre_build}, Tableau.Extension.type(mod)) do
5050
mod
5151
end
52+
|> Enum.sort_by(& &1.__tableau_extension_priority__())
5253
end
5354
end

lib/tableau/extension.ex

+9-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@ defmodule Tableau.Extension do
44
55
An extension can be used to generate other kinds of content.
66
7+
## Types
8+
79
There are currently the following extension types:
810
911
- `:pre_build` - executed before tableau builds your site and writes anything to disk.
1012
13+
## Priority
14+
15+
Extensions can be assigned a numeric priority for used with sorting.
16+
1117
```elixir
1218
defmodule MySite.PostsExtension do
13-
use Tableau.Extension, type: :pre_build
19+
use Tableau.Extension, type: :pre_build, priority: 300
1420
1521
def run(_site) do
1622
posts = Path.wildcard("_posts/**/*.md")
@@ -37,11 +43,12 @@ defmodule Tableau.Extension do
3743
@callback run(map()) :: :ok | :error
3844

3945
defmacro __using__(opts) do
40-
opts = Keyword.validate!(opts, [:type])
46+
opts = Keyword.validate!(opts, [:type, :priority])
4147

4248
prelude =
4349
quote do
4450
def __tableau_extension_type__, do: unquote(opts)[:type]
51+
def __tableau_extension_priority__, do: unquote(opts)[:priority] || 0
4552
end
4653

4754
postlude =

test/mix/tasks/tableau.build_test.exs

+27-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
defmodule Mix.Tasks.Tableau.LogExtension do
2-
use Tableau.Extension, type: :pre_build
2+
use Tableau.Extension, type: :pre_build, priority: 200
33

44
def run(_site) do
5-
IO.puts("hi!")
5+
IO.inspect(System.monotonic_time(), label: "second")
66
:ok
77
end
88
end
99

1010
defmodule Mix.Tasks.Tableau.FailExtension do
11-
use Tableau.Extension, type: :pre_build
11+
use Tableau.Extension, type: :pre_build, priority: 100
1212

1313
def run(_site) do
14+
IO.inspect(System.monotonic_time(), label: "first")
1415
:error
1516
end
1617
end
@@ -109,11 +110,29 @@ defmodule Mix.Tasks.Tableau.BuildTest do
109110

110111
@tag :tmp_dir
111112
test "renders all pages", %{tmp_dir: out} do
112-
assert capture_io(fn ->
113-
assert capture_log(fn ->
114-
_documents = Build.run(["--out", out])
115-
end) =~ "FailExtension failed to run"
116-
end) =~ "hi!"
113+
{log, io} =
114+
with_io(fn ->
115+
{_, log} =
116+
with_log(fn ->
117+
_documents = Build.run(["--out", out])
118+
end)
119+
120+
log
121+
end)
122+
123+
assert [{"first", first}, {"second", second}] =
124+
io
125+
|> String.split("\n", trim: true)
126+
|> Enum.map(fn line ->
127+
[order, time] =
128+
Regex.run(~r/^(first|second): (.*)$/, line, capture: :all_but_first)
129+
130+
{order, String.to_integer(time)}
131+
end)
132+
133+
assert first < second
134+
135+
assert log =~ "FailExtension failed to run"
117136

118137
assert File.exists?(Path.join(out, "/index.html"))
119138
assert File.exists?(Path.join(out, "/about/index.html"))

0 commit comments

Comments
 (0)