File tree 2 files changed +60
-0
lines changed
2 files changed +60
-0
lines changed Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change 21
21
import { soundStart , soundStop , type OscillatorType } from ' ../lib/sound' ;
22
22
import { browser } from ' $app/environment' ;
23
23
import MobileAlgorithmSelector from ' $lib/components/mobile/MobileAlgorithmSelector.svelte' ;
24
+ import LeaveAStarModal from ' $lib/components/LeaveAStarModal.svelte' ;
24
25
25
26
let selectedTheme: Theme = ' dim' ;
26
27
let size = 300 ;
151
152
</div >
152
153
<Footer />
153
154
</div >
155
+ <LeaveAStarModal />
154
156
</main >
You can’t perform that action at this time.
0 commit comments