@@ -69,6 +69,17 @@ struct HandlebarsOptions
69
69
*/
70
70
bool compat = false ;
71
71
72
+ /* * Enable tracking of ids
73
+
74
+ When enabled, the ids of the expressions are tracked and
75
+ passed to the helpers.
76
+
77
+ Helpers often use this information to update the context
78
+ path to the current expression, which can later be used to
79
+ look up the value of the expression with ".." segments.
80
+ */
81
+ bool trackIds = false ;
82
+
72
83
/* * Custom private data object
73
84
74
85
This variable can be used to pass in an object to define custom
@@ -275,7 +286,7 @@ class MRDOX_DECL OutputRef
275
286
}
276
287
277
288
std::size_t
278
- getIndent () noexcept
289
+ getIndent () const noexcept
279
290
{
280
291
return indent_;
281
292
}
@@ -303,17 +314,23 @@ class MRDOX_DECL HandlebarsCallback
303
314
{
304
315
private:
305
316
using callback_type = std::function<
306
- void (OutputRef, dom::Value const &, dom::Object const &, dom::Object const &)>;
317
+ void (
318
+ OutputRef,
319
+ dom::Value const & /* context */ ,
320
+ dom::Object const & /* data */ ,
321
+ dom::Object const & /* blockValues */ ,
322
+ dom::Object const & /* blockValuePaths */ )>;
307
323
308
324
callback_type fn_;
309
325
callback_type inverse_;
310
326
dom::Value const * context_{ nullptr };
311
327
OutputRef* output_{ nullptr };
312
328
dom::Object const * data_;
313
- std::vector<std::string_view> ids_;
314
- dom::Object hashes_;
329
+ std::vector<dom::Value> ids_;
330
+ dom::Object hash_;
331
+ dom::Object hashIds_;
315
332
std::string_view name_;
316
- std::vector<std::string_view> blockParams_ ;
333
+ std::vector<std::string_view> blockParamIds_ ;
317
334
std::function<void (dom::Value, dom::Array const &)> const * logger_;
318
335
detail::RenderState* renderState_;
319
336
friend class Handlebars ;
@@ -398,7 +415,8 @@ class MRDOX_DECL HandlebarsCallback
398
415
std::string
399
416
fn (dom::Value const & context,
400
417
dom::Object const & data,
401
- dom::Object const & blockValues) const ;
418
+ dom::Array const & blockParams,
419
+ dom::Array const & blockParamPaths) const ;
402
420
403
421
/* * Render the block content with specified private data and block parameters
404
422
@@ -417,7 +435,8 @@ class MRDOX_DECL HandlebarsCallback
417
435
fn (OutputRef out,
418
436
dom::Value const & context,
419
437
dom::Object const & data,
420
- dom::Object const & blockValues) const ;
438
+ dom::Array const & blockParams,
439
+ dom::Array const & blockParamPaths) const ;
421
440
422
441
/* * Render the inverse block content with the specified context
423
442
@@ -492,7 +511,8 @@ class MRDOX_DECL HandlebarsCallback
492
511
inverse (
493
512
dom::Value const & context,
494
513
dom::Object const & data,
495
- dom::Object const & blockValues) const ;
514
+ dom::Array const & blockParams,
515
+ dom::Array const & blockParamPaths) const ;
496
516
497
517
/* * Render the inverse block content with private data and block parameters
498
518
@@ -512,7 +532,8 @@ class MRDOX_DECL HandlebarsCallback
512
532
OutputRef out,
513
533
dom::Value const & context,
514
534
dom::Object const & data,
515
- dom::Object const & blockValues) const ;
535
+ dom::Array const & blockParamPaths,
536
+ dom::Array const & blockParams) const ;
516
537
517
538
/* * Determine if helper is being called from a block section
518
539
@@ -554,7 +575,9 @@ class MRDOX_DECL HandlebarsCallback
554
575
555
576
@return `true` if the helper is being called from a block section
556
577
*/
557
- bool isBlock () const {
578
+ bool
579
+ isBlock () const
580
+ {
558
581
return static_cast <bool >(fn_);
559
582
}
560
583
@@ -593,40 +616,46 @@ class MRDOX_DECL HandlebarsCallback
593
616
return *data_;
594
617
}
595
618
596
- // / Extra key value pairs passed to the callback
597
- dom::Object&
598
- hashes () {
599
- return hashes_;
600
- }
601
-
602
- // / Extra key value pairs passed to the callback
603
- dom::Object const &
604
- hashes () const {
605
- return hashes_;
606
- }
607
-
608
619
// / Ids of the expression parameters
609
- std::vector<std::string_view >&
620
+ std::vector<dom::Value >&
610
621
ids () {
611
622
return ids_;
612
623
}
613
624
614
625
// / Ids of the expression parameters
615
- std::vector<std::string_view > const &
626
+ std::vector<dom::Value > const &
616
627
ids () const {
617
628
return ids_;
618
629
}
619
630
620
- // / Block parameters passed to the callback
621
- std::vector<std::string_view>&
622
- blockParams () {
623
- return blockParams_;
631
+ // / Extra key value pairs passed to the callback
632
+ dom::Object&
633
+ hash () {
634
+ return hash_;
635
+ }
636
+
637
+ // / Extra key value pairs passed to the callback
638
+ dom::Object const &
639
+ hash () const {
640
+ return hash_;
641
+ }
642
+
643
+ // / Extra key value pairs passed to the callback
644
+ dom::Object&
645
+ hashIds () {
646
+ return hashIds_;
647
+ }
648
+
649
+ // / Extra key value pairs passed to the callback
650
+ dom::Object const &
651
+ hashIds () const {
652
+ return hashIds_;
624
653
}
625
654
626
655
// / Block parameters passed to the callback
627
- std::vector<std::string_view> const &
656
+ std::size_t
628
657
blockParams () const {
629
- return blockParams_ ;
658
+ return blockParamIds_. size () ;
630
659
}
631
660
632
661
/* * Name of the helper being called
@@ -1207,7 +1236,15 @@ class Handlebars {
1207
1236
HandlebarsCallback& cb,
1208
1237
HandlebarsOptions const & opt) const ;
1209
1238
1210
- std::pair<dom::Value, bool >
1239
+ struct evalExprResult {
1240
+ dom::Value value;
1241
+ bool found = false ;
1242
+ bool isLiteral = false ;
1243
+ bool isSubexpr = false ;
1244
+ bool fromBlockParams = false ;
1245
+ };
1246
+
1247
+ evalExprResult
1211
1248
evalExpr (
1212
1249
dom::Value const &context,
1213
1250
std::string_view expression,
0 commit comments