Skip to main content
Create new
Introduction
Reactivity
Props
Logic
Events
Bindings
Lifecycle
Stores
Motion
Transitions
Animations
Easing
SVG
Actions
Classes
Component composition
Context API
Special elements
Module context
Debugging
7GUIs
Miscellaneous
App.svelte
Entry.svelte
Favorite.svelte
Stats.svelte
<script>
import Entry from './Entry.svelte';
const pokemon = 898;
let number = Math.floor(Math.random() * pokemon + 1);
let fetchedNumber;
const favorites = {};
async function fetchData(n = 1) {
try {
const res = await fetch(`https://pokeapi.co/api/v2/pokemon/${n}`);
const data = await res.json();
fetchedNumber = number;
return data;
}
catch(error) {
throw new Error(error)
}
}
function handleSubmit() {
if(fetchedNumber === number) return;
promise = fetchData(number);
}
function handleFavorite({detail}) {
favorites[fetchedNumber] = detail;
}
let promise;
</script>

<style>
:global(*) {
padding: 0;
margin: 0;
loading Svelte compiler...
/* Select a component to see its compiled code */
result = svelte.compile(source, {
generate: ,
});
/* Select a component to see its compiled code */