Fixing CI
This commit is contained in:
parent
ea7fc62c00
commit
7ec8cd2a5b
@ -1,6 +1,7 @@
|
|||||||
<script lang="typescript">
|
<script lang="typescript">
|
||||||
import { gameManager } from "../../Phaser/Game/GameManager";
|
import { gameManager } from "../../Phaser/Game/GameManager";
|
||||||
import type { PictureStore } from "../../Stores/PictureStore";
|
import type { PictureStore } from "../../Stores/PictureStore";
|
||||||
|
import { onDestroy } from "svelte";
|
||||||
|
|
||||||
export let userId: number;
|
export let userId: number;
|
||||||
export let placeholderSrc: string;
|
export let placeholderSrc: string;
|
||||||
@ -17,14 +18,19 @@
|
|||||||
(item) => item.companion?.pictureStore
|
(item) => item.companion?.pictureStore
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let src = placeholderSrc;
|
||||||
|
|
||||||
|
if (companionWokaPictureStore) {
|
||||||
|
const unsubscribe = companionWokaPictureStore.subscribe((source) => {
|
||||||
|
src = source ?? placeholderSrc;
|
||||||
|
});
|
||||||
|
|
||||||
|
onDestroy(unsubscribe);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<img
|
<img {src} alt="" class="nes-pointer" style="--theme-width: {width}; --theme-height: {height}" />
|
||||||
src={$companionWokaPictureStore ?? placeholderSrc}
|
|
||||||
alt=""
|
|
||||||
class="nes-pointer"
|
|
||||||
style="--theme-width: {width}; --theme-height: {height}"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
import { onDestroy } from "svelte";
|
import { onDestroy } from "svelte";
|
||||||
|
|
||||||
import { gameManager } from "../../Phaser/Game/GameManager";
|
import { gameManager } from "../../Phaser/Game/GameManager";
|
||||||
import { playersStore } from "../../Stores/PlayersStore";
|
|
||||||
|
|
||||||
export let userId: number;
|
export let userId: number;
|
||||||
export let placeholderSrc: string;
|
export let placeholderSrc: string;
|
||||||
|
Loading…
Reference in New Issue
Block a user