Skip to content

Commit 2a8d611

Browse files
committedSep 11, 2024
chore: test pdf
1 parent 5e98196 commit 2a8d611

File tree

8 files changed

+1261
-497
lines changed

8 files changed

+1261
-497
lines changed
 

‎package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,17 @@
3636
"clsx": "^2.0.0",
3737
"copyforjs": "^1.0.6",
3838
"databend-logos": "^0.0.16",
39-
"docs-to-pdf": "^0.6.2",
4039
"docusaurus-plugin-devserver": "^1.0.6",
4140
"docusaurus-plugin-sass": "^0.2.5",
41+
"docusaurus-prince-pdf": "^1.2.1",
4242
"prism-react-renderer": "^2.3.0",
4343
"react": "^18.0.0",
4444
"react-dom": "^18.0.0",
4545
"react-markdown": "^9.0.1",
4646
"react-scroll-progress-bar": "^2.0.3",
4747
"sass": "^1.77.8",
48-
"sass-resources-loader": "^2.2.5"
48+
"sass-resources-loader": "^2.2.5",
49+
"xml2js": "^0.6.2"
4950
},
5051
"devDependencies": {
5152
"@docusaurus/module-type-aliases": "3.4.0",

‎scripts/parser_sitemap.js

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
const fs = require("fs");
2+
const xml2js = require("xml2js");
3+
const path = require("path");
4+
5+
const sitemapPath = path.join(__dirname, "sitemap.xml");
6+
7+
const outputFilePath = path.join(__dirname, "pdf", "docs.databend.com-sql.txt");
8+
9+
if (!fs.existsSync(path.dirname(outputFilePath))) {
10+
fs.mkdirSync(path.dirname(outputFilePath), { recursive: true });
11+
}
12+
13+
if (fs.existsSync(outputFilePath)) {
14+
console.log(`file ${outputFilePath} existed, delete it...`);
15+
fs.unlinkSync(outputFilePath);
16+
}
17+
18+
const excludeUrls = [
19+
"https://docs.databend.com/",
20+
"https://docs.databend.com/download/",
21+
"https://docs.databend.com/search",
22+
];
23+
24+
try {
25+
const xmlData = fs.readFileSync(sitemapPath, "utf8");
26+
27+
xml2js.parseString(xmlData, (err, result) => {
28+
if (err) {
29+
console.error("XML pasrder errors", err);
30+
return;
31+
}
32+
33+
const urls = result.urlset.url
34+
.map((entry) => entry.loc[0])
35+
.filter((url) => !excludeUrls.includes(url));
36+
37+
fs.writeFileSync(outputFilePath, urls.join("\n"), "utf8");
38+
39+
console.log(`${urls.length}, ${outputFilePath}`);
40+
});
41+
} catch (error) {
42+
console.error("file read errors:", error);
43+
}

‎scripts/pdf/docs.databend.com-sql.txt

+952
Large diffs are not rendered by default.

‎scripts/sitemap.xml

+1
Large diffs are not rendered by default.

‎src/css/print.css

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.pagination-nav,
2+
.databend-bottom-footer,
3+
.footer,
4+
.databend-right-table-contents {
5+
display: none;
6+
}

‎src/theme/DocItem/TOC/Desktop/index.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,18 @@ export default function DocItemTOCDesktop(): JSX.Element {
99
const { toc, frontMatter } = useDoc();
1010
return (
1111
<div
12+
className="databend-right-table-contents"
1213
style={{
1314
position: "sticky",
1415
top: "76px",
1516
}}
1617
>
17-
<TOC toc={toc} minHeadingLevel={frontMatter.toc_min_heading_level} maxHeadingLevel={frontMatter.toc_max_heading_level} className={ThemeClassNames.docs.docTocDesktop} />
18+
<TOC
19+
toc={toc}
20+
minHeadingLevel={frontMatter.toc_min_heading_level}
21+
maxHeadingLevel={frontMatter.toc_max_heading_level}
22+
className={ThemeClassNames.docs.docTocDesktop}
23+
/>
1824
<TryCloudCard />
1925
</div>
2026
);

‎src/theme/DocPaginator/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default function DocPaginator(props) {
6161
}
6262
}
6363
return (
64-
<div>
64+
<div className="databend-bottom-footer">
6565
<Spin
6666
spinning={loading}
6767
indicator={<LoadingOutlined style={{ fontSize: 24 }} />}

0 commit comments

Comments
 (0)