Skip to content

Commit 12e6f34

Browse files
committedNov 12, 2024·
Added leaving a star modal
1 parent 550bfab commit 12e6f34

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed
 
+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<script lang="ts">
2+
import { onMount } from 'svelte';
3+
import { running } from '../../states';
4+
5+
let ref: HTMLDialogElement;
6+
let timedOut = false;
7+
8+
onMount(() => {
9+
if (localStorage.getItem('leaved-a-star')) {
10+
return;
11+
}
12+
13+
setTimeout(() => {
14+
timedOut = true;
15+
}, 60 * 1000);
16+
});
17+
18+
$: if (!$running && timedOut) {
19+
ref.showModal();
20+
}
21+
22+
const click = () => {
23+
localStorage.setItem('leaved-a-star', 'yup');
24+
ref.close();
25+
};
26+
</script>
27+
28+
<dialog
29+
id="leave_a_star"
30+
class="modal modal-bottom sm:modal-middle"
31+
{...$$restProps}
32+
bind:this={ref}
33+
>
34+
<div class="modal-box">
35+
<h3 class="text-lg font-bold">
36+
⭐️ Support This Project by Leaving a Star!
37+
</h3>
38+
<p class="py-4">
39+
If you find this project helpful or inspiring, consider showing your
40+
support by leaving a star on GitHub. Your feedback motivates us to keep
41+
improving!
42+
</p>
43+
<div class="modal-action">
44+
<a
45+
href="https://github.com/mszula/visual-sorting"
46+
target="_blank"
47+
rel="noopener noreferrer"
48+
class="btn btn-primary"
49+
on:click={click}
50+
>
51+
⭐️ Star on GitHub
52+
</a>
53+
<form method="dialog">
54+
<button class="btn">Maybe Later</button>
55+
</form>
56+
</div>
57+
</div>
58+
</dialog>

‎src/routes/+page.svelte

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import { soundStart, soundStop, type OscillatorType } from '../lib/sound';
2222
import { browser } from '$app/environment';
2323
import MobileAlgorithmSelector from '$lib/components/mobile/MobileAlgorithmSelector.svelte';
24+
import LeaveAStarModal from '$lib/components/LeaveAStarModal.svelte';
2425
2526
let selectedTheme: Theme = 'dim';
2627
let size = 300;
@@ -151,4 +152,5 @@
151152
</div>
152153
<Footer />
153154
</div>
155+
<LeaveAStarModal />
154156
</main>

0 commit comments

Comments
 (0)
Please sign in to comment.