Skip to content

Dan alert notification update #1223

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 3 commits into from
Dec 7, 2023
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
2 changes: 1 addition & 1 deletion pgml-dashboard/src/api/cms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ impl Collection {
Some(cluster.context.user.clone())
};

let mut layout = crate::templates::Layout::new(&title, Some(cluster.clone()));
let mut layout = crate::templates::Layout::new(&title, Some(cluster));
if let Some(image) = image {
// translate relative url into absolute for head social sharing
let parts = image.split(".gitbook/assets/").collect::<Vec<&str>>();
Expand Down

This file was deleted.

33 changes: 0 additions & 33 deletions pgml-dashboard/src/components/notifications/banner/mod.rs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,10 @@
margin-right: calc(var(--bs-gutter-x) * -0.5);
}

div[data-controller="notifications-banner"] {
div[data-controller="notifications-marketing-alert-banner"] {
.btn-tertiary {
border: 0px;
}
.news {
background-color: #{$gray-100};
color: #{$gray-900};
.btn-tertiary:hover {
filter: brightness(0.9);
}
}
.blog {
background-color: #{$neon-shade-100};
.btn-tertiary {
filter: brightness(1.5);
}
}
.launch {
background-color: #{$magenta-shade-200};
.btn-tertiary {
filter: brightness(1.5);
}
}
.tip {
background-color: #{$gray-900};
}
.level1 {
background-color: #FFFF00;
color: #{$gray-900};
Expand All @@ -42,7 +20,7 @@ div[data-controller="notifications-banner"] {
}

.close-dark {
color: #{$gray-900};
color: #{$gray-300};
}
.close-light {
color: #{$gray-100};
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
use crate::Notification;
use pgml_components::component;
use sailfish::TemplateOnce;

#[derive(TemplateOnce, Default, Clone)]
#[template(path = "notifications/marketing/alert_banner/template.html")]
pub struct AlertBanner {
pub notification: Option<Notification>,
}

impl AlertBanner {
pub fn new() -> AlertBanner {
AlertBanner { notification: None }
}

pub fn from_notification(notification: Option<&Notification>) -> AlertBanner {
match notification {
Some(notification) => {
return AlertBanner {
notification: Some(notification.clone()),
}
}
None => return AlertBanner { notification: None },
}
}
}

component!(AlertBanner);
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
<% use crate::NotificationLevel; %>
<turbo-frame id="notifications-banner" class="position-relative d-block">
<% if !remove_banner {%>
<div data-controller="notifications-banner">
<% if notification.is_some() {%>
<% let notification = notification.unwrap(); %>
<div data-controller="notifications-marketing-alert-banner">
<div class="<%- notification.level.to_string() %> W-100">
<div class="banner d-flex container p-1">
<div class="flex-grow-1 d-flex flex-column flex-md-row justify-content-center align-items-center row-gap-0 column-gap-3 fw-semibold overflow-hidden">
<div class="mx-3 overflow-hidden" style="max-width: 80%;">
<p class="m-0 text-center"><%- notification.message %></p>
</div>
<% if notification.link.is_some() {%>
<a class="btn btn-tertiary fw-semibold p-0" href="<%- notification.link.unwrap() %>" data-turbo="false">
Learn More
<span class="material-symbols-outlined">arrow_forward</span>
</a>
<% } %>
</div>
<% if notification.dismissible {%>
<a class="w-0 overflow-visible d-flex align-items-center" style="right: 4vw" href="/dashboard/notifications/remove_banner?id=<%- notification.id%>">
<span class="material-symbols-outlined <% if notification.level == NotificationLevel::Tip {%>close-light<% } else {%>close-dark<% } %>">

<% if notification.dismissible && notification.level != NotificationLevel::Level3 {%>
<a class="w-0 overflow-visible d-flex align-items-center" style="right: 4vw" href="/dashboard/notifications/remove_banner?id=<%- notification.id%>&alert=true">
<span class="material-symbols-outlined <% if notification.level == NotificationLevel::Level2 {%>close-light<% } else {%>close-dark<% } %>">
close
</span></a>
<% } %>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
div[data-controller="notifications-marketing-feature-banner"] {
.btn-tertiary {
border: 0px;
&:hover {
.more-info {
left: 0.5rem;
}
}
.more-info {
transition-duration: 0.5s;
transition-property: left;
left: 0rem;
}
}
.feature1 {
background-color: #{$slate-shade-100};
margin: 2px 0px;
.btn-tertiary {
color: #{$gray-900};
--bs-btn-color: #{$gray-900};
}
.close {
color: #{$slate-shade-600};
}
.more-info {
color: #{$gray-100}
}
}
.feature2 {
background-color: #{$violet-shade-100};
margin: 2px 0px;
.btn-tertiary {
color: #{$gray-100};
}
.close {
color: #{$gray-200};
}
.more-info {
color: #{$gray-100}
}
}
.feature3 {
background-color: #{$gray-900};
.btn-tertiary {
color: #{$gray-100};
}
.close {
color: #{$gray-300};
}
.more-info {
color: #{$slate-shade-100}
}
}

.feature1, .feature2, .feature3 {
border-radius: $border-radius-xl;
}

.message-area {
max-width: 75vw;
}
.banner {
min-height: 2rem;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
use crate::Notification;
use pgml_components::component;
use sailfish::TemplateOnce;

#[derive(TemplateOnce, Default, Clone)]
#[template(path = "notifications/marketing/feature_banner/template.html")]
pub struct FeatureBanner {
pub notification: Option<Notification>,
}

impl FeatureBanner {
pub fn new() -> FeatureBanner {
FeatureBanner { notification: None }
}

pub fn from_notification(notification: Option<&Notification>) -> FeatureBanner {
match notification {
Some(notification) => {
return FeatureBanner {
notification: Some(notification.clone()),
}
}
None => return FeatureBanner { notification: None },
}
}
}

component!(FeatureBanner);
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<% use crate::NotificationLevel; %>
<turbo-frame id="marketing-notifications-banner-feature" class="position-relative z-1">
<% if notification.is_some() {%>
<% let notification = notification.unwrap(); %>
<div data-controller="notifications-marketing-feature-banner">

<div class="<%- notification.level.to_string() %> <% if notification.level == NotificationLevel::Feature3 {%>main-gradient-border-card<% } %> rounded-3 W-100">
<div class="banner d-flex container">

<% let content = format!(
r#"
<{} class="{} flex-grow-1 d-flex flex-column flex-md-row justify-content-center align-items-center row-gap-0 column-gap-3 fw-semibold overflow-hidden">
<div class="px-3 py-3 py-sm-0 overflow-hidden">
<p class="m-0 text-center">{} {}</p>
</div>
</{}>
"#,
if notification.link.is_some() { "a" } else { "div" },
if notification.link.is_some() { "btn btn-tertiary p-0" } else { "" },
notification.message,
if notification.link.is_some() { r#"<span class="material-symbols-outlined more-info position-relative" style="top: 2px;">arrow_forward</span>"# } else { "" },
if notification.link.is_some() { "a" } else { "div" },
); %>

<%- content %>

<% if notification.dismissible {%>
<a class="w-0 btn btn-tertiary overflow-visible d-flex align-items-start p-2" style="height: fit-content" href="/dashboard/notifications/remove_banner?id=<%- notification.id%>&alert=false">
<span class="material-symbols-outlined close">
close
</span></a>
<% } %>
</div>
</div>
</div>
<% } %>
</turbo-frame>
10 changes: 10 additions & 0 deletions pgml-dashboard/src/components/notifications/marketing/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// This file is automatically generated.
// You shouldn't modify it manually.

// src/components/notifications/marketing/alert_banner
pub mod alert_banner;
pub use alert_banner::AlertBanner;

// src/components/notifications/marketing/feature_banner
pub mod feature_banner;
pub use feature_banner::FeatureBanner;
5 changes: 2 additions & 3 deletions pgml-dashboard/src/components/notifications/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// This file is automatically generated.
// You shouldn't modify it manually.

// src/components/notifications/banner
pub mod banner;
pub use banner::Banner;
// src/components/notifications/marketing
pub mod marketing;
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy