File: 11_accessing-parent-data.html

package info (click to toggle)
jsrender 1.0~pre21-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 560 kB
  • ctags: 90
  • sloc: makefile: 4
file content (126 lines) | stat: -rw-r--r-- 2,993 bytes parent folder | download | duplicates (3)
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
<!DOCTYPE html>
<html>
<head>
	<script src="/usr/share/javascript/jsquery/jquery.min.js" type="text/javascript"></script>
	<script src="/usr/share/javascript/jsrender/jsrender.min.js" type="text/javascript"></script>
	<link href="../resources/demos.css" rel="stylesheet" type="text/css" />

	<link href="../resources/movielist.css" rel="stylesheet" type="text/css" />
	<style>
	pre { font-size:10pt; font-weight:bold; }
	</style>
</head>
<body>
<a href="../demos.html">JsRender Demos</a><br />

<h3>Example Scenario: Accessing parent data.</h3>

<!---------------------- First Example ---------------------->

<div class="subhead">Stepping up through the views (tree of nested rendered templates)</div>

<pre>
var model = {
    specialMessage: function(...) { ... },
    theater: "Rialto",
    movies: [ ... ]
}

{{for movies}}
    &lt;tr>
        &lt;td>'{{>title}}': showing at the '{{>#parent.parent.data.theater}}'&lt;/td>
</pre>

<table>
	<thead><tr><th>Title</th><th>Languages (+specialMessage)</th></tr></thead>
	<tbody id="movieList1"></tbody>
</table>

<!---------------------- Second Example ---------------------->

<div class="subhead">Setting contextual template parameters, accessible in all nested contexts as <em>~nameOfParameter</em>:</div>

<pre>
{{for movies ~theater=theater}}
    &lt;tr>
        &lt;td>'{{>title}}': showing at the '{{>~theater}}'&lt;/td>
</pre>

<table>
	<thead><tr><th>Title</th><th>Languages (+specialMessage)</th></tr></thead>
	<tbody id="movieList2"></tbody>
</table>

<!--=================== Demo ===================-->

<!------------------ Templates ------------------>

<script id="movieTemplate1" type="text/x-jsrender">
	{{for movies}}
		<tr>
			<td>'{{>title}}': showing at the '{{>#parent.parent.data.theater}}'</td>
			<td>
				{{if languages}}
					{{for languages}}
						{{>#data}}{{>#parent.parent.parent.parent.parent.data.specialMessage(#data, #parent.parent.data.title)}}<br/>
					{{/for}}
				{{/if}}
			</td>
		</tr>
	{{/for}}
</script>

<script id="movieTemplate2" type="text/x-jsrender">
	{{for movies ~theater=theater ~specialMessage=specialMessage}}
		<tr>
			<td>'{{>title}}': showing at the '{{>~theater}}'</td>
			<td>
				{{for languages ~title=title}}
					{{>#data}}{{>~specialMessage(#data, ~title)}}<br/>
				{{/for}}
			</td>
		</tr>
	{{/for}}
</script>

<!------------------ Script ------------------>

<script type="text/javascript">

	var model = {
		specialMessage: function(language, title) {
			if (language === "French" && title === "City Hunter") { return ": (temporarily unavailable)"; }
		},
		theater: "Rialto",

		movies: [
			{
				title: "Meet Joe Black",
				languages: [
					"English",
					"French"
				]
			},
			{
				title: "City Hunter",
				languages: [
					"Mandarin",
					"French",
					"Chinese"
				]
			}
		]
	};

	$( "#movieList1" ).html(
		$( "#movieTemplate1" ).render( model )
	);

	$( "#movieList2" ).html(
		$( "#movieTemplate2" ).render( model )
	);

</script>

</body>
</html>