1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
use std::collections::BTreeMap; use context::Context; use error::RenderError; use helpers::{HelperDef, HelperResult}; use output::Output; use registry::Registry; use render::{Helper, RenderContext, Renderable}; use value::{to_json, JsonTruthy}; #[derive(Clone, Copy)] pub struct WithHelper; impl HelperDef for WithHelper { fn call<'reg: 'rc, 'rc>( &self, h: &Helper, r: &Registry, ctx: &Context, rc: &mut RenderContext, out: &mut Output, ) -> HelperResult { let param = h .param(0) .ok_or_else(|| RenderError::new("Param not found for helper \"with\""))?; rc.promote_local_vars(); let result = { let mut local_rc = rc.derive(); let not_empty = param.value().is_truthy(false); let template = if not_empty { h.template() } else { h.inverse() }; if let Some(path_root) = param.path_root() { let local_path_root = format!("{}/{}", local_rc.get_path(), path_root); local_rc.push_local_path_root(local_path_root); } if not_empty { if let Some(inner_path) = param.path() { let new_path = format!("{}/{}", local_rc.get_path(), inner_path); local_rc.set_path(new_path); } if let Some(block_param) = h.block_param() { let mut map = BTreeMap::new(); map.insert(block_param.to_string(), to_json(param.value())); local_rc.push_block_context(&map)?; } } let result = match template { Some(t) => t.render(r, ctx, &mut local_rc, out), None => Ok(()), }; if h.block_param().is_some() { local_rc.pop_block_context(); } if param.path_root().is_some() { local_rc.pop_local_path_root(); } result }; rc.demote_local_vars(); result } } pub static WITH_HELPER: WithHelper = WithHelper; #[cfg(test)] mod test { use registry::Registry; use value::to_json; #[derive(Serialize)] struct Address { city: String, country: String, } #[derive(Serialize)] struct Person { name: String, age: i16, addr: Address, titles: Vec<String>, } #[test] fn test_with() { let addr = Address { city: "Beijing".to_string(), country: "China".to_string(), }; let person = Person { name: "Ning Sun".to_string(), age: 27, addr: addr, titles: vec!["programmer".to_string(), "cartographier".to_string()], }; let mut handlebars = Registry::new(); assert!( handlebars .register_template_string("t0", "{{#with addr}}{{city}}{{/with}}") .is_ok() ); assert!( handlebars .register_template_string("t1", "{{#with notfound}}hello{{else}}world{{/with}}") .is_ok() ); assert!( handlebars .register_template_string("t2", "{{#with addr/country}}{{this}}{{/with}}") .is_ok() ); let r0 = handlebars.render("t0", &person); assert_eq!(r0.ok().unwrap(), "Beijing".to_string()); let r1 = handlebars.render("t1", &person); assert_eq!(r1.ok().unwrap(), "world".to_string()); let r2 = handlebars.render("t2", &person); assert_eq!(r2.ok().unwrap(), "China".to_string()); } #[test] fn test_with_block_param() { let addr = Address { city: "Beijing".to_string(), country: "China".to_string(), }; let person = Person { name: "Ning Sun".to_string(), age: 27, addr: addr, titles: vec!["programmer".to_string(), "cartographier".to_string()], }; let mut handlebars = Registry::new(); assert!( handlebars .register_template_string("t0", "{{#with addr as |a|}}{{a.city}}{{/with}}") .is_ok() ); assert!( handlebars .register_template_string( "t1", "{{#with notfound as |c|}}hello{{else}}world{{/with}}" ) .is_ok() ); assert!( handlebars .register_template_string("t2", "{{#with addr/country as |t|}}{{t}}{{/with}}") .is_ok() ); let r0 = handlebars.render("t0", &person); assert_eq!(r0.ok().unwrap(), "Beijing".to_string()); let r1 = handlebars.render("t1", &person); assert_eq!(r1.ok().unwrap(), "world".to_string()); let r2 = handlebars.render("t2", &person); assert_eq!(r2.ok().unwrap(), "China".to_string()); } #[test] fn test_with_in_each() { let addr = Address { city: "Beijing".to_string(), country: "China".to_string(), }; let person = Person { name: "Ning Sun".to_string(), age: 27, addr: addr, titles: vec!["programmer".to_string(), "cartographier".to_string()], }; let addr2 = Address { city: "Beijing".to_string(), country: "China".to_string(), }; let person2 = Person { name: "Ning Sun".to_string(), age: 27, addr: addr2, titles: vec!["programmer".to_string(), "cartographier".to_string()], }; let people = vec![person, person2]; let mut handlebars = Registry::new(); assert!( handlebars .register_template_string( "t0", "{{#each this}}{{#with addr}}{{city}}{{/with}}{{/each}}" ) .is_ok() ); assert!( handlebars .register_template_string( "t1", "{{#each this}}{{#with addr}}{{../age}}{{/with}}{{/each}}" ) .is_ok() ); assert!( handlebars .register_template_string( "t2", "{{#each this}}{{#with addr}}{{@../index}}{{/with}}{{/each}}" ) .is_ok() ); let r0 = handlebars.render("t0", &people); assert_eq!(r0.ok().unwrap(), "BeijingBeijing".to_string()); let r1 = handlebars.render("t1", &people); assert_eq!(r1.ok().unwrap(), "2727".to_string()); let r2 = handlebars.render("t2", &people); assert_eq!(r2.ok().unwrap(), "01".to_string()); } #[test] fn test_path_up() { let mut handlebars = Registry::new(); assert!( handlebars .register_template_string( "t0", "{{#with a}}{{#with b}}{{../../d}}{{/with}}{{/with}}" ) .is_ok() ); let data = btreemap! { "a".to_string() => to_json(&btreemap! { "b".to_string() => vec![btreemap!{"c".to_string() => vec![1]}] }), "d".to_string() => to_json(1) }; let r0 = handlebars.render("t0", &data); assert_eq!(r0.ok().unwrap(), "1".to_string()); } }