Quantcast
Channel: Active questions tagged svelte - Stack Overflow
Viewing all articles
Browse latest Browse all 1630

svelte:window innerWidth undefined in the first load

$
0
0

I have this component to check device size

<script lang="ts">    import { deviceSize } from "$lib/stores";    let innerWidth;    $: if (innerWidth >= 1652) {        $deviceSize = {            xl: true,            lg: false,            md: false,            dsm: false,            sm: false,        };    } else if (innerWidth >= 1240 && innerWidth < 1652) {        $deviceSize = {            xl: false,            lg: true,            md: false,            dsm: false,            sm: false,        };    } else if (innerWidth >= 794 && innerWidth < 1240) {        $deviceSize = {            xl: false,            lg: false,            md: true,            dsm: false,            sm: false,        };    } else if (innerWidth >= 640 && innerWidth < 794) {        $deviceSize = {            xl: false,            lg: false,            md: false,            dsm: true,            sm: false,        };    } else {        $deviceSize = {            xl: false,            lg: false,            md: false,            dsm: false,            sm: true,        };    }    $: console.log(innerWidth);</script><svelte:window bind:innerWidth />

and a App Component like this

<App.svelte>

<script>   const { lg, xl } = $deviceSize;$: isDesktop = xl || lg;</script>{#if isDesktop}<DesktopComponent/>{/if}{#if !isDesktop}<MobileComponent/>{/if}

enter image description here

My problem is innerWidth always is undefined in the initial load. So isDesktop = false, then always render MobileComponent even when I use desktop. Please help me fix this.

I tried to set default value for deviceSize store, but not work as I want, it's always render as the defauft condition for whatever I use (PC, mobile).


Viewing all articles
Browse latest Browse all 1630

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>