Skip to content

Commit 884ae9f

Browse files
bjufreValian
authored andcommitted
chore: Add examples for the Link navigation
1 parent 8f5d568 commit 884ae9f

File tree

5 files changed

+90
-1
lines changed

5 files changed

+90
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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
13+
>
14+
<Link href="/dead" class="border border-white px-4 py-2 rounded">
15+
Back to Examples <small>Normal Link</small>
16+
</Link>
17+
</div>
18+
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>
24+
</div>
25+
</div>
26+
</div>
27+
</template>
28+
29+
<script setup lang="ts">
30+
import { Link } from "live_vue"
31+
import { computed } from "vue"
32+
33+
const props = defineProps<{
34+
page: string
35+
otherPage: string
36+
otherPagePath: string
37+
params?: Record<string, any>
38+
}>()
39+
const hasParams = computed(() => Object.keys(props.params ?? {})?.length)
40+
const currentPath = window.location.pathname
41+
</script>

example_project/lib/live_vue_examples_web/components/layouts/app.html.heex

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
{~p"/sigil", "Sigil"},
1313
{~p"/prime_vue", "Button (Prime Vue)"},
1414
{~p"/calendar", "Calendar (Vuetify)"},
15+
{~p"/navigation/page_one", "Navigation" }
1516
]}
1617
navigate={link}
1718
class="block rounded-lg leading-relaxed font-medium px-2 py-1 -mx-2 hover:bg-orange-600/10 "
@@ -25,4 +26,4 @@
2526
<%= @inner_content %>
2627
</div>
2728

28-
</div>
29+
</div>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
defmodule LiveVueExamplesWeb.Navigation.PageOne do
2+
use LiveVueExamplesWeb, :live_view
3+
4+
def render(assigns) do
5+
~H"""
6+
<.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+
/>
16+
"""
17+
end
18+
19+
def handle_params(params, _uri, socket) do
20+
{:noreply, assign(socket, :params, params)}
21+
end
22+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
defmodule LiveVueExamplesWeb.Navigation.PageTwo do
2+
use LiveVueExamplesWeb, :live_view
3+
4+
def render(assigns) do
5+
~H"""
6+
<.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+
/>
16+
"""
17+
end
18+
19+
def handle_params(params, _uri, socket) do
20+
{:noreply, assign(socket, :params, params)}
21+
end
22+
end

example_project/lib/live_vue_examples_web/router.ex

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ defmodule LiveVueExamplesWeb.Router do
2525
live "/sigil", LiveSigil
2626
live "/prime_vue", LivePrimeVue
2727
live "/calendar", CalendarLive
28+
29+
live "/navigation/page_one", Navigation.PageOne
30+
live "/navigation/page_two", Navigation.PageTwo
2831
end
2932

3033
# Other scopes may use custom stacks.

0 commit comments

Comments
 (0)