Skip to content

accordian that uses bootstrap, so no custom js #1546

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions pgml-dashboard/src/components/accordion/accordion.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
div[data-controller="accordion"] {
.accordion-header {
cursor: pointer;
}

.accordion-body {
overflow: hidden;
transition: all 0.3s ease-in-out;
}

.accordion-item {
padding-top: 1rem;
padding-bottom: 1rem;
border-top: solid #{$gray-600} 1px;
}

.accordion-item:last-child {
border-bottom: solid #{$gray-600} 1px;
}

.accordion-header {
div[aria-expanded="true"] {
.title {
color: #{$gray-100};
}
.add {
display: none;
}
.remove {
display: block;
}
}
div[aria-expanded="false"] {
.title {
color: #{$gray-300};
}
.add {
display: block;
}
.remove {
display: none;
}
}
}
}
52 changes: 52 additions & 0 deletions pgml-dashboard/src/components/accordion/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
use pgml_components::{component, Component};
use sailfish::TemplateOnce;

#[derive(TemplateOnce, Default)]
#[template(path = "accordion/template.html")]
pub struct Accordion {
html_contents: Vec<Component>,
html_titles: Vec<Component>,
selected: usize,
title_size: String,
}

impl Accordion {
pub fn new() -> Accordion {
Accordion {
html_contents: Vec::new(),
html_titles: Vec::new(),
selected: 0,
title_size: "h5".to_string(),
}
}

pub fn html_contents(mut self, html_contents: Vec<Component>) -> Self {
self.html_contents = html_contents;
self
}

pub fn html_titles(mut self, html_titles: Vec<Component>) -> Self {
self.html_titles = html_titles;
self
}

pub fn set_title_size_body(mut self) -> Self {
self.title_size = "body-regular-text".to_string();
self
}

pub fn set_title_size_header(mut self, title_size: i32) -> Self {
match title_size {
1 => self.title_size = "h1".to_string(),
2 => self.title_size = "h2".to_string(),
3 => self.title_size = "h3".to_string(),
4 => self.title_size = "h4".to_string(),
5 => self.title_size = "h5".to_string(),
6 => self.title_size = "h6".to_string(),
_ => self.title_size = "h5".to_string(),
}
self
}
}

component!(Accordion);
31 changes: 31 additions & 0 deletions pgml-dashboard/src/components/accordion/template.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<%
let items = html_contents.iter().zip(html_titles.iter());
%>

<div data-controller="accordion">
<div class="accordion" id="accordionExample">
<% for (i, (content, title)) in items.enumerate() {%>

<%
let expanded = i == selected;
let target = format!("collapse{}a", i);
%>

<div class="accordion-item">
<div class="accordion-header">
<div class="d-flex justify-content-between align-items-center w-100" type="button" data-bs-toggle="collapse" data-bs-target="#<%- target %>" aria-expanded=<%- expanded %> aria-controls="<%- target %>">
<h6 class="mb-0 title <%- title_size %>"><%+ title.clone() %></h6>
<span class="add material-symbols-outlined">add</span>
<span class="remove material-symbols-outlined">remove</span>
</div>
</div>
<div id="<%- target %>" class="accordion-collapse collapse <% if expanded {%>show<% } %>" data-bs-parent="#accordionExample">
<div class="accordion-body pt-3">
<%+ content.clone() %>
</div>
</div>
</div>
<% } %>

</div>
</div>
4 changes: 4 additions & 0 deletions pgml-dashboard/src/components/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
pub mod accordian;
pub use accordian::Accordian;

// src/components/accordion
pub mod accordion;
pub use accordion::Accordion;

// src/components/badges
pub mod badges;

Expand Down
1 change: 1 addition & 0 deletions pgml-dashboard/static/css/modules.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// There is no need to edit it manually.

@import "../../src/components/accordian/accordian.scss";
@import "../../src/components/accordion/accordion.scss";
@import "../../src/components/badges/large/label/label.scss";
@import "../../src/components/badges/small/label/label.scss";
@import "../../src/components/breadcrumbs/breadcrumbs.scss";
Expand Down