feat(v2): add edit url in post page (#2524)

* Add edit page url in docs

* feat(v2): Create EditPage component

* feat(v2): Improve component

* Add test

* çhore(v2): update description

* çhore(v2): update url

* fix(v2): test

* fix(v2): test

* feat(v2): change the prop of EditPage component

* chore(v2): Remove packages

* feat(v2): Update old tests

* chore(v2): fix package

* fix(v2): fix editUrl

* docs(v2): document editUrl

* --

* --

Co-authored-by: Yangshun Tay <tay.yang.shun@gmail.com>
This commit is contained in:
Fanny 2020-04-05 06:34:48 -03:00 committed by GitHub
parent 7bc7241ee4
commit 5e664a1f26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 72 additions and 12 deletions

View file

@ -273,3 +273,9 @@ export function aliasedSitePath(filePath: string, siteDir: string) {
// the '@site'. Let webpack loader resolve it.
return `@site/${relativePath}`;
}
export function getEditUrl(fileRelativePath: string, editUrl?: string) {
return editUrl
? normalizeUrl([editUrl, posixPath(fileRelativePath)])
: undefined;
}