Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div data-controller="turbo-tab" class="elevate-turbo-tabs--scheme--pills">
<nav role="tablist" class="elevate-turbo-tab--nav-list">
<a href="/products/overview" data-turbo-frame="overview_frame" data-action="click->turbo-tab#setActiveTab" data-turbo-tab-target="tab" role="tab" aria-selected="false" class="elevate-turbo-tabs--tab elevate-turbo-tabs--tab--scheme--pills">Overview</a>
<a href="/products/reviews" data-turbo-frame="reviews_frame" data-action="click->turbo-tab#setActiveTab" data-turbo-tab-target="tab" role="tab" aria-selected="false" class="elevate-turbo-tabs--tab elevate-turbo-tabs--tab--scheme--pills">Reviews</a>
</nav>
<div class="elevate-turbo-tab--frame-container">
<turbo-frame role="tabpanel" data-turbo-tab-target="frame" id="overview_frame" src="/products/overview"></turbo-frame>
<div class="elevate-turbo-tab--frame-container--loading">
<svg aria-hidden="true" class="elevate-spinner elevate-spinner--size-l" viewBox="0 0 100 101" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z" fill="currentColor"/>
<path d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z" fill="currentFill"/>
</svg>
</div>
</div>
</div>
1
2
3
4
5
<%= elevate_tabbed_turbo_nav(scheme: :pills) do |component| %>
<% component.with_tab(turbo_frame_id: :overview_frame, href: overview_products_path) { "Overview" } %>
<% component.with_tab(turbo_frame_id: :specifications_frame, href: specifications_products_path, render_condition: false) { "Specifications" } %>
<% component.with_tab(turbo_frame_id: :reviews_frame, href: reviews_products_path) { "Reviews" } %>
<% end %>

app/assets/stylesheets/components/tabbed_turbo_nav.css

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
@layer components {
.elevate-turbo-tabs--scheme--pills {
.elevate-turbo-tab--nav-list {
@apply inline-flex p-1.5 gap-x-1 bg-secondary-100 rounded-full select-none my-3;
}
.elevate-turbo-tabs--tab {
@apply inline-flex items-center text-sm font-medium rounded-full px-3 py-1 whitespace-nowrap cursor-pointer border border-transparent transition-all duration-300 ease-in-out hover:border-gray-800;
&:is([aria-selected="true"], [aria-current="page"]) {
@apply bg-white text-primary-700 border border-primary-700 cursor-default;
}
}
.elevate-turbo-tab--frame-container {
@apply relative min-h-96;
}
.elevate-turbo-tab--frame-container--loading {
@apply pointer-events-none absolute inset-0 z-20 flex items-center justify-center bg-transparent/25 opacity-0 [[busy]~&]:opacity-100 backdrop-blur-sm transition-opacity;
}
}
/* ========= SCHEME BADGE ========= */
.elevate-turbo-tabs--scheme--badge {
.elevate-turbo-tab--nav-list {
@apply flex gap-x-8 border-b border-primary-200 select-none;
}
.elevate-turbo-tabs--tab {
@apply relative inline-flex items-center gap-x-2 py-3 px-1 text-sm font-normal
text-secondary-500 whitespace-nowrap cursor-pointer transition-all duration-200 ease-in-out
hover:text-secondary-900;
&::after {
@apply content-[''] pointer-events-none absolute left-0 right-0 bottom-[-1px] h-0.5 w-full bg-primary-700 scale-x-0 opacity-0 transition-all duration-200 ease-in-out;
}
&:is([aria-selected="true"], [aria-current="page"]) {
@apply text-secondary-700;
&::after {
@apply scale-x-100 opacity-100;
}
.elevate-turbo-tabs--tab-badge {
@apply bg-primary-100 text-primary-700 border border-primary-200;
}
}
.elevate-turbo-tabs--tab-badge {
@apply inline-flex items-center justify-center min-w-[1.75rem] px-2 py-0.5 rounded-md bg-gray-100 font-semibold leading-tight text-secondary-700 transition-all duration-200 ease-in-out;
}
}
.elevate-turbo-tab--frame-container {
@apply relative min-h-96;
}
.elevate-turbo-tab--frame-container--loading {
@apply pointer-events-none absolute inset-0 z-20 flex items-center justify-center bg-transparent/25 opacity-0 [[busy]~&]:opacity-100 backdrop-blur-sm transition-opacity;
}
}
}