171 lines
3.9 KiB
Rust
171 lines
3.9 KiB
Rust
use crate::prelude::*;
|
|
use crate::BaseHandle;
|
|
|
|
#[derive(SmartDefault)]
|
|
pub enum ButtonTarget {
|
|
#[default]
|
|
Default,
|
|
Blank,
|
|
Parent,
|
|
Top,
|
|
Context(String),
|
|
}
|
|
|
|
#[rustfmt::skip]
|
|
#[derive(BaseHandle, ComponentClasses, SmartDefault)]
|
|
pub struct Button {
|
|
id : OptionId,
|
|
weight : Weight,
|
|
renderable : Renderable,
|
|
classes : OptionClasses,
|
|
style : ButtonStyle,
|
|
font_size : FontSize,
|
|
left_icon : OptionComponent<Icon>,
|
|
right_icon : OptionComponent<Icon>,
|
|
href : OptionString,
|
|
html : OptionTranslated,
|
|
target : ButtonTarget,
|
|
}
|
|
|
|
impl ComponentTrait for Button {
|
|
fn new() -> Self {
|
|
Button::default()
|
|
}
|
|
|
|
fn id(&self) -> Option<String> {
|
|
self.id.get()
|
|
}
|
|
|
|
fn weight(&self) -> Weight {
|
|
self.weight
|
|
}
|
|
|
|
fn is_renderable(&self, cx: &Context) -> bool {
|
|
(self.renderable.check)(cx)
|
|
}
|
|
|
|
fn setup_before_prepare(&mut self, _cx: &mut Context) {
|
|
self.prepend_classes([self.style().to_string(), self.font_size().to_string()].join(" "));
|
|
}
|
|
|
|
#[rustfmt::skip]
|
|
fn prepare_component(&self, cx: &mut Context) -> PrepareMarkup {
|
|
let target = match &self.target() {
|
|
ButtonTarget::Blank => Some("_blank"),
|
|
ButtonTarget::Parent => Some("_parent"),
|
|
ButtonTarget::Top => Some("_top"),
|
|
ButtonTarget::Context(name) => Some(name.as_str()),
|
|
_ => None,
|
|
};
|
|
PrepareMarkup::With(html! {
|
|
a
|
|
id=[self.id()]
|
|
class=[self.classes().get()]
|
|
href=[self.href().get()]
|
|
target=[target]
|
|
{
|
|
(self.left_icon().render(cx))
|
|
" " span { (self.html().escaped(cx.langid())) } " "
|
|
(self.right_icon().render(cx))
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
impl Button {
|
|
pub fn anchor(href: impl Into<String>, html: L10n) -> Self {
|
|
Button::default().with_href(href).with_html(html)
|
|
}
|
|
|
|
// Button BUILDER.
|
|
|
|
#[fn_with]
|
|
pub fn alter_id(&mut self, id: impl Into<String>) -> &mut Self {
|
|
self.id.alter_value(id);
|
|
self
|
|
}
|
|
|
|
#[fn_with]
|
|
pub fn alter_weight(&mut self, value: Weight) -> &mut Self {
|
|
self.weight = value;
|
|
self
|
|
}
|
|
|
|
#[fn_with]
|
|
pub fn alter_renderable(&mut self, check: FnIsRenderable) -> &mut Self {
|
|
self.renderable.check = check;
|
|
self
|
|
}
|
|
|
|
#[fn_with]
|
|
pub fn alter_style(&mut self, style: ButtonStyle) -> &mut Self {
|
|
self.style = style;
|
|
self
|
|
}
|
|
|
|
#[fn_with]
|
|
pub fn alter_font_size(&mut self, font_size: FontSize) -> &mut Self {
|
|
self.font_size = font_size;
|
|
self
|
|
}
|
|
|
|
#[fn_with]
|
|
pub fn alter_left_icon(&mut self, icon: Option<Icon>) -> &mut Self {
|
|
self.left_icon.alter_value(icon);
|
|
self
|
|
}
|
|
|
|
#[fn_with]
|
|
pub fn alter_right_icon(&mut self, icon: Option<Icon>) -> &mut Self {
|
|
self.right_icon.alter_value(icon);
|
|
self
|
|
}
|
|
|
|
#[fn_with]
|
|
pub fn alter_href(&mut self, href: impl Into<String>) -> &mut Self {
|
|
self.href.alter_value(href);
|
|
self
|
|
}
|
|
|
|
#[fn_with]
|
|
pub fn alter_html(&mut self, html: L10n) -> &mut Self {
|
|
self.html.alter_value(html);
|
|
self
|
|
}
|
|
|
|
#[fn_with]
|
|
pub fn alter_target(&mut self, target: ButtonTarget) -> &mut Self {
|
|
self.target = target;
|
|
self
|
|
}
|
|
|
|
// Button GETTERS.
|
|
|
|
pub fn style(&self) -> &ButtonStyle {
|
|
&self.style
|
|
}
|
|
|
|
pub fn font_size(&self) -> &FontSize {
|
|
&self.font_size
|
|
}
|
|
|
|
pub fn left_icon(&self) -> &OptionComponent<Icon> {
|
|
&self.left_icon
|
|
}
|
|
|
|
pub fn right_icon(&self) -> &OptionComponent<Icon> {
|
|
&self.right_icon
|
|
}
|
|
|
|
pub fn href(&self) -> &OptionString {
|
|
&self.href
|
|
}
|
|
|
|
pub fn html(&self) -> &OptionTranslated {
|
|
&self.html
|
|
}
|
|
|
|
pub fn target(&self) -> &ButtonTarget {
|
|
&self.target
|
|
}
|
|
}
|