1

How If-Else Logic works in Svelte

 2 years ago
source link: https://dzone.com/articles/how-if-else-logic-works-in-svelte
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Like other modern frameworks such as Vue and React, Svelte allows for logic within components. In this article, we'll look at how if and else statement logic works in Svelte outside of Javascript.

Using If-Else Statements in Svelte

Let's create a new component. Make a new file in your Svelte project in ./src/components called Component.svelte. Inside that component, add the following code:

JavaScript
<script>
    // we write export let to say that this is a property
    // that means we can change it later!
    export let x = 0;
    const addToCounter = function() {
        ++x;
    }
</script>
<button id="counter" on:click="{addToCounter}">{x}</button>
<style>
    button {
        background: #ffb334;
        border-radius: 8px;
        border: none;
        font-weight: bold;
        cursor: pointer;
        padding: 0.5rem 2rem;
        color: white;
        font-size: 1.5rem;
    }
</style>

This simple component creates a counter which adds 1 to its value every time you click it. Let's look at how we'd use inline logic in this example.

If Statement Logic in Svelte

Logic in Svelte goes inside {} curly brackets. Suppose we want a message to display based on the value of x from our component above. Our logic should be:

  • if the value is more than 5 and less than 10, show "more than 5 clicks!"
  • if the value is more than 10, show "wow that's a lot of clicks!"
  • otherwise, show "keep clicking!"

In Svelte, the syntax for that looks like this:

JavaScript
<script>
    export let x = 0;
    const addToCounter = function() {
        ++x;
    }
</script>
{#if x <= 10 && x > 5}
    <h2>more than 5 clicks!</h2>
{:else if x > 10}
    <h2>wow that's a lot of clicks!</h2>
{:else} 
    <h2>keep clicking!</h2>
{/if}
<button id="counter" on:click="{addToCounter}">{x}</button>

This means we don't have to rely on Javascript functions to write out which title we want to display. Instead, we can write it straight into our Svelte components.

If-Else Statements in Svelte

Similar to before, if you only wanted to have an if and an else, you can do that too:

{#if x <= 10 && x > 5}
    <h2>more than 5 clicks!</h2>
{:else} 
    <h2>keep clicking!</h2>
{/if}

And finally, an if statement alone also works - perfect for hiding or displaying DOM elements based on Javascript values:

{#if x <= 10 && x > 5}
    <h2>more than 5 clicks!</h2>
{/if}

Structure of If-Else Statements in Svelte

  • The first part of the if statement always starts with {#if STATEMENT} where STATEMENT is any logical Javascript statement we want to test out.
  • If we continue with else if or else, it's written as {:else if STATEMENT} and {:else} - using : instead of #.
  • We finish all logical statements with {/if}.

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK