-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add branch display to dev builds (#468)
* add branch name for local builds * update display
- Loading branch information
1 parent
2c39f04
commit 6b72120
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,8 @@ yarn-error.log* | |
|
||
.markdownlint.json | ||
|
||
.branch-name | ||
|
||
# Use yarn.lock | ||
package-lock.json | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from 'react' | ||
import Layout from '@theme-original/Layout' | ||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext' | ||
|
||
export default function LayoutWrapper(props) { | ||
const { siteConfig } = useDocusaurusContext() | ||
const { branchName, isDev } = siteConfig.customFields | ||
|
||
return ( | ||
<> | ||
{isDev && ( | ||
<div | ||
style={{ | ||
position: 'fixed', | ||
top: 0, | ||
right: 0, | ||
background: 'yellow', | ||
padding: '5px', | ||
}} | ||
> | ||
{branchName} | ||
</div> | ||
)} | ||
<Layout {...props} /> | ||
</> | ||
) | ||
} |