June 19th, 2010 Posted by Don Albrecht
Earlier this week, I discovered that Safari doesn’t support dates in ISO 8601 UTC combined format: “2010-06-19T03:11Z”. This was a problem as my production system was delivering me a json file with dates in this format and my project was simply a new UI for the existing server. A quick round of googling found DateJS a powerful chainable Date extension that enables both unified parsing and mask based date rendering. I’d only played with it for a few minutes before I was completely hooked on it. Just look at what it can do.
1: // What date is next thursday?
2: Date.today().next().thursday();
3:
4: // Add 3 days to Today
5: Date.today().add(3).days();
6:
7: // Is today Friday?
8: Date.today().is().friday();
9:
10: // Number fun
11: (3).days().ago();
12:
13: // 6 months from now
14: var n = 6;
15: n.months().fromNow();
16:
17: // Set to 8:30 AM on the 15th day of the month
18: Date.today().set({ day: 15, hour: 8, minute: 30 });
19:
20: // Convert text into Date
21: Date.parse('today');
22: Date.parse('t + 5 d'); // today + 5 days
23: Date.parse('next thursday');
24: Date.parse('February 20th 1973');
25: Date.parse('Thu, 1 July 2004 22:30:00');
And Yes It supports ISO 8601 UTC combined format!.
A quick replacement of my existing date toolkit in the project and my bugs were fixed.
June 9th, 2010 Posted by Don Albrecht
I know there’s a slew and a half of tutorials on this out there, but I’m adding my own to the mix. I’ve been working on a generic template for plugin development and have cobbled together what I feel is a solid one.
First thing first, however, building a plugin is about being a good citizen
- You’ve got a naming convention to deal with. jquery[your plugin name].js
- Be considerate of the $.XXX namespace. Only claim 1, and try to make it both developer friendly and unique. In our case it will be $.plugin
- Always return this.
- Always end with a “;”
- Wrap the entire thing in an anonymous function call, this will protect the plugin from instances where jquery has been renamed.
So, with all that said and done, the skeleton of a plugin looks like this:
1: (function($) {
2:
3: $.fn.myPlugin = function(settings) {
4: var config = {'foo': 'bar'};
5: if (settings) $.extend(config, settings);
6: this.each(function() {
7: // element-specific code here
8: });
9: return this;
10: };
11:
12: var newMethods = {
13: a : function() {
14: var config = {'foo': 'bar'};
15: if (settings) $.extend(config, settings);
16:
17: this.each(function() {
18: // element-specific code here
19: });
20:
21: return this;
22: },
23: b : function() { return this },
24: c : function() { return this }
25: };
26:
27: jQuery.each(newMethods, function(i) {
28: jQuery.fn.myPlugin[i] = this;
29: });
30:
31:
32: })(jQuery);
Note, what this code is doing.
First, we define the core behavior of the plugin, then extend the plugin once. This way we keep our declarations concise, clear and well encapsulated.
We have an established closure structure for shared private functions.
We keep everything encapsulated to protect the jquery namespace as much as possible, and iterate over the child functions to extend the plugin.
PS– most of this is adapted from the jquery extension guide here: http://docs.jquery.com/Plugins/Authoring