]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/layout.rs
Rollup merge of #66411 - RalfJung:forget, r=sfackler
[rust.git] / src / librustdoc / html / layout.rs
1 use std::path::PathBuf;
2
3 use crate::externalfiles::ExternalHtml;
4 use crate::html::escape::Escape;
5 use crate::html::render::ensure_trailing_slash;
6 use crate::html::format::{Buffer, Print};
7
8 #[derive(Clone)]
9 pub struct Layout {
10     pub logo: String,
11     pub favicon: String,
12     pub external_html: ExternalHtml,
13     pub krate: String,
14     /// The given user css file which allow to customize the generated
15     /// documentation theme.
16     pub css_file_extension: Option<PathBuf>,
17     /// If false, the `select` element to have search filtering by crates on rendered docs
18     /// won't be generated.
19     pub generate_search_filter: bool,
20 }
21
22 pub struct Page<'a> {
23     pub title: &'a str,
24     pub css_class: &'a str,
25     pub root_path: &'a str,
26     pub static_root_path: Option<&'a str>,
27     pub description: &'a str,
28     pub keywords: &'a str,
29     pub resource_suffix: &'a str,
30     pub extra_scripts: &'a [&'a str],
31     pub static_extra_scripts: &'a [&'a str],
32 }
33
34 pub fn render<T: Print, S: Print>(
35     layout: &Layout,
36     page: &Page<'_>,
37     sidebar: S,
38     t: T,
39     themes: &[PathBuf],
40 ) -> String {
41     let static_root_path = page.static_root_path.unwrap_or(page.root_path);
42     format!("<!DOCTYPE html>\
43 <html lang=\"en\">\
44 <head>\
45     <meta charset=\"utf-8\">\
46     <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\
47     <meta name=\"generator\" content=\"rustdoc\">\
48     <meta name=\"description\" content=\"{description}\">\
49     <meta name=\"keywords\" content=\"{keywords}\">\
50     <title>{title}</title>\
51     <link rel=\"stylesheet\" type=\"text/css\" href=\"{static_root_path}normalize{suffix}.css\">\
52     <link rel=\"stylesheet\" type=\"text/css\" href=\"{static_root_path}rustdoc{suffix}.css\" \
53           id=\"mainThemeStyle\">\
54     {themes}\
55     <link rel=\"stylesheet\" type=\"text/css\" href=\"{static_root_path}dark{suffix}.css\">\
56     <link rel=\"stylesheet\" type=\"text/css\" href=\"{static_root_path}light{suffix}.css\" \
57           id=\"themeStyle\">\
58     <script src=\"{static_root_path}storage{suffix}.js\"></script>\
59     <noscript><link rel=\"stylesheet\" href=\"{static_root_path}noscript{suffix}.css\"></noscript>\
60     {css_extension}\
61     {favicon}\
62     {in_header}\
63     <style type=\"text/css\">\
64     #crate-search{{background-image:url(\"{static_root_path}down-arrow{suffix}.svg\");}}\
65     </style>\
66 </head>\
67 <body class=\"rustdoc {css_class}\">\
68     <!--[if lte IE 8]>\
69     <div class=\"warning\">\
70         This old browser is unsupported and will most likely display funky \
71         things.\
72     </div>\
73     <![endif]-->\
74     {before_content}\
75     <nav class=\"sidebar\">\
76         <div class=\"sidebar-menu\">&#9776;</div>\
77         {logo}\
78         {sidebar}\
79     </nav>\
80     <div class=\"theme-picker\">\
81         <button id=\"theme-picker\" aria-label=\"Pick another theme!\">\
82             <img src=\"{static_root_path}brush{suffix}.svg\" \
83                  width=\"18\" \
84                  alt=\"Pick another theme!\">\
85         </button>\
86         <div id=\"theme-choices\"></div>\
87     </div>\
88     <script src=\"{static_root_path}theme{suffix}.js\"></script>\
89     <nav class=\"sub\">\
90         <form class=\"search-form\">\
91             <div class=\"search-container\">\
92                 <div>{filter_crates}\
93                     <input class=\"search-input\" name=\"search\" \
94                            disabled \
95                            autocomplete=\"off\" \
96                            spellcheck=\"false\" \
97                            placeholder=\"Click or press ‘S’ to search, ‘?’ for more options…\" \
98                            type=\"search\">\
99                 </div>\
100                 <a id=\"settings-menu\" href=\"{root_path}settings.html\">\
101                     <img src=\"{static_root_path}wheel{suffix}.svg\" \
102                          width=\"18\" \
103                          alt=\"Change settings\">\
104                 </a>\
105             </div>\
106         </form>\
107     </nav>\
108     <section id=\"main\" class=\"content\">{content}</section>\
109     <section id=\"search\" class=\"content hidden\"></section>\
110     <section class=\"footer\"></section>\
111     {after_content}\
112     <script>\
113         window.rootPath = \"{root_path}\";\
114         window.currentCrate = \"{krate}\";\
115     </script>\
116     <script src=\"{root_path}aliases{suffix}.js\"></script>\
117     <script src=\"{static_root_path}main{suffix}.js\"></script>\
118     {static_extra_scripts}\
119     {extra_scripts}\
120     <script defer src=\"{root_path}search-index{suffix}.js\"></script>\
121 </body>\
122 </html>",
123     css_extension = if layout.css_file_extension.is_some() {
124         format!("<link rel=\"stylesheet\" \
125                        type=\"text/css\" \
126                        href=\"{static_root_path}theme{suffix}.css\">",
127                 static_root_path = static_root_path,
128                 suffix=page.resource_suffix)
129     } else {
130         String::new()
131     },
132     content   = Buffer::html().to_display(t),
133     static_root_path = static_root_path,
134     root_path = page.root_path,
135     css_class = page.css_class,
136     logo      = {
137         let p = format!("{}{}", page.root_path, layout.krate);
138         let p = ensure_trailing_slash(&p);
139         if layout.logo.is_empty() {
140             format!("<a href='{path}index.html'>\
141                      <div class='logo-container'>\
142                      <img src='{static_root_path}rust-logo{suffix}.png' alt='logo'></div></a>",
143                     path=p,
144                     static_root_path=static_root_path,
145                     suffix=page.resource_suffix)
146         } else {
147             format!("<a href='{}index.html'>\
148                      <div class='logo-container'><img src='{}' alt='logo'></div></a>",
149                     p,
150                     layout.logo)
151         }
152     },
153     title     = page.title,
154     description = page.description,
155     keywords = page.keywords,
156     favicon   = if layout.favicon.is_empty() {
157         format!(r#"<link rel="shortcut icon" href="{static_root_path}favicon{suffix}.ico">"#,
158                 static_root_path=static_root_path,
159                 suffix=page.resource_suffix)
160     } else {
161         format!(r#"<link rel="shortcut icon" href="{}">"#, layout.favicon)
162     },
163     in_header = layout.external_html.in_header,
164     before_content = layout.external_html.before_content,
165     after_content = layout.external_html.after_content,
166     sidebar   = Buffer::html().to_display(sidebar),
167     krate     = layout.krate,
168     themes = themes.iter()
169                    .filter_map(|t| t.file_stem())
170                    .filter_map(|t| t.to_str())
171                    .map(|t| format!(r#"<link rel="stylesheet" type="text/css" href="{}.css">"#,
172                                     Escape(&format!("{}{}{}",
173                                                     static_root_path,
174                                                     t,
175                                                     page.resource_suffix))))
176                    .collect::<String>(),
177     suffix=page.resource_suffix,
178     static_extra_scripts=page.static_extra_scripts.iter().map(|e| {
179         format!("<script src=\"{static_root_path}{extra_script}.js\"></script>",
180                 static_root_path=static_root_path,
181                 extra_script=e)
182     }).collect::<String>(),
183     extra_scripts=page.extra_scripts.iter().map(|e| {
184         format!("<script src=\"{root_path}{extra_script}.js\"></script>",
185                 root_path=page.root_path,
186                 extra_script=e)
187     }).collect::<String>(),
188     filter_crates=if layout.generate_search_filter {
189         "<select id=\"crate-search\">\
190             <option value=\"All crates\">All crates</option>\
191         </select>"
192     } else {
193         ""
194     },
195     )
196 }
197
198 pub fn redirect(url: &str) -> String {
199     // <script> triggers a redirect before refresh, so this is fine.
200     format!(
201 r##"<!DOCTYPE html>
202 <html lang="en">
203 <head>
204     <meta http-equiv="refresh" content="0;URL={url}">
205 </head>
206 <body>
207     <p>Redirecting to <a href="{url}">{url}</a>...</p>
208     <script>location.replace("{url}" + location.search + location.hash);</script>
209 </body>
210 </html>"##,
211     url = url,
212     )
213 }