-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow listing outside URLs in extras #2103
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -209,6 +209,7 @@ defmodule ExDoc.Formatter.HTML do | |
defp generate_extras(extras, config) do | ||
generated_extras = | ||
extras | ||
|> Enum.reject(&is_map_key(&1, :url)) | ||
|> with_prev_next() | ||
|> Enum.map(fn {node, prev, next} -> | ||
filename = "#{node.id}.html" | ||
|
@@ -349,6 +350,7 @@ defmodule ExDoc.Formatter.HTML do | |
|
||
extras = | ||
config.extras | ||
|> Enum.map(&normalize_extras/1) | ||
|> Task.async_stream( | ||
&build_extra(&1, groups, language, autolink_opts, source_url_pattern), | ||
timeout: :infinity | ||
|
@@ -384,10 +386,31 @@ defmodule ExDoc.Formatter.HTML do | |
end) | ||
end | ||
|
||
defp normalize_extras(base) when is_binary(base), do: {base, %{}} | ||
defp normalize_extras({base, opts}), do: {base, Map.new(opts)} | ||
|
||
defp disambiguate_id(extra, discriminator) do | ||
Map.put(extra, :id, "#{extra.id}-#{discriminator}") | ||
end | ||
|
||
defp build_extra({input, %{url: _} = input_options}, groups, _lang, _auto, _url_pattern) do | ||
input = to_string(input) | ||
title = input_options[:title] || filename_to_title(input) | ||
group = GroupMatcher.match_extra(groups, input) | ||
|
||
# TODO: Can we make the content/source a link? | ||
|
||
%{ | ||
group: group, | ||
id: Utils.text_to_id(title), | ||
source_path: input_options[:url], | ||
source_url: input_options[:url], | ||
Comment on lines
+406
to
+407
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These probably aren't necessary now. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, we probably don't need |
||
title: title, | ||
title_content: title, | ||
url: input_options[:url] | ||
} | ||
end | ||
|
||
defp build_extra({input, input_options}, groups, language, autolink_opts, source_url_pattern) do | ||
input = to_string(input) | ||
id = input_options[:filename] || input |> filename_to_title() |> Utils.text_to_id() | ||
|
@@ -447,10 +470,6 @@ defmodule ExDoc.Formatter.HTML do | |
} | ||
end | ||
|
||
defp build_extra(input, groups, language, autolink_opts, source_url_pattern) do | ||
build_extra({input, []}, groups, language, autolink_opts, source_url_pattern) | ||
end | ||
|
||
defp normalize_search_data!(nil), do: nil | ||
|
||
defp normalize_search_data!(search_data) when is_list(search_data) do | ||
|
@@ -602,7 +621,15 @@ defmodule ExDoc.Formatter.HTML do | |
|
||
{path, opts} -> | ||
base = path |> to_string() |> Path.basename() | ||
{base, opts[:filename] || Utils.text_to_id(Path.rootname(base))} | ||
|
||
txid = | ||
cond do | ||
filename = opts[:filename] -> filename | ||
url = opts[:url] -> url | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am pretty sure you want to skip the |
||
true -> Utils.text_to_id(Path.rootname(base)) | ||
end | ||
|
||
{base, txid} | ||
end) | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,36 +18,8 @@ defmodule ExDoc.Formatter.HTML.SearchData do | |
["searchData=" | ExDoc.Utils.to_json(data)] | ||
end | ||
|
||
defp extra(map) do | ||
if custom_search_data = map[:search_data] do | ||
extra_search_data(map, custom_search_data) | ||
else | ||
Comment on lines
-22
to
-24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added a clause for this rather than a conditional in the function body. |
||
{intro, sections} = extract_sections_from_markdown(map.source) | ||
|
||
intro_json_item = | ||
encode( | ||
"#{map.id}.html", | ||
map.title, | ||
:extras, | ||
intro | ||
) | ||
|
||
section_json_items = | ||
for {header, body} <- sections do | ||
encode( | ||
"#{map.id}.html##{Utils.text_to_id(header)}", | ||
header <> " - #{map.title}", | ||
:extras, | ||
body | ||
) | ||
end | ||
|
||
[intro_json_item | section_json_items] | ||
end | ||
end | ||
|
||
defp extra_search_data(map, custom_search_data) do | ||
Enum.map(custom_search_data, fn item -> | ||
defp extra(%{search_data: search_data} = map) when is_list(search_data) do | ||
Enum.map(search_data, fn item -> | ||
link = | ||
if item.anchor === "" do | ||
"#{map.id}.html" | ||
|
@@ -59,6 +31,34 @@ defmodule ExDoc.Formatter.HTML.SearchData do | |
end) | ||
end | ||
|
||
defp extra(%{url: url} = map) do | ||
[encode("#{map.id}", map.title, :extras, url)] | ||
end | ||
|
||
defp extra(map) do | ||
{intro, sections} = extract_sections_from_markdown(map.source) | ||
|
||
intro_json_item = | ||
encode( | ||
"#{map.id}.html", | ||
map.title, | ||
:extras, | ||
intro | ||
) | ||
|
||
section_json_items = | ||
for {header, body} <- sections do | ||
encode( | ||
"#{map.id}.html##{Utils.text_to_id(header)}", | ||
header <> " - #{map.title}", | ||
:extras, | ||
body | ||
) | ||
end | ||
|
||
[intro_json_item | section_json_items] | ||
end | ||
|
||
defp module(%ExDoc.ModuleNode{} = node) do | ||
{intro, sections} = extract_sections(node.doc_format, node) | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is purely for pattern matching to flatten out
build_extra/5
. The alternative was a cond inbuild_extra/5
, but this seemed a little clearer.