Standardize props

This commit is contained in:
Thomas Gideon 2020-06-03 15:33:25 -04:00
parent 96b6152d7b
commit c833bb1957
17 changed files with 358 additions and 252 deletions

View file

@ -1,35 +1,10 @@
use crate::prelude::*;
use yew::{html::Children, prelude::*};
use yew::prelude::*;
pub struct InputGroup {
props: Props,
}
#[derive(Properties, Clone, PartialEq)]
pub struct Props {
#[prop_or_default]
pub margin: Option<Margin>,
#[prop_or_default]
pub margins: Vec<Margin>,
#[prop_or_default]
pub class: String,
#[prop_or_default]
pub children: Children,
}
impl<'a> From<&'a Props> for BootstrapProps<'a> {
fn from(props: &'a Props) -> BootstrapProps<'a> {
let borders = Vec::new();
let border_colors = Vec::new();
let margins = collect_bs(&props.margin, &props.margins);
Self {
borders,
border_colors,
margins,
}
}
}
impl Component for InputGroup {
type Message = ();
type Properties = Props;
@ -47,9 +22,9 @@ impl Component for InputGroup {
}
fn view(&self) -> Html {
let classes = calculate_classes((&self.props).into());
let class = calculate_classes("input-group", (&self.props).into());
html! {
<div class=format!("input-group {} {}", classes, self.props.class)>
<div class=class>
{ self.props.children.render() }
</div>
}