🚚 Renombra region_name a region_key

This commit is contained in:
Manuel Cillero 2025-10-03 01:55:03 +02:00
parent 31310c1c13
commit 9af2ac39a1
5 changed files with 44 additions and 58 deletions

View file

@ -105,9 +105,9 @@ pub trait Contextual: LangId {
#[builder_fn]
fn with_assets(self, op: ContextOp) -> Self;
/// Opera con [`ChildOp`] en una región (`region_name`) de la página.
/// Opera con [`ChildOp`] en una región (`region_key`) de la página.
#[builder_fn]
fn with_child_in(self, region_name: &'static str, op: ChildOp) -> Self;
fn with_child_in(self, region_key: &'static str, op: ChildOp) -> Self;
// **< Contextual GETTERS >*********************************************************************
@ -290,10 +290,10 @@ impl Context {
markup
}
/// Renderiza los componentes de una región (`region_name`).
pub fn render_region(&mut self, region_name: &'static str) -> Markup {
/// Renderiza los componentes de una región (`region_key`).
pub fn render_components_of(&mut self, region_key: &'static str) -> Markup {
self.regions
.merge_all_components(self.theme, region_name)
.merge_all_components(self.theme, region_key)
.render(self)
}
@ -486,8 +486,8 @@ impl Contextual for Context {
}
#[builder_fn]
fn with_child_in(mut self, region_name: &'static str, op: ChildOp) -> Self {
self.regions.alter_child_in(region_name, op);
fn with_child_in(mut self, region_key: &'static str, op: ChildOp) -> Self {
self.regions.alter_child_in(region_key, op);
self
}