1
1
<template >
2
- <div class =" flex flex-col gap-8" >
3
- <div class =" flex gap-4" >
4
- <Link v-if =" hasParams" :patch =" currentPath" class =" border border-white px-4 py-2 rounded" >
5
- Page {{ page }}: Patch
6
- <small >Remove params</small >
7
- </Link >
8
- <Link v-else :patch =" `${currentPath}?one=1&two=hello&three=world`" class =" border border-white px-4 py-2 rounded" >
9
- Page {{ page }}: Patch
10
- </Link >
11
- <Link :navigate =" otherPagePath" class =" border border-white px-4 py-2 rounded"
12
- >Page {{ otherPage }}: Navigate</Link
2
+ <div class =" space-y-8" >
3
+ <!-- Link navigate section -->
4
+ <div class =" space-y-3" >
5
+ <h2 class =" text-xl font-semibold text-orange-phoenix" >Link navigate</h2 >
6
+ <p class =" text-white/70 mb-4" >
7
+ Navigate dismounts the current LiveView and mounts a new one, while keeping the current layout. During
8
+ navigation, a <code class =" text-orange-300" >phx-loading</code > class is added to indicate loading state. Only
9
+ works between LiveViews in the same session.
10
+ </p >
11
+ <div class =" flex gap-4" >
12
+ <Link
13
+ v-for =" page in ['one', 'two']"
14
+ :key =" page"
15
+ :navigate =" `/navigation/page_${page}`"
16
+ class =" inline-block px-4 py-2 rounded-lg bg-white/10 hover:bg-orange-600/20 transition-colors border border-orange-600/30"
17
+ >
18
+ Page {{ page }}
19
+ </Link >
20
+ </div >
21
+ </div >
22
+
23
+ <!-- Patch section -->
24
+ <div class =" space-y-3" >
25
+ <h2 class =" text-xl font-semibold text-orange-phoenix" >Patch</h2 >
26
+ <p class =" text-white/70 mb-4" >
27
+ Patch updates the current LiveView without mounting/dismounting, sending only minimal diffs to the client. It
28
+ triggers <code class =" text-orange-300" >handle_params/3</code > callback and maintains scroll position. If you try
29
+ to patch to a different LiveView, it falls back to full page reload.
30
+ </p >
31
+ <Link
32
+ :patch =" hasParams ? '?' : `?sort=asc&filter=active`"
33
+ class =" inline-block px-4 py-2 rounded-lg bg-white/10 hover:bg-orange-600/20 transition-colors border border-orange-600/30"
13
34
>
14
- <Link href =" /dead" class =" border border-white px-4 py-2 rounded" >
15
- Back to Examples <small >Normal Link</small >
35
+ {{ hasParams ? "Remove params" : "Add params" }}
16
36
</Link >
17
- </div >
18
37
19
- <div class =" flex flex-col gap-2" >
20
- <p ><strong >Page:</strong > {{ page }}</p >
21
- <div >
22
- <p ><strong >Params:</strong ></p >
23
- <pre v-if =" params" >{{ JSON.stringify(params, null, 2) }}</pre >
38
+ <div v-if =" params" class =" mt-4 p-4 rounded-lg bg-white/5 border border-white/10" >
39
+ <p class =" text-orange-phoenix font-medium mb-2" >URL Parameters:</p >
40
+ <pre class =" font-mono text-sm" >{{ JSON.stringify(params, null, 2) }}</pre >
24
41
</div >
25
42
</div >
43
+
44
+ <!-- Href section -->
45
+ <div class =" space-y-3" >
46
+ <h2 class =" text-xl font-semibold text-orange-phoenix" >Href</h2 >
47
+ <p class =" text-white/70 mb-4" >
48
+ Regular href performs HTTP-based navigation with full page reloads. It works everywhere, including across
49
+ different LiveView sessions and external links. This is the fallback mechanism when live navigation isn't
50
+ possible.
51
+ </p >
52
+ <Link
53
+ href =" /dead"
54
+ class =" inline-block px-4 py-2 rounded-lg bg-white/10 hover:bg-orange-600/20 transition-colors border border-orange-600/30"
55
+ >
56
+ Back to Examples
57
+ </Link >
58
+ </div >
26
59
</div >
27
60
</template >
28
61
@@ -31,11 +64,8 @@ import { Link } from "live_vue"
31
64
import { computed } from " vue"
32
65
33
66
const props = defineProps <{
34
- page: string
35
- otherPage: string
36
- otherPagePath: string
37
- params? : Record <string , any >
67
+ params: Record <string , string >
38
68
}>()
39
- const hasParams = computed (() => Object . keys ( props . params ?? {})?. length )
40
- const currentPath = window . location . pathname
69
+
70
+ const hasParams = computed (() => Object . keys ( props . params ). length > 0 )
41
71
</script >
0 commit comments