test route

This commit is contained in:
Matthis FAUVET 2024-06-29 00:04:13 +02:00
parent 86d1984095
commit b0b2b8020a
2 changed files with 36 additions and 51 deletions

View File

@ -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>

View File

@ -7,34 +7,19 @@
</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="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"> <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,9 +39,9 @@
riot.mount('playlists'); riot.mount('playlists');
}); });
// Démarrer le routeur
router.start(); router.start();
router.exec(); router.exec();
}); });
</script> </script>