forked from cowboy/jquery-bbq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
307 lines (236 loc) · 9.5 KB
/
index.php
File metadata and controls
307 lines (236 loc) · 9.5 KB
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<?PHP
include "../index.php";
$shell['title3'] = "hashchange » Advanced";
$shell['h2'] = 'Cached AJAX + fragment + history + bookmarking = Tasty!';
// ========================================================================== //
// SCRIPT
// ========================================================================== //
ob_start();
?>
$(function(){
// For each .bbq widget, keep a data object containing a mapping of
// url-to-container for caching purposes.
$('.bbq').each(function(){
$(this).data( 'bbq', {
cache: {
// If url is '' (no fragment), display this div's content.
'': $(this).find('.bbq-default')
}
});
});
// For all links inside a .bbq widget, push the appropriate state onto the
// history when clicked.
$('.bbq a[href^=#]').live( 'click', function(e){
var state = {},
// Get the id of this .bbq widget.
id = $(this).closest( '.bbq' ).attr( 'id' ),
// Get the url from the link's href attribute, stripping any leading #.
url = $(this).attr( 'href' ).replace( /^#/, '' );
// Set the state!
state[ id ] = url;
$.bbq.pushState( state );
// And finally, prevent the default link click behavior by returning false.
return false;
});
// Bind an event to window.onhashchange that, when the history state changes,
// iterates over all .bbq widgets, getting their appropriate url from the
// current state. If that .bbq widget's url has changed, display either our
// cached content or fetch new content to be displayed.
$(window).bind( 'hashchange', function(e) {
// Iterate over all .bbq widgets.
$('.bbq').each(function(){
var that = $(this),
// Get the stored data for this .bbq widget.
data = that.data( 'bbq' ),
// Get the url for this .bbq widget from the hash, based on the
// appropriate id property. In jQuery 1.4, you should use e.getState()
// instead of $.bbq.getState().
url = $.bbq.getState( that.attr( 'id' ) ) || '';
// If the url hasn't changed, do nothing and skip to the next .bbq widget.
if ( data.url === url ) { return; }
// Store the url for the next time around.
data.url = url;
// Remove .bbq-current class from any previously "current" link(s).
that.find( 'a.bbq-current' ).removeClass( 'bbq-current' );
// Hide any visible ajax content.
that.find( '.bbq-content' ).children( ':visible' ).hide();
// Add .bbq-current class to "current" nav link(s), only if url isn't empty.
url && that.find( 'a[href="#' + url + '"]' ).addClass( 'bbq-current' );
if ( data.cache[ url ] ) {
// Since the widget is already in the cache, it doesn't need to be
// created, so instead of creating it again, let's just show it!
data.cache[ url ].show();
} else {
// Show "loading" content while AJAX content loads.
that.find( '.bbq-loading' ).show();
// Create container for this url's content and store a reference to it in
// the cache.
data.cache[ url ] = $( '<div class="bbq-item"/>' )
// Append the content container to the parent container.
.appendTo( that.find( '.bbq-content' ) )
// Load external content via AJAX. Note that in order to keep this
// example streamlined, only the content in .infobox is shown. You'll
// want to change this based on your needs.
.load( url, function(){
// Content loaded, hide "loading" content.
that.find( '.bbq-loading' ).hide();
});
}
});
})
// Since the event is only triggered when the hash changes, we need to trigger
// the event now, to handle the hash the page may have loaded with.
$(window).trigger( 'hashchange' );
});
<?
$shell['script'] = ob_get_contents();
ob_end_clean();
// ========================================================================== //
// HTML HEAD ADDITIONAL
// ========================================================================== //
ob_start();
?>
<script type="text/javascript" src="../../jquery.ba-bbq.js"></script>
<script type="text/javascript" language="javascript">
<?= $shell['script']; ?>
$(function(){
// Syntax highlighter.
SyntaxHighlighter.highlight();
});
</script>
<style type="text/css" title="text/css">
/*
bg: #FDEBDC
bg1: #FFD6AF
bg2: #FFAB59
orange: #FF7F00
brown: #913D00
lt. brown: #C4884F
*/
.bbq {
margin-bottom: 1em;
clear: both;
}
.bbq-content {
border: 1px solid #913D00;
border-top: none;
padding: 8px;
margin: 0;
float: left;
width: 682px;
height: 152px;
-moz-border-radius-bottomleft: 10px;
-moz-border-radius-bottomright: 10px;
-webkit-border-bottom-left-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
}
.bbq-item h1 {
margin: 0;
font-size: 180%;
}
.bbq-item p {
font-size: 150%;
margin: 5px 0 0;
}
.bbq-item img {
border: 1px solid #913D00;
float: right;
margin-left: 10px;
}
a.bbq-current {
font-weight: 700;
text-decoration: none;
}
.bbq-nav {
padding: 0.3em;
color: #C4884F;
border: 1px solid #C4884F;
background: #FFD6AF;
clear: both;
text-align: center;
}
.bbq-nav-top {
margin-bottom: 0;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
}
#page {
width: 700px;
}
</style>
<?
$shell['html_head'] = ob_get_contents();
ob_end_clean();
// ========================================================================== //
// HTML BODY
// ========================================================================== //
ob_start();
?>
<?= $shell['donate'] ?>
<p>
With <a href="http://benalman.com/projects/jquery-bbq-plugin/">jQuery BBQ</a> you can keep track of state, history and allow bookmarking while dynamically modifying the page via AJAX and/or DHTML.. just click the links, use your browser's back and next buttons, reload the page.. and when you're done playing, check out the code!
</p>
<p>
In this example, window.location.hash is used to store a serialized data object representing the state of multiple "widgets". Due to the flexibility of $.bbq.pushState(), a widget doesn't need to know the state of any other widget to push a state change onto the history, only their state needs to be specifed and it will be merged in, creating a new history entry and a page state that is bookmarkable. Of course, if you only want to keep track of a single item on the page, you might want to check out the <a href="../fragment-basic/">basic window.onhashchange</a> example.
</p>
<h3>This div.bbq widget has id "bbq1"</h3>
<div class="bbq" id="bbq1">
<div class="bbq-nav bbq-nav-top">
<a href="#burger.html">Burgers</a> |
<a href="#chicken.html">Chicken</a> |
<a href="#kebabs.html">Kebabs</a>
</div>
<div class="bbq-content">
<!-- This will be shown while loading AJAX content. You'll want to get an image that suits your design at http://ajaxload.info/ -->
<div class="bbq-loading" style="display:none;">
<img src="/shell/images/ajaxload-15-white.gif" alt="Loading"/> Loading content...
</div>
<!-- This content will be shown if no path is specified in the URL fragment. -->
<div class="bbq-default bbq-item">
<img src="bbq.jpg" width="200" height="150">
<h1>jQuery BBQ</h1>
<p>Click a nav item above to load some delicious AJAX content! Also, once
the content loads, feel free to further explore our savory delights by
clicking any inline links you might see.</p>
</div>
</div>
<div style="clear:both;"></div>
</div>
<h3>This div.bbq widget has id "bbq2"</h3>
<div class="bbq" id="bbq2">
<div class="bbq-nav bbq-nav-top">
<a href="#kielbasa.html">Kielbasa</a> |
<a href="#ribs.html">Ribs</a> |
<a href="#steak.html">Steak</a>
</div>
<div class="bbq-content">
<!-- This will be shown while loading AJAX content. You'll want to get an image that suits your design at http://ajaxload.info/ -->
<div class="bbq-loading" style="display:none;">
<img src="/shell/images/ajaxload-15-white.gif" alt="Loading"/> Loading content...
</div>
<!-- This content will be shown if no path is specified in the URL fragment. -->
<div class="bbq-default bbq-item">
<img src="bbq.jpg" width="200" height="150">
<h1>jQuery BBQ</h1>
<p>And there's plenty more where that came from! Don't forget to click
here for some down-home AJAX content, cooked special, just for this
content area. You just can't have too much of a good thing!</p>
</div>
</div>
<div style="clear:both;"></div>
</div>
<h3>The code</h3>
<p>Note that a lot of the following code is very similar to the <a href="../fragment-basic/">basic window.onhashchange</a> example. That's intentional! They're functionally very similar, but while this version is far more robust, it is somewhat more complex. Look at both to see which meets your needs, and don't be afraid to adapt. Also, if you want to see a robust AND simple implementation, be sure to check out the <a href="../fragment-jquery-ui-tabs/">jQuery UI Tabs</a> example.</p>
<pre class="brush:js">
<?= htmlspecialchars( $shell['script'] ); ?>
</pre>
<?
$shell['html_body'] = ob_get_contents();
ob_end_clean();
// ========================================================================== //
// DRAW SHELL
// ========================================================================== //
draw_shell();
?>