Skip to content

Commit 93e024b

Browse files
committed
Embed metadata about the current page instead of reading from the rendered html
1 parent 6bef872 commit 93e024b

File tree

2 files changed

+11
-22
lines changed

2 files changed

+11
-22
lines changed

static/index.js

+3-22
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
function formatCrateName(crateTitleAndVersion) {
2-
const stringParts = crateTitleAndVersion.split(" ", 2);
3-
return stringParts[0] + ' = "' + stringParts[1] + '"';
4-
}
5-
61
(function() {
72
const clipboard = document.getElementById("clipboard");
83
if (clipboard) {
@@ -14,23 +9,9 @@ function formatCrateName(crateTitleAndVersion) {
149
clipboard.innerHTML = resetClipboardIcon;
1510
}
1611

17-
function copyTextHandler() {
18-
const crateTitleAndVersion = document.getElementById("crate-title");
19-
// On rustdoc pages, we use `textTransform: uppercase`, which copies as uppercase.
20-
// To avoid that, reset the styles temporarily.
21-
const oldTransform = crateTitleAndVersion.style.textTransform;
22-
crateTitleAndVersion.style.textTransform = "none";
23-
const temporaryInput = document.createElement("input");
24-
25-
temporaryInput.type = "text";
26-
temporaryInput.value = formatCrateName(crateTitleAndVersion.innerText);
27-
28-
document.body.append(temporaryInput);
29-
temporaryInput.select();
30-
document.execCommand("copy");
31-
32-
temporaryInput.remove();
33-
crateTitleAndVersion.style.textTransform = oldTransform;
12+
async function copyTextHandler() {
13+
const metadata = JSON.parse(document.getElementById("crate-metadata").innerText)
14+
await navigator.clipboard.writeText(`${metadata.name} = "${metadata.version}"`)
3415

3516
clipboard.textContent = "✓";
3617
if (resetClipboardTimeout !== null) {

templates/rustdoc/topbar.html

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@
1313
{%- include "header/topbar_begin.html" -%}{#
1414
extra whitespace unremovable, need to use html tags unaffacted by whitespace T_T
1515
#}<ul class="pure-menu-list">
16+
<script id="crate-metadata" type="application/json">
17+
{# the only text that needs escaping in a <script> is `</`, none of the
18+
values below can include that sequence #}
19+
{
20+
"name": {{ metadata.name | json_encode() | safe }},
21+
"version": {{ metadata.version | json_encode() | safe }},
22+
}
23+
</script>
1624
{%- if krate -%}
1725
<li class="pure-menu-item pure-menu-has-children">
1826
<a href="#" class="pure-menu-link crate-name" title="{{ krate.description }}">

0 commit comments

Comments
 (0)