[v0.3.1] Removes footer completely when config.author is null or empty
This commit is contained in:
parent
9c32cea6b8
commit
f7f688196d
7 changed files with 12 additions and 10 deletions
|
@ -1,4 +1,6 @@
|
||||||
# ChangeLog
|
# ChangeLog
|
||||||
|
## v0.3.1
|
||||||
|
- Removes footer completely when config.author is null or empty
|
||||||
## v0.3.0
|
## v0.3.0
|
||||||
- Uses `@sup39/mdx-nav` v0.3.0, which
|
- Uses `@sup39/mdx-nav` v0.3.0, which
|
||||||
- changed `Link` (next/link) to `a`
|
- changed `Link` (next/link) to `a`
|
||||||
|
|
4
dist/index.esm.js
vendored
4
dist/index.esm.js
vendored
|
@ -7,12 +7,12 @@ function Footer(_a) {
|
||||||
var year = new Date().getFullYear();
|
var year = new Date().getFullYear();
|
||||||
var _b = config.site, _c = _b.startYear, year0 = _c === void 0 ? year : _c, author = _b.author;
|
var _b = config.site, _c = _b.startYear, year0 = _c === void 0 ? year : _c, author = _b.author;
|
||||||
var yearStr = year > year0 ? "".concat(year0, "-").concat(year) : year;
|
var yearStr = year > year0 ? "".concat(year0, "-").concat(year) : year;
|
||||||
return React.createElement("footer", null, author && React.createElement("div", null,
|
return author ? React.createElement("footer", null, React.createElement("div", null,
|
||||||
"Copyright \u00A9 ",
|
"Copyright \u00A9 ",
|
||||||
yearStr,
|
yearStr,
|
||||||
" ",
|
" ",
|
||||||
author,
|
author,
|
||||||
" All rights reserved."));
|
" All rights reserved.")) : React.createElement(React.Fragment, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
2
dist/index.esm.js.map
vendored
2
dist/index.esm.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/index.js
vendored
4
dist/index.js
vendored
|
@ -9,12 +9,12 @@ function Footer(_a) {
|
||||||
var year = new Date().getFullYear();
|
var year = new Date().getFullYear();
|
||||||
var _b = config.site, _c = _b.startYear, year0 = _c === void 0 ? year : _c, author = _b.author;
|
var _b = config.site, _c = _b.startYear, year0 = _c === void 0 ? year : _c, author = _b.author;
|
||||||
var yearStr = year > year0 ? "".concat(year0, "-").concat(year) : year;
|
var yearStr = year > year0 ? "".concat(year0, "-").concat(year) : year;
|
||||||
return React.createElement("footer", null, author && React.createElement("div", null,
|
return author ? React.createElement("footer", null, React.createElement("div", null,
|
||||||
"Copyright \u00A9 ",
|
"Copyright \u00A9 ",
|
||||||
yearStr,
|
yearStr,
|
||||||
" ",
|
" ",
|
||||||
author,
|
author,
|
||||||
" All rights reserved."));
|
" All rights reserved.")) : React.createElement(React.Fragment, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
|
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@sup39/mdx-page",
|
"name": "@sup39/mdx-page",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"author": "sup39 <dev@sup39.dev>",
|
"author": "sup39 <dev@sup39.dev>",
|
||||||
"repository": "github.com:sup39/supMDX-page",
|
"repository": "github.com:sup39/supMDX-page",
|
||||||
"description": "Page component for supMDX",
|
"description": "Page component for supMDX",
|
||||||
|
|
|
@ -10,7 +10,7 @@ export function Footer({config}: {config: FooterConfig}) {
|
||||||
const year = new Date().getFullYear();
|
const year = new Date().getFullYear();
|
||||||
const {site: {startYear: year0 = year, author}} = config;
|
const {site: {startYear: year0 = year, author}} = config;
|
||||||
const yearStr = year>year0 ? `${year0}-${year}` : year;
|
const yearStr = year>year0 ? `${year0}-${year}` : year;
|
||||||
return <footer>{
|
return author ? <footer>{
|
||||||
author && <div>Copyright © {yearStr} {author} All rights reserved.</div>
|
<div>Copyright © {yearStr} {author} All rights reserved.</div>
|
||||||
}</footer>;
|
}</footer> : <></>;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue