♻️ Weight is a property of mixed components struct
This commit is contained in:
parent
322cd9b6bf
commit
45cb063e52
23 changed files with 60 additions and 266 deletions
|
|
@ -4,7 +4,6 @@ use crate::prelude::*;
|
|||
#[derive(AutoDefault, ComponentClasses)]
|
||||
pub struct Block {
|
||||
id : OptionId,
|
||||
weight : Weight,
|
||||
renderable: Renderable,
|
||||
classes : OptionClasses,
|
||||
style : StyleBase,
|
||||
|
|
@ -21,10 +20,6 @@ impl ComponentTrait for Block {
|
|||
self.id.get()
|
||||
}
|
||||
|
||||
fn weight(&self) -> Weight {
|
||||
self.weight
|
||||
}
|
||||
|
||||
fn is_renderable(&self, cx: &Context) -> bool {
|
||||
(self.renderable.check)(cx)
|
||||
}
|
||||
|
|
@ -65,12 +60,6 @@ impl Block {
|
|||
self
|
||||
}
|
||||
|
||||
#[fn_builder]
|
||||
pub fn alter_weight(&mut self, value: Weight) -> &mut Self {
|
||||
self.weight = value;
|
||||
self
|
||||
}
|
||||
|
||||
#[fn_builder]
|
||||
pub fn alter_renderable(&mut self, check: FnIsRenderable) -> &mut Self {
|
||||
self.renderable.check = check;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue