mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 10:17:55 +02:00
feat(v2): bootstrap doc paginator (#2734)
* feat(v2): add minor adjustements and footer component * fix(v2): margin and spacing of footer * feat(v2): add navbar component * ádd collapse classname * feat(v2): add dependencies * feat(v2): remove unused code * feat(v2): remove unused links * feat(v2): add reactstrap components :| * feat(v2): add brand and other nav componnets * feat(v2): Add the layout tag * feat(v2): bootstrap start doc components * feat(v2: Add syntax highlight * Ádd Page components * feat(v2): Bootstrap MDX Componnets * fix(v2): Fix layout height * fix(v2): Fix spacings * feat:(v2): Add the layout in doc content * feat(v2): Start the pagination * feat(v2): Finish pagination * Fix margins in mobile * feat(v2): Add theme
This commit is contained in:
parent
d910ff118e
commit
b91f02dee2
12 changed files with 377 additions and 2 deletions
202
packages/docusaurus-init/templates/bootstrap/docs/doc1.md
Normal file
202
packages/docusaurus-init/templates/bootstrap/docs/doc1.md
Normal file
|
@ -0,0 +1,202 @@
|
||||||
|
---
|
||||||
|
id: doc1
|
||||||
|
title: Style Guide
|
||||||
|
sidebar_label: Style Guide
|
||||||
|
---
|
||||||
|
|
||||||
|
You can write content using [GitHub-flavored Markdown syntax](https://github.github.com/gfm/).
|
||||||
|
|
||||||
|
## Markdown Syntax
|
||||||
|
|
||||||
|
To serve as an example page when styling markdown based Docusaurus sites.
|
||||||
|
|
||||||
|
## Headers
|
||||||
|
|
||||||
|
# H1 - Create the best documentation
|
||||||
|
|
||||||
|
## H2 - Create the best documentation
|
||||||
|
|
||||||
|
### H3 - Create the best documentation
|
||||||
|
|
||||||
|
#### H4 - Create the best documentation
|
||||||
|
|
||||||
|
##### H5 - Create the best documentation
|
||||||
|
|
||||||
|
###### H6 - Create the best documentation
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Emphasis
|
||||||
|
|
||||||
|
Emphasis, aka italics, with _asterisks_ or _underscores_.
|
||||||
|
|
||||||
|
Strong emphasis, aka bold, with **asterisks** or **underscores**.
|
||||||
|
|
||||||
|
Combined emphasis with **asterisks and _underscores_**.
|
||||||
|
|
||||||
|
Strikethrough uses two tildes. ~~Scratch this.~~
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Lists
|
||||||
|
|
||||||
|
1. First ordered list item
|
||||||
|
1. Another item ⋅⋅\* Unordered sub-list.
|
||||||
|
1. Actual numbers don't matter, just that it's a number ⋅⋅1. Ordered sub-list
|
||||||
|
1. And another item.
|
||||||
|
|
||||||
|
⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
|
||||||
|
|
||||||
|
⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅ ⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅ ⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
|
||||||
|
|
||||||
|
- Unordered list can use asterisks
|
||||||
|
|
||||||
|
* Or minuses
|
||||||
|
|
||||||
|
- Or pluses
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Links
|
||||||
|
|
||||||
|
[I'm an inline-style link](https://www.google.com)
|
||||||
|
|
||||||
|
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
|
||||||
|
|
||||||
|
[I'm a reference-style link][arbitrary case-insensitive reference text]
|
||||||
|
|
||||||
|
[I'm a relative reference to a repository file](../blob/master/LICENSE)
|
||||||
|
|
||||||
|
[You can use numbers for reference-style link definitions][1]
|
||||||
|
|
||||||
|
Or leave it empty and use the [link text itself].
|
||||||
|
|
||||||
|
URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com or <http://www.example.com> and sometimes example.com (but not on Github, for example).
|
||||||
|
|
||||||
|
Some text to show that the reference links can follow later.
|
||||||
|
|
||||||
|
[arbitrary case-insensitive reference text]: https://www.mozilla.org
|
||||||
|
[1]: http://slashdot.org
|
||||||
|
[link text itself]: http://www.reddit.com
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Images
|
||||||
|
|
||||||
|
Here's our logo (hover to see the title text):
|
||||||
|
|
||||||
|
Inline-style: 
|
||||||
|
|
||||||
|
Reference-style: ![alt text][logo]
|
||||||
|
|
||||||
|
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png 'Logo Title Text 2'
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Code
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var s = 'JavaScript syntax highlighting';
|
||||||
|
alert(s);
|
||||||
|
```
|
||||||
|
|
||||||
|
```python
|
||||||
|
s = "Python syntax highlighting"
|
||||||
|
print(s)
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
No language indicated, so no syntax highlighting.
|
||||||
|
But let's throw in a <b>tag</b>.
|
||||||
|
```
|
||||||
|
|
||||||
|
```js {2}
|
||||||
|
function highlightMe() {
|
||||||
|
console.log('This line can be highlighted!');
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Tables
|
||||||
|
|
||||||
|
Colons can be used to align columns.
|
||||||
|
|
||||||
|
| Tables | Are | Cool |
|
||||||
|
| ------------- | :-----------: | -----: |
|
||||||
|
| col 3 is | right-aligned | \$1600 |
|
||||||
|
| col 2 is | centered | \$12 |
|
||||||
|
| zebra stripes | are neat | \$1 |
|
||||||
|
|
||||||
|
There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.
|
||||||
|
|
||||||
|
| Markdown | Less | Pretty |
|
||||||
|
| -------- | --------- | ---------- |
|
||||||
|
| _Still_ | `renders` | **nicely** |
|
||||||
|
| 1 | 2 | 3 |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Blockquotes
|
||||||
|
|
||||||
|
> Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.
|
||||||
|
|
||||||
|
Quote break.
|
||||||
|
|
||||||
|
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Inline HTML
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>Definition list</dt>
|
||||||
|
<dd>Is something people use sometimes.</dd>
|
||||||
|
|
||||||
|
<dt>Markdown in HTML</dt>
|
||||||
|
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Line Breaks
|
||||||
|
|
||||||
|
Here's a line for us to start with.
|
||||||
|
|
||||||
|
This line is separated from the one above by two newlines, so it will be a _separate paragraph_.
|
||||||
|
|
||||||
|
This line is also a separate paragraph, but... This line is only separated by a single newline, so it's a separate line in the _same paragraph_.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Admonitions
|
||||||
|
|
||||||
|
:::note
|
||||||
|
|
||||||
|
This is a note
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
:::tip
|
||||||
|
|
||||||
|
This is a tip
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
:::important
|
||||||
|
|
||||||
|
This is important
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
:::caution
|
||||||
|
|
||||||
|
This is a caution
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
:::warning
|
||||||
|
|
||||||
|
This is a warning
|
||||||
|
|
||||||
|
:::
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
id: doc2
|
||||||
|
title: Document Number 2
|
||||||
|
---
|
||||||
|
|
||||||
|
This is a link to [another document.](doc3.md) This is a link to an [external page.](http://www.example.com)
|
14
packages/docusaurus-init/templates/bootstrap/docs/doc3.md
Normal file
14
packages/docusaurus-init/templates/bootstrap/docs/doc3.md
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
id: doc3
|
||||||
|
title: This is Document Number 3
|
||||||
|
---
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ac euismod odio, eu consequat dui. Nullam molestie consectetur risus id imperdiet. Proin sodales ornare turpis, non mollis massa ultricies id. Nam at nibh scelerisque, feugiat ante non, dapibus tortor. Vivamus volutpat diam quis tellus elementum bibendum. Praesent semper gravida velit quis aliquam. Etiam in cursus neque. Nam lectus ligula, malesuada et mauris a, bibendum faucibus mi. Phasellus ut interdum felis. Phasellus in odio pulvinar, porttitor urna eget, fringilla lectus. Aliquam sollicitudin est eros. Mauris consectetur quam vitae mauris interdum hendrerit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
||||||
|
|
||||||
|
Duis et egestas libero, imperdiet faucibus ipsum. Sed posuere eget urna vel feugiat. Vivamus a arcu sagittis, fermentum urna dapibus, congue lectus. Fusce vulputate porttitor nisl, ac cursus elit volutpat vitae. Nullam vitae ipsum egestas, convallis quam non, porta nibh. Morbi gravida erat nec neque bibendum, eu pellentesque velit posuere. Fusce aliquam erat eu massa eleifend tristique.
|
||||||
|
|
||||||
|
Sed consequat sollicitudin ipsum eget tempus. Integer a aliquet velit. In justo nibh, pellentesque non suscipit eget, gravida vel lacus. Donec odio ante, malesuada in massa quis, pharetra tristique ligula. Donec eros est, tristique eget finibus quis, semper non nisl. Vivamus et elit nec enim ornare placerat. Sed posuere odio a elit cursus sagittis.
|
||||||
|
|
||||||
|
Phasellus feugiat purus eu tortor ultrices finibus. Ut libero nibh, lobortis et libero nec, dapibus posuere eros. Sed sagittis euismod justo at consectetur. Nulla finibus libero placerat, cursus sapien at, eleifend ligula. Vivamus elit nisl, hendrerit ac nibh eu, ultrices tempus dui. Nam tellus neque, commodo non rhoncus eu, gravida in risus. Nullam id iaculis tortor.
|
||||||
|
|
||||||
|
Nullam at odio in sem varius tempor sit amet vel lorem. Etiam eu hendrerit nisl. Fusce nibh mauris, vulputate sit amet ex vitae, congue rhoncus nisl. Sed eget tellus purus. Nullam tempus commodo erat ut tristique. Cras accumsan massa sit amet justo consequat eleifend. Integer scelerisque vitae tellus id consectetur.
|
17
packages/docusaurus-init/templates/bootstrap/docs/mdx.md
Normal file
17
packages/docusaurus-init/templates/bootstrap/docs/mdx.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
---
|
||||||
|
id: mdx
|
||||||
|
title: Powered by MDX
|
||||||
|
---
|
||||||
|
|
||||||
|
You can write JSX and use React components within your Markdown thanks to [MDX](https://mdxjs.com/).
|
||||||
|
|
||||||
|
export const Highlight = ({children, color}) => ( <span style={{
|
||||||
|
backgroundColor: color,
|
||||||
|
borderRadius: '2px',
|
||||||
|
color: '#fff',
|
||||||
|
padding: '0.2rem',
|
||||||
|
}}> {children} </span> );
|
||||||
|
|
||||||
|
<Highlight color="#25c2a0">Docusaurus green</Highlight> and <Highlight color="#1877F2">Facebook blue</Highlight> are my favorite colors.
|
||||||
|
|
||||||
|
I can write **Markdown** alongside my _JSX_!
|
|
@ -63,6 +63,11 @@ module.exports = {
|
||||||
[
|
[
|
||||||
'@docusaurus/preset-bootstrap',
|
'@docusaurus/preset-bootstrap',
|
||||||
{
|
{
|
||||||
|
docs: {
|
||||||
|
sidebarPath: require.resolve('./sidebars.js'),
|
||||||
|
editUrl:
|
||||||
|
'https://github.com/facebook/docusaurus/edit/master/website/',
|
||||||
|
},
|
||||||
blog: {
|
blog: {
|
||||||
showReadingTime: true,
|
showReadingTime: true,
|
||||||
// Please change this to your repo.
|
// Please change this to your repo.
|
||||||
|
|
6
packages/docusaurus-init/templates/bootstrap/sidebars.js
Normal file
6
packages/docusaurus-init/templates/bootstrap/sidebars.js
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
module.exports = {
|
||||||
|
someSidebar: {
|
||||||
|
Docusaurus: ['doc1', 'doc2', 'doc3'],
|
||||||
|
Features: ['mdx'],
|
||||||
|
},
|
||||||
|
};
|
|
@ -9,6 +9,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@docusaurus/plugin-content-blog": "^2.0.0-alpha.54",
|
"@docusaurus/plugin-content-blog": "^2.0.0-alpha.54",
|
||||||
|
"@docusaurus/plugin-content-docs": "^2.0.0-alpha.54",
|
||||||
"@docusaurus/plugin-content-pages": "^2.0.0-alpha.54",
|
"@docusaurus/plugin-content-pages": "^2.0.0-alpha.54",
|
||||||
"@docusaurus/theme-bootstrap": "^2.0.0-alpha.54"
|
"@docusaurus/theme-bootstrap": "^2.0.0-alpha.54"
|
||||||
},
|
},
|
||||||
|
|
|
@ -11,6 +11,7 @@ module.exports = function preset(context, opts = {}) {
|
||||||
plugins: [
|
plugins: [
|
||||||
['@docusaurus/plugin-content-pages', opts.pages],
|
['@docusaurus/plugin-content-pages', opts.pages],
|
||||||
['@docusaurus/plugin-content-blog', opts.blog],
|
['@docusaurus/plugin-content-blog', opts.blog],
|
||||||
|
['@docusaurus/plugin-content-docs', opts.docs],
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -16,14 +16,14 @@ function BlogPostPaginator(props) {
|
||||||
<ul className="pagination justify-content-between">
|
<ul className="pagination justify-content-between">
|
||||||
<li className="pagination__item">
|
<li className="pagination__item">
|
||||||
{prevItem && (
|
{prevItem && (
|
||||||
<Link className="page-link rounded-pill" to={prevItem.permalink}>
|
<Link className="page-link" to={prevItem.permalink}>
|
||||||
« {prevItem.title}
|
« {prevItem.title}
|
||||||
</Link>
|
</Link>
|
||||||
)}
|
)}
|
||||||
</li>
|
</li>
|
||||||
<li className="pagination__item">
|
<li className="pagination__item">
|
||||||
{nextItem && (
|
{nextItem && (
|
||||||
<Link className="page-link rounded-pill" to={nextItem.permalink}>
|
<Link className="page-link" to={nextItem.permalink}>
|
||||||
{nextItem.title} »
|
{nextItem.title} »
|
||||||
</Link>
|
</Link>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -0,0 +1,57 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React from 'react';
|
||||||
|
import isInternalUrl from '@docusaurus/isInternalUrl';
|
||||||
|
import Head from '@docusaurus/Head';
|
||||||
|
import DocPaginator from '@theme/DocPaginator';
|
||||||
|
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
||||||
|
import useBaseUrl from '@docusaurus/useBaseUrl';
|
||||||
|
|
||||||
|
function DocItem(props) {
|
||||||
|
const {siteConfig = {}} = useDocusaurusContext();
|
||||||
|
const {url: siteUrl, title: siteTitle} = siteConfig;
|
||||||
|
const {content: DocContent} = props;
|
||||||
|
const {metadata} = DocContent;
|
||||||
|
const {description, title, permalink} = metadata;
|
||||||
|
const {
|
||||||
|
frontMatter: {image: metaImage, keywords},
|
||||||
|
} = DocContent;
|
||||||
|
|
||||||
|
const metaTitle = title ? `${title} | ${siteTitle}` : siteTitle;
|
||||||
|
let metaImageUrl = siteUrl + useBaseUrl(metaImage);
|
||||||
|
if (!isInternalUrl(metaImage)) {
|
||||||
|
metaImageUrl = metaImage;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<title>{metaTitle}</title>
|
||||||
|
<meta property="og:title" content={metaTitle} />
|
||||||
|
{description && <meta name="description" content={description} />}
|
||||||
|
{description && (
|
||||||
|
<meta property="og:description" content={description} />
|
||||||
|
)}
|
||||||
|
{keywords && keywords.length && (
|
||||||
|
<meta name="keywords" content={keywords.join(',')} />
|
||||||
|
)}
|
||||||
|
{metaImage && <meta property="og:image" content={metaImageUrl} />}
|
||||||
|
{metaImage && <meta property="twitter:image" content={metaImageUrl} />}
|
||||||
|
{metaImage && (
|
||||||
|
<meta name="twitter:image:alt" content={`Image for ${title}`} />
|
||||||
|
)}
|
||||||
|
{permalink && <meta property="og:url" content={siteUrl + permalink} />}
|
||||||
|
</Head>
|
||||||
|
<main className="col col-8 p-0">
|
||||||
|
<DocContent />
|
||||||
|
<DocPaginator metadata={metadata} />
|
||||||
|
</main>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default DocItem;
|
|
@ -0,0 +1,30 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React from 'react';
|
||||||
|
import renderRoutes from '@docusaurus/renderRoutes';
|
||||||
|
import MDXComponents from '@theme/MDXComponents';
|
||||||
|
import Layout from '@theme/Layout';
|
||||||
|
import {MDXProvider} from '@mdx-js/react';
|
||||||
|
|
||||||
|
function DocPage(props) {
|
||||||
|
const {route: baseRoute} = props;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Layout title="Blog page" description="My blog page">
|
||||||
|
<div className="container mt-4">
|
||||||
|
<section className="row justify-content-center">
|
||||||
|
<MDXProvider components={MDXComponents}>
|
||||||
|
{renderRoutes(baseRoute.routes)}
|
||||||
|
</MDXProvider>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default DocPage;
|
|
@ -0,0 +1,36 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React from 'react';
|
||||||
|
import Link from '@docusaurus/Link';
|
||||||
|
|
||||||
|
function DocPaginator(props) {
|
||||||
|
const {previous, next} = props.metadata;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<nav aria-label="Blog list page navigation" className="my-5 p-0">
|
||||||
|
<ul className="pagination justify-content-between">
|
||||||
|
<li className="page-item mr-2">
|
||||||
|
{previous && (
|
||||||
|
<Link className="page-link" to={previous.permalink}>
|
||||||
|
« {previous.title}
|
||||||
|
</Link>
|
||||||
|
)}
|
||||||
|
</li>
|
||||||
|
<li className="page-item ml-2">
|
||||||
|
{next && (
|
||||||
|
<Link className="page-link" to={next.permalink}>
|
||||||
|
{next.title} »
|
||||||
|
</Link>
|
||||||
|
)}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default DocPaginator;
|
Loading…
Add table
Reference in a new issue