Skip to content
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

Add a Specifications macro and extract a special specification section to the Document #3518

Merged
merged 15 commits into from
May 3, 2021
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
285 changes: 191 additions & 94 deletions build/document-extractor.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions client/src/document/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { Doc } from "./types";
// Ingredients
import { Prose, ProseWithHeading } from "./ingredients/prose";
import { LazyBrowserCompatibilityTable } from "./lazy-bcd-table";
import { SpecificationSection } from "./spec-section";

// Misc
// Sub-components
Expand Down Expand Up @@ -232,6 +233,10 @@ function RenderDocumentBody({ doc }) {
{...section.value}
/>
);
} else if (section.type === "specifications") {
return (
<SpecificationSection key={`specifications${i}`} {...section.value} />
);
} else {
console.warn(section);
throw new Error(`No idea how to handle a '${section.type}' section`);
Expand Down
67 changes: 67 additions & 0 deletions client/src/document/spec-section.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
import { DisplayH2, DisplayH3 } from "./ingredients/utils";

export function SpecificationSection({
id,
title,
isH3,
specifications,
query,
}: {
id: string;
title: string;
isH3: boolean;
specifications: Array<{
title: string;
bcdSpecificationURL: string;
shortTitle: string;
}>;
query: string;
}) {
return (
<>
{title && !isH3 && <DisplayH2 id={id} title={title} />}
{title && isH3 && <DisplayH3 id={id} title={title} />}

{/* XXX We could have a third condition; the specURL worked but yielded
exactly 0 specifications. If that's the case, perhaps the messaging
should be different. */}
{specifications.length > 0 ? (
<table className="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
</tr>
</thead>
<tbody>
{specifications.map((spec) => (
<tr key={spec.bcdSpecificationURL}>
<td>
<a href={spec.bcdSpecificationURL}>
{spec.title} ({spec.shortTitle})
<br />{" "}
<small>#{spec.bcdSpecificationURL.split("#")[1]}</small>
</a>
</td>
</tr>
))}
</tbody>
</table>
) : (
<div className="notecard warning">
<h4>No specification found</h4>
<p>
No specification data found for <code>{query}</code>.<br />
<a href="#on-github">Check for problems with this page</a> or
contribute a missing <code>spec_url</code> to{" "}
<a href="https://github.com/mdn/browser-compat-data">
mdn/browser-compat-data
</a>
. Also make sure the specification is included in{" "}
<a href="https://github.com/w3c/browser-specs">w3c/browser-specs</a>
.
</p>
</div>
)}
</>
);
}
Elchi3 marked this conversation as resolved.
Show resolved Hide resolved
25 changes: 25 additions & 0 deletions kumascript/macros/Specifications.ejs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<%
/*
Placeholder to render a specification section with spec_urls from BCD

Parameters

$0 – A query string indicating for which feature to retrieve specification URLs for.

Example calls

{{Specifications}}
{{Specifications("html.element.abbr")}}

*/

var query = $0 || env['browser-compat'];
if (!query) {
throw new Error("No first query argument or 'browser-compat' front-matter value passed");
}
var output = `<div class="bc-specs" data-bcd-query="${query}">
If you're able to see this, something went wrong on this page.
</div>`;
%>

<%-output%>
24 changes: 24 additions & 0 deletions kumascript/tests/macros/Specifications.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
const { assert, itMacro, describeMacro, lintHTML } = require("./utils");

const jsdom = require("jsdom");
const { JSDOM } = jsdom;

describeMacro("Specifications", function () {
itMacro("Outputs a simple div tag", async (macro) => {
const result = await macro.call("api.feature");
const dom = JSDOM.fragment(result);
assert.equal(
dom.querySelector("div.bc-specs").dataset.bcdQuery,
"api.feature"
);
assert.equal(
dom.querySelector("div.bc-specs").textContent.trim(),
"If you're able to see this, something went wrong on this page."
);
});

itMacro("Outputs valid HTML", async (macro) => {
const result = await macro.call("api.feature");
expect(lintHTML(result)).toBeFalsy();
});
});
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"@fast-csv/parse": "4.3.6",
"@mdn/browser-compat-data": "3.3.0",
"accept-language-parser": "1.5.0",
"browser-specs": "^1.34.2",
"chalk": "4.1.1",
"cheerio": "1.0.0-rc.6",
"cli-progress": "^3.9.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: Spec section extraction
browser-compat: javascript.builtins.Array.toLocaleString
slug: Web/Spec_Section_Extraction
---

<h2>Intro</h2>
<p>Text in Intro</p>

<h2 id="Specifications">Specifications</h2>

<p>{{Specifications}}</p>

<h2 id="Browser_compatibility">Browser compatibility</h2>

<p>{{Compat}}</p>

<h2 id="See_also">See also</h2>

<p>More stuff</p>
28 changes: 28 additions & 0 deletions testing/tests/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1019,6 +1019,34 @@ test("bcd table extraction followed by h3", () => {
expect(doc.body[4].value.isH3).toBeTruthy();
});

test("specifications and bcd extraction", () => {
const builtFolder = path.join(
buildRoot,
"en-us",
"docs",
"web",
"spec_section_extraction"
);
expect(fs.existsSync(builtFolder)).toBeTruthy();
const jsonFile = path.join(builtFolder, "index.json");
const { doc } = JSON.parse(fs.readFileSync(jsonFile));
expect(doc.body[0].type).toBe("prose");
expect(doc.body[1].type).toBe("specifications");
Elchi3 marked this conversation as resolved.
Show resolved Hide resolved
expect(doc.body[1].value.specifications[0].shortTitle).toBe("ECMAScript");
expect(doc.body[1].value.specifications[0].bcdSpecificationURL).toBe(
"https://tc39.es/ecma262/#sec-array.prototype.tolocalestring"
);
expect(doc.body[1].value.specifications[1].shortTitle).toBe(
"ECMAScript Internationalization API"
);
expect(doc.body[1].value.specifications[1].bcdSpecificationURL).toBe(
"https://tc39.es/ecma402/#sup-array.prototype.tolocalestring"
);
expect(doc.body[2].type).toBe("prose");
expect(doc.body[3].type).toBe("browser_compatibility");
expect(doc.body[4].type).toBe("prose");
});

test("headers within non-root elements is a 'sectioning' flaw", () => {
const builtFolder = path.join(
buildRoot,
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5413,6 +5413,11 @@ browser-process-hrtime@^1.0.0:
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==

browser-specs@^1.34.2:
version "1.35.1"
resolved "https://registry.yarnpkg.com/browser-specs/-/browser-specs-1.35.1.tgz#01c77221940b5d733995248438e869ca5342cc9c"
integrity sha512-y9rMHjHa2kXUOBqovbRHCQAQhCJARiPQYluiO3PBoBl4Wa7f0ukE72+zDBN7+0oYzdRyWngZaUtl2rqCVdZ1Aw==

browserify-aes@^1.0.0, browserify-aes@^1.0.4:
version "1.2.0"
resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
Expand Down