Spaces:
Runtime error
Runtime error
File size: 1,519 Bytes
ca5bd83 72db8a4 ca5bd83 72db8a4 ca5bd83 72db8a4 ca5bd83 72db8a4 ca5bd83 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
<script lang="ts">
import { density, composing, style, temperature, notesImage, notesTokens, audioBlob } from '$lib/stores';
const compose = async (): Promise<void> => {
try {
$composing = true;
const composeResponse = await fetch('compose', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
music_style: $style,
density: $density,
temperature: $temperature,
}),
});
if (!composeResponse.ok) {
throw new Error(`Unable to create composition: [${composeResponse.status}] ${composeResponse.text()}`);
}
const { audio, image, tokens } = await composeResponse.json();
$notesImage = image;
$notesTokens = tokens;
$audioBlob = audio;
} catch (err) {
console.error(err);
} finally {
$composing = false;
}
};
</script>
<button disabled={$composing} on:click={compose}>
{#if $composing}
Composing...
{:else}
Compose <img src="wand.svg" alt="Magic wand" />
{/if}
</button>
<style>
button {
display: block;
font-size: 1.2rem;
font-family: 'Lato', sans-serif;
font-weight: 700;
color: hsl(0 0% 97%);
background: transparent;
border: 3px solid hsl(0 0% 97%);
border-radius: 0.375rem;
padding: 0.5rem 1rem;
cursor: pointer;
margin: 1rem auto 2rem;
}
button[disabled] {
border-color: hsl(0 0% 50%);
color: hsl(0 0% 50%);
cursor: initial;
}
img {
height: 1.2rem;
aspect-ratio: 1 / 1;
vertical-align: bottom;
}
</style>
|