-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathdocs-rs.js
239 lines (220 loc) · 10 KB
/
docs-rs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
// rawCrateName v.s crateName
// See: https://docs.rs/actix-web/3.2.0/actix_web/
// Here actix-web is the rawCrateName, actix_web is the crateName.
// The rawCrateName mainly for Cargo.toml url to parse feature flags.
let pathname = location.pathname.replace("/crate", "");
let [rawCrateName, crateVersion] = pathname.slice(1).split("/");
crateName = rawCrateName.replaceAll("-", "_");
// A crate version which added to the extension.
let installedVersion = undefined;
const DOC_HEADERS_SELECTOR = "main .docblock>.section-header, #main>.docblock>.section-header, #main>.top-doc>.docblock>.section-header";
// Highlight the TOC
function highlight() {
let headers = Array.from(document.querySelectorAll(DOC_HEADERS_SELECTOR))
.filter(header => ["H1", "H2", "H3"].includes(header.tagName));
const scrollHandler = entries => {
entries.forEach(entry => {
if (entry.intersectionRatio > 0) {
document.querySelectorAll(".rse-doc-toc-item").forEach((item) => {
item.classList.remove("rse-active");
});
let url = new URL(entry.target.firstChild.href);
let link = document.querySelector(`.rse-doc-toc-item a[href$="${url.hash}"]`)
if (link) {
let target = link.parentElement;
target.classList.add("rse-active");
target.scrollIntoView({ behavior: "auto", block: "nearest" });
}
}
});
};
const observer = new IntersectionObserver(scrollHandler);
headers.forEach(item => observer.observe(item));
}
// Show TOC of docs.rs
document.addEventListener("DOMContentLoaded", () => {
// Don't render TOC if the screen width less than 1500px.
if (window.innerWidth < 1500) return;
let headers = Array.from(document.querySelectorAll(DOC_HEADERS_SELECTOR))
.filter(header => ["H1", "H2", "H3"].includes(header.tagName));
if (!headers || headers.length < 3) {
// Don't show TOC if headers less than 3.
return;
}
let mainBlock = document.querySelector("main, #main");
let ul = document.createElement("ul");
ul.classList.add("rse-doc-toc");
for (let header of headers) {
let link = header.firstChild;
let item = document.createElement("li");
item.innerHTML = `<div class="rse-doc-toc-item rse-doc-toc-${header.tagName.toLowerCase()}">
<a href="${link.href}">${link.textContent}</a>
</div>`;
ul.appendChild(item);
}
mainBlock.insertAdjacentElement("afterend", ul);
highlight();
});
// Using separate event listener to avoid network requesting latency for feature flags menu enhancement.
document.addEventListener("DOMContentLoaded", async() => {
let menus = document.querySelector("form>.pure-menu-list:not(.pure-menu-right)");
if (!menus) return;
let featureFlagsMenu = Array.from(menus.children).find(menu => menu.textContent.toLowerCase().includes("feature flags"));
if (featureFlagsMenu) {
// Rearrange the featureFlagsMenu to order 2th.
menus.insertBefore(featureFlagsMenu, menus.firstElementChild.nextElementSibling);
featureFlagsMenu.classList.add("pure-menu-has-children", "pure-menu-allow-hover");
await enhanceFeatureFlagsMenu(featureFlagsMenu);
}
});
document.addEventListener("DOMContentLoaded", async() => {
let menus = document.querySelector("form>.pure-menu-list:not(.pure-menu-right)");
if (!menus) return;
// Since this PR (https://github.com/rust-lang/docs.rs/pull/1527) merged,
// the latest version path has changed:
// from https://docs.rs/tokio/1.14.0/tokio/ to https://docs.rs/tokio/latest/tokio/
//
// If we parse the crate version from url is 'latest',
// we should reparse it from the DOM to get the correct value.
if (crateVersion === 'latest') {
let versionText = document.querySelector('.nav-container a.crate-name>.title').textContent;
crateVersion = versionText.split('-')[1];
}
// Exclude /crate/** pages
if (menus.children.length >= 3 && !location.pathname.includes("/crate/")) {
chrome.runtime.sendMessage({ crateName, action: "crate:check" }, crate => {
if (crate) {
insertAddToExtensionElement(getState(crate.version));
} else {
insertAddToExtensionElement("need-to-install");
}
});
}
});
async function enhanceFeatureFlagsMenu(menu) {
// Use rawCrateName to fetch the Cargo.toml, otherwise will get 404.
let cargoTomUrl = `https://docs.rs/crate/${rawCrateName}/${crateVersion}/source/Cargo.toml`;
let response = await fetch(cargoTomUrl);
let features = parseCargoFeatures(await response.text());
let html = `<div style="padding: 1rem"><p>
This crate has no explicit-declared feature flag.
<br>
Check its <a href="${cargoTomUrl}">Cargo.toml</a> to learn more.
</p></div>`;
if (features.length > 0) {
let tbody = features.map(([name, flags]) => {
return `<tr class="module-item">
<td class="docblock-short">
<span class="stab portability"><code style="white-space: nowrap;">${name}</code></span>
</td>
<td>=</td>
<td>${flags}</td>
</tr>`
}).join("");
html = `<table class="feature-flags-table">
<tbody>${tbody}</tbody>
</table>`;
}
menu.firstElementChild.insertAdjacentHTML("afterend",
`
<div class="pure-menu-children feature-flags-content" role="menu">
${html}
</div>
`);
}
/**
* Compare the installed version with the current page's version to get the state.
* @param version the installed version
* @returns string outdated|latest|need-to-install
*/
function getState(version) {
installedVersion = version;
if (installedVersion) {
return Semver.compareVersion(installedVersion, crateVersion) === -1 ? "outdated" : "latest";
} else {
return "need-to-install";
}
}
function insertAddToExtensionElement(state) {
// Remove previous element.
let el = document.querySelector(".add-to-extension");
if (el && el.parentElement) {
el.parentElement.remove();
}
let menu = document.querySelector(".pure-menu-list:not(.pure-menu-right)");
let li = document.createElement("li");
li.classList.add("pure-menu-item", "pure-menu-has-children", "pure-menu-allow-hover");
li.onclick = () => {
// Toggle search index added state
if (state === "latest") {
chrome.runtime.sendMessage({ crateName, action: "crate:remove" }, response => {
insertAddToExtensionElement(getState(undefined));
});
} else {
injectScripts(["script/add-search-index.js"]);
}
};
let content, iconAttributes, iconFile;
if (state === "latest") {
content = `<p>
You already added this crate (v${installedVersion}). Click again to remove it.
Or click
<span id="rse-here" style="text-decoration: underline; cursor: pointer">here</span>
to manage all your indexed crates.
</p>`;
iconAttributes = `class="fa-svg fa-svg-fw" style="color:green"`;
iconFile = SVG_CHECK_CIRCLE;
} else if (state === "outdated") {
content = `<p>You current version v${installedVersion} is outdated. Click to update to the v${crateVersion}.</p>`;
iconAttributes = `class="fa-svg fa-svg-fw" style="color:#e57300"`;
iconFile = SVG_ARROW_UP_CIRCLE;
} else if (state === "error") {
// The error case: the user fail to install the crate.
content = `<p>Oops! Some error happened. You can try again. <br><br>Or check the console and file an issue to report the error.</p>`;
iconAttributes = `class="fa-svg fa-svg-fw" style="color:#e62f07"`;
iconFile = SVG_ERROR;
} else {
// The default case: need-to-install.
content = `<p>Add this crate to Rust Search Extension then you can search it in the address bar.</p>`;
iconAttributes = `class="fa-svg fa-svg-fw" style="color:#121212"`;
iconFile = SVG_PLUS_CIRCLE;
}
li.innerHTML = `<div class="add-to-extension"
aria-label="Add to Rust Search Extension">
<span ${iconAttributes}>${iconFile}</span><span class="title"> to Rust Search Extension</span>
</div>
<div class="pure-menu-children" role="menu">
<div class="add-to-extension-content" onclick="event.stopPropagation()">
${content}
</div>
</div>`;
menu.lastElementChild.insertAdjacentElement("afterend", li);
if (menu.querySelector("#rse-here")) {
menu.querySelector("#rse-here").onclick = () => {
let url = chrome.runtime.getURL("manage/crates.html");
chrome.runtime.sendMessage({ action: "open-url", url });
};
}
}
window.addEventListener("message", function(event) {
if (event.source === window &&
event.data &&
event.data.direction === "rust-search-extension") {
chrome.runtime.sendMessage({ action: "crate:add", ...event.data.message },
(response) => {
if (response) {
insertAddToExtensionElement(getState(event.data.message.crateVersion));
console.log("Congrats! This crate has been installed successfully!");
} else {
insertAddToExtensionElement("error");
console.error("Oops! We have failed to install this crate!", {
pathname,
crateVersion,
installedVersion,
data: event.data,
});
}
}
);
}
});