test route
This commit is contained in:
parent
86d1984095
commit
b0b2b8020a
@ -2,5 +2,6 @@
|
|||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="VcsDirectoryMappings">
|
<component name="VcsDirectoryMappings">
|
||||||
<mapping directory="" vcs="Git" />
|
<mapping directory="" vcs="Git" />
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
48
index.html
48
index.html
@ -1,40 +1,25 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Riot App</title>
|
<title>Riot App</title>
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
<script src="https://cdn.tailwindcss.com"></script>
|
||||||
</head>
|
</head>
|
||||||
<body class="bg-neutral-50">
|
<body class="bg-neutral-50">
|
||||||
|
|
||||||
<div id="app"></div>
|
<onzer></onzer>
|
||||||
|
|
||||||
<script src="https://unpkg.com/animore/animore.js"></script>
|
<script src="https://unpkg.com/animore/animore.js"></script>
|
||||||
<script src="https://unpkg.com/riot@9/riot+compiler.min.js"></script>
|
<script src="https://unpkg.com/riot@9/riot+compiler.min.js"></script>
|
||||||
<script src="https://unpkg.com/@riotjs/route@6/route.umd.js"></script>
|
|
||||||
|
|
||||||
<!-- Composant Onzer -->
|
<script type="riot" src="./onzer.riot"></script>
|
||||||
<script type="riot" src="./onzer.riot"></script>
|
<script type="riot" src="./playlists.riot"></script>
|
||||||
|
|
||||||
<!-- Composant Playlists -->
|
<script type="text/javascript">
|
||||||
<script type="riot">
|
|
||||||
<playlists>
|
|
||||||
<h1>Playlists Page</h1>
|
|
||||||
<p>This is the playlists page. It is currently empty.</p>
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
// Your component logic here
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<style>
|
|
||||||
/* Your style here */
|
|
||||||
</style>
|
|
||||||
</playlists>
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
async function fetch_data() {
|
async function fetch_data() {
|
||||||
return fetch("https://dwarves.iut-fbleau.fr/~fauvet/api/albums").then(response => response.json());
|
return fetch("https://dwarves.iut-fbleau.fr/~fauvet/api/albums").then(response => {
|
||||||
|
return response.json();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function mountComponent(component) {
|
function mountComponent(component) {
|
||||||
@ -46,7 +31,6 @@
|
|||||||
riot.compile().then(async () => {
|
riot.compile().then(async () => {
|
||||||
const data = await fetch_data();
|
const data = await fetch_data();
|
||||||
|
|
||||||
// Définir les routes
|
|
||||||
route('/', () => {
|
route('/', () => {
|
||||||
riot.mount('onzer', { items: data });
|
riot.mount('onzer', { items: data });
|
||||||
});
|
});
|
||||||
@ -55,11 +39,11 @@
|
|||||||
riot.mount('playlists');
|
riot.mount('playlists');
|
||||||
});
|
});
|
||||||
|
|
||||||
// Démarrer le routeur
|
|
||||||
router.start();
|
router.start();
|
||||||
router.exec();
|
router.exec();
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</body>
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user