-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from cher-ami/add-hash-example
Add hash history example & update readme Version patch for npm module (update types)
- Loading branch information
Showing
27 changed files
with
853 additions
and
13 deletions.
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
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,12 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>cher-ami-router</title> | ||
</head> | ||
|
||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="./src/index.tsx"></script> | ||
</body> | ||
</html> |
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,21 @@ | ||
{ | ||
"name": "example-hashhistory", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build" | ||
}, | ||
"dependencies": { | ||
"@cher-ami/router": "^3.5.2", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"gsap": "^3.12.2" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.8.7", | ||
"@types/react": "^18.2.29", | ||
"@types/react-dom": "^18.2.13", | ||
"@vitejs/plugin-react": "^4.1.0", | ||
"typescript": "^5.2.2", | ||
"vite": "^4.5.0" | ||
} | ||
} |
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,63 @@ | ||
import React from "react" | ||
import { Link, Stack, TManageTransitions, useLang, useLocation } from "@cher-ami/router" | ||
const componentName = "App" | ||
|
||
/** | ||
* @name App | ||
*/ | ||
export default function App() { | ||
const [lang, setLang] = useLang() | ||
const [location, setLocation] = useLocation() | ||
|
||
const customSenario = ({ | ||
previousPage, | ||
currentPage, | ||
unmountPreviousPage, | ||
}: TManageTransitions): Promise<void> => { | ||
return new Promise(async (resolve) => { | ||
const $currentPageElement = currentPage?.$element | ||
if ($currentPageElement) { | ||
$currentPageElement.style.visibility = "hidden" | ||
} | ||
if (previousPage) previousPage.playOut() | ||
await currentPage?.isReadyPromise() | ||
if ($currentPageElement) { | ||
$currentPageElement.style.visibility = "visible" | ||
} | ||
await currentPage.playIn() | ||
resolve() | ||
}) | ||
} | ||
|
||
return ( | ||
<div className={componentName}> | ||
{["en", "fr", "de"].map((el, i) => ( | ||
<button | ||
key={i} | ||
children={el} | ||
onClick={() => { | ||
setLang(el, true) | ||
}} | ||
/> | ||
))} | ||
<nav> | ||
<ul> | ||
<li> | ||
<Link to={{ name: "HomePage" }}>Home</Link> | ||
</li> | ||
<li> | ||
<Link to={{ name: "AboutPage", queryParams: { foo: "bar", zoo: "hello" } }}> | ||
About | ||
</Link> | ||
</li> | ||
<li> | ||
<Link to={{ name: "ArticlePage", params: { id: "article-1" } }}> | ||
Blog id:article-1 | ||
</Link> | ||
</li> | ||
</ul> | ||
</nav> | ||
<Stack className={"App_stack"} manageTransitions={customSenario} /> | ||
</div> | ||
) | ||
} |
29 changes: 29 additions & 0 deletions
29
examples/example-hash-history/src/helper/transitionsHelper.ts
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,29 @@ | ||
import { gsap } from "gsap" | ||
import debug from "@cher-ami/debug" | ||
const log = debug(`router:transitionsHelper`) | ||
|
||
export const transitionsHelper = ( | ||
el, | ||
show: boolean, | ||
from: any = {}, | ||
to: any = {}, | ||
): Promise<any> => { | ||
return new Promise((resolve) => { | ||
if (!el) { | ||
log("el doesnt exist", el) | ||
} | ||
|
||
gsap.fromTo( | ||
el, | ||
{ autoAlpha: show ? 0 : 1, ...from }, | ||
|
||
{ | ||
...to, | ||
duration: 0.5, | ||
autoAlpha: show ? 1 : 0, | ||
ease: "power1.out", | ||
onComplete: resolve, | ||
}, | ||
) | ||
}) | ||
} |
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,46 @@ | ||
body { | ||
font-size: 1.2rem; | ||
font-family: sans-serif; | ||
background: #222; | ||
color: #eee; | ||
} | ||
|
||
code { | ||
color: #999; | ||
font-size: 0.9em; | ||
display: block; | ||
margin-top: 0.3em; | ||
} | ||
|
||
button { | ||
cursor: pointer; | ||
background: #000; | ||
border: none; | ||
border-radius: 0.5em; | ||
color: #eee; | ||
padding: 0.4rem 0.6rem; | ||
font-size: 0.9rem; | ||
outline: none; | ||
} | ||
button:hover { | ||
background: #444; | ||
} | ||
|
||
.Link { | ||
color: #999; | ||
} | ||
|
||
.active { | ||
color: orange; | ||
} | ||
|
||
.Stack { | ||
padding-left: 1rem; | ||
position: relative; | ||
} | ||
.Stack > * { | ||
padding-left: 2rem; | ||
position: absolute; | ||
width: 100%; | ||
top: 0; | ||
} |
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,37 @@ | ||
import { createRoot } from "react-dom/client" | ||
import React from "react" | ||
import "./index.css" | ||
import App from "./App" | ||
import { Router, LangService } from "@cher-ami/router" | ||
import { routesList } from "./routes" | ||
import { createBrowserHistory, createHashHistory } from "history" | ||
|
||
const base = "/base/" | ||
type TLang = "en" | "fr" | "de" | ||
|
||
const isHashHistory = true | ||
const history = createHashHistory() | ||
|
||
const langService = new LangService<TLang>({ | ||
languages: [{ key: "en" }, { key: "fr" }, { key: "de" }], | ||
showDefaultLangInUrl: false, | ||
base, | ||
isHashHistory, | ||
}) | ||
|
||
/** | ||
* Init Application | ||
*/ | ||
const root = createRoot(document.getElementById("root")) | ||
|
||
root.render( | ||
<Router | ||
history={history} | ||
langService={langService} | ||
isHashHistory={isHashHistory} | ||
routes={routesList} | ||
base={base} | ||
> | ||
<App /> | ||
</Router>, | ||
) |
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,72 @@ | ||
import React, { ForwardedRef, forwardRef, useRef } from "react" | ||
import { | ||
getPathByRouteName, | ||
getSubRouterBase, | ||
getSubRouterRoutes, | ||
Stack, | ||
Link, | ||
Router, | ||
useRouter, | ||
useStack, | ||
useLang, | ||
} from "@cher-ami/router" | ||
import { transitionsHelper } from "../helper/transitionsHelper" | ||
import { routesList } from "../routes" | ||
|
||
const componentName: string = "AboutPage" | ||
|
||
const AboutPage = forwardRef((props, handleRef: ForwardedRef<any>) => { | ||
const rootRef = useRef(null) | ||
const [lang] = useLang() | ||
const { currentRoute } = useRouter() | ||
|
||
useStack({ | ||
componentName, | ||
handleRef, | ||
rootRef, | ||
playIn: () => transitionsHelper(rootRef.current, true, { x: -50 }, { x: 0 }), | ||
playOut: () => transitionsHelper(rootRef.current, false, { x: -0 }, { x: 50 }), | ||
}) | ||
|
||
// prepare routes & base for subRouter | ||
const router = useRouter() | ||
const path = getPathByRouteName(routesList, "AboutPage") | ||
|
||
return ( | ||
<div className={componentName} ref={rootRef}> | ||
<h1> | ||
{componentName} - {lang.key} | ||
</h1> | ||
Query Params : | ||
<ul> | ||
<li>Foo : {currentRoute.queryParams?.foo} </li> | ||
<li>Zoo : {currentRoute.queryParams?.zoo} </li> | ||
</ul> | ||
Children : | ||
<Router | ||
id={4} | ||
base={getSubRouterBase(path, router.base, true)} | ||
routes={getSubRouterRoutes(path, router.routes)} | ||
isHashHistory={true} | ||
> | ||
<div className={componentName}> | ||
<nav> | ||
<ul> | ||
<li> | ||
<Link to={{ name: "LaPage" }}>La</Link> | ||
</li> | ||
<li> | ||
<Link to={{ name: "OurPage" }}>Our</Link> | ||
</li> | ||
</ul> | ||
</nav> | ||
|
||
<Stack /> | ||
</div> | ||
</Router> | ||
</div> | ||
) | ||
}) | ||
|
||
AboutPage.displayName = componentName | ||
export default AboutPage |
Oops, something went wrong.