1
1
defmodule Tableau.PostExtension do
2
2
@ moduledoc """
3
- Markdown files (with YAML frontmatter) in the configured posts directory will be automatically compiled into Tableau pages.
3
+ Content files (with YAML frontmatter) in the configured posts directory will be automatically compiled into Tableau pages.
4
4
5
5
Certain frontmatter keys are required and all keys are passed as options to the `Tableau.Page`.
6
6
7
7
## Options
8
8
9
9
Frontmatter is compiled with `yaml_elixir` and all keys are converted to atoms.
10
10
11
- * `:title` - The title of the post. Falls back to the first `<h1>` tag if present in the body.
11
+ * `:title` - The title of the post.
12
12
* `:permalink` - The permalink of the post. `:title` will be replaced with the posts title and non alphanumeric characters removed. Optional.
13
13
* `:date` - A string representation of an Elixir `NaiveDateTime`, often presented as a `sigil_N`. This will be converted to your configured timezone.
14
14
* `:layout` - A string representation of a Tableau layout module.
@@ -51,7 +51,7 @@ defmodule Tableau.PostExtension do
51
51
```
52
52
53
53
54
- ## Other markup formats
54
+ ## Content formats
55
55
56
56
If you're interested in authoring your content in something other than markdown (or you want to use a different markdown parser), you can configure
57
57
a converter for your format in the global configuration.
@@ -70,20 +70,46 @@ defmodule Tableau.PostExtension do
70
70
71
71
use Tableau.Extension , key: :posts , type: :pre_build , priority: 100
72
72
73
+ alias Tableau.Extension.Common
74
+ alias Tableau.PostExtension.Post
75
+
76
+ @ config Map . new ( Application . compile_env ( :tableau , Tableau.PostExtension , % { } ) )
77
+
73
78
def run ( token ) do
74
- posts = Tableau.PostExtension.Posts . posts ( )
79
+ { :ok , config } = Tableau.PostExtension.Config . new ( @ config )
80
+
81
+ { :ok , % { converters: converters } } = Tableau.Config . get ( )
82
+
83
+ exts = Enum . map_join ( converters , "," , fn { ext , _ } -> to_string ( ext ) end )
84
+
85
+ posts =
86
+ config . dir
87
+ |> Path . join ( "**/*.{#{ exts } }" )
88
+ |> Common . paths ( )
89
+ |> Common . entries ( fn % { path: path , ext: ext , front_matter: front_matter , pre_convert_body: pre_convert_body } ->
90
+ renderer = fn assigns -> converters [ ext ] . convert ( path , front_matter , pre_convert_body , assigns ) end
91
+
92
+ { Post . build ( path , front_matter , pre_convert_body ) , renderer }
93
+ end )
94
+ |> then ( fn posts ->
95
+ if config . future do
96
+ posts
97
+ else
98
+ Enum . reject ( posts , fn { post , _ } -> DateTime . after? ( post . date , DateTime . utc_now ( ) ) end )
99
+ end
100
+ end )
75
101
76
102
graph =
77
103
Tableau.Graph . insert (
78
104
token . graph ,
79
- Enum . map ( posts , fn post ->
80
- % Tableau.Page { parent: post . layout , permalink: post . permalink , template: post . body , opts: post }
105
+ Enum . map ( posts , fn { post , renderer } ->
106
+ % Tableau.Page { parent: post . layout , permalink: post . permalink , template: renderer , opts: post }
81
107
end )
82
108
)
83
109
84
110
{ :ok ,
85
111
token
86
- |> Map . put ( :posts , posts )
112
+ |> Map . put ( :posts , posts |> Enum . unzip ( ) |> elem ( 0 ) )
87
113
|> Map . put ( :graph , graph ) }
88
114
end
89
115
end
0 commit comments