Skip to content

Commit 9d953eb

Browse files
committed
navigation example designed a little bit better 💅
1 parent 884ae9f commit 9d953eb

File tree

3 files changed

+57
-43
lines changed

3 files changed

+57
-43
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,61 @@
11
<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"
1334
>
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" }}
1636
</Link>
17-
</div>
1837

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>
2441
</div>
2542
</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>
2659
</div>
2760
</template>
2861

@@ -31,11 +64,8 @@ import { Link } from "live_vue"
3164
import { computed } from "vue"
3265
3366
const props = defineProps<{
34-
page: string
35-
otherPage: string
36-
otherPagePath: string
37-
params?: Record<string, any>
67+
params: Record<string, string>
3868
}>()
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)
4171
</script>

example_project/lib/live_vue_examples_web/live/navigation/page_one.ex

+1-9
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,7 @@ defmodule LiveVueExamplesWeb.Navigation.PageOne do
44
def render(assigns) do
55
~H"""
66
<.header>Navigation example: Page one</.header>
7-
<.vue
8-
v-component="NavigationExample"
9-
page="One"
10-
other-page="Two"
11-
other-page-path={~p"/navigation/page_two"}
12-
params={@params}
13-
v-socket={@socket}
14-
v-ssr={false}
15-
/>
7+
<.vue v-component="NavigationExample" params={@params} v-socket={@socket} />
168
"""
179
end
1810

example_project/lib/live_vue_examples_web/live/navigation/page_two.ex

+1-9
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,7 @@ defmodule LiveVueExamplesWeb.Navigation.PageTwo do
44
def render(assigns) do
55
~H"""
66
<.header>Navigation example: Page Two</.header>
7-
<.vue
8-
v-component="NavigationExample"
9-
page="Two"
10-
other-page="One"
11-
other-page-path={~p"/navigation/page_one"}
12-
params={@params}
13-
v-socket={@socket}
14-
v-ssr={false}
15-
/>
7+
<.vue v-component="NavigationExample" params={@params} v-socket={@socket} />
168
"""
179
end
1810

0 commit comments

Comments
 (0)