API Docs for: 3.17.2
Show:

File: date/js/date-format.js

  1. /**
  2. * The `datatype` module is an alias for three utilities, Y.Date,
  3. * Y.Number and Y.XML, that provide type-conversion and string-formatting
  4. * convenience methods for various JavaScript object types.
  5. *
  6. * @module datatype
  7. * @main datatype
  8. */
  9.  
  10. /**
  11. * The Date Utility provides type-conversion and string-formatting
  12. * convenience methods for Dates.
  13. *
  14. * @module datatype-date
  15. * @main datatype-date
  16. */
  17.  
  18. /**
  19. * Date module.
  20. *
  21. * @module datatype-date
  22. */
  23.  
  24. /**
  25. * Format date module implements strftime formatters for javascript based on the
  26. * Open Group specification defined at
  27. * http://www.opengroup.org/onlinepubs/007908799/xsh/strftime.html
  28. * This implementation does not include modified conversion specifiers (i.e., Ex and Ox)
  29. *
  30. * @module datatype-date
  31. * @submodule datatype-date-format
  32. */
  33.  
  34. /**
  35. * Date provides a set of utility functions to operate against Date objects.
  36. *
  37. * @class Date
  38. * @static
  39. */
  40.  
  41. /**
  42. * Pad a number with leading spaces, zeroes or something else
  43. * @method xPad
  44. * @param x {Number} The number to be padded
  45. * @param pad {String} The character to pad the number with
  46. * @param r {Number} (optional) The base of the pad, eg, 10 implies to two digits, 100 implies to 3 digits.
  47. * @private
  48. */
  49. var xPad=function (x, pad, r)
  50. {
  51. if(typeof r === "undefined")
  52. {
  53. r=10;
  54. }
  55. pad = pad + "";
  56. for( ; parseInt(x, 10)<r && r>1; r/=10) {
  57. x = pad + x;
  58. }
  59. return x.toString();
  60. };
  61.  
  62. var Dt = {
  63. formats: {
  64. a: function (d, l) { return l.a[d.getDay()]; },
  65. A: function (d, l) { return l.A[d.getDay()]; },
  66. b: function (d, l) { return l.b[d.getMonth()]; },
  67. B: function (d, l) { return l.B[d.getMonth()]; },
  68. C: function (d) { return xPad(parseInt(d.getFullYear()/100, 10), 0); },
  69. d: ["getDate", "0"],
  70. e: ["getDate", " "],
  71. g: function (d) { return xPad(parseInt(Dt.formats.G(d)%100, 10), 0); },
  72. G: function (d) {
  73. var y = d.getFullYear();
  74. var V = parseInt(Dt.formats.V(d), 10);
  75. var W = parseInt(Dt.formats.W(d), 10);
  76.  
  77. if(W > V) {
  78. y++;
  79. } else if(W===0 && V>=52) {
  80. y--;
  81. }
  82.  
  83. return y;
  84. },
  85. H: ["getHours", "0"],
  86. I: function (d) { var I=d.getHours()%12; return xPad(I===0?12:I, 0); },
  87. j: function (d) {
  88. var gmd_1 = new Date("" + d.getFullYear() + "/1/1 GMT");
  89. var gmdate = new Date("" + d.getFullYear() + "/" + (d.getMonth()+1) + "/" + d.getDate() + " GMT");
  90. var ms = gmdate - gmd_1;
  91. var doy = parseInt(ms/60000/60/24, 10)+1;
  92. return xPad(doy, 0, 100);
  93. },
  94. k: ["getHours", " "],
  95. l: function (d) { var I=d.getHours()%12; return xPad(I===0?12:I, " "); },
  96. m: function (d) { return xPad(d.getMonth()+1, 0); },
  97. M: ["getMinutes", "0"],
  98. p: function (d, l) { return l.p[d.getHours() >= 12 ? 1 : 0 ]; },
  99. P: function (d, l) { return l.P[d.getHours() >= 12 ? 1 : 0 ]; },
  100. s: function (d, l) { return parseInt(d.getTime()/1000, 10); },
  101. S: ["getSeconds", "0"],
  102. u: function (d) { var dow = d.getDay(); return dow===0?7:dow; },
  103. U: function (d) {
  104. var doy = parseInt(Dt.formats.j(d), 10);
  105. var rdow = 6-d.getDay();
  106. var woy = parseInt((doy+rdow)/7, 10);
  107. return xPad(woy, 0);
  108. },
  109. V: function (d) {
  110. var woy = parseInt(Dt.formats.W(d), 10);
  111. var dow1_1 = (new Date("" + d.getFullYear() + "/1/1")).getDay();
  112. // First week is 01 and not 00 as in the case of %U and %W,
  113. // so we add 1 to the final result except if day 1 of the year
  114. // is a Monday (then %W returns 01).
  115. // We also need to subtract 1 if the day 1 of the year is
  116. // Friday-Sunday, so the resulting equation becomes:
  117. var idow = woy + (dow1_1 > 4 || dow1_1 <= 1 ? 0 : 1);
  118. if(idow === 53 && (new Date("" + d.getFullYear() + "/12/31")).getDay() < 4)
  119. {
  120. idow = 1;
  121. }
  122. else if(idow === 0)
  123. {
  124. idow = Dt.formats.V(new Date("" + (d.getFullYear()-1) + "/12/31"));
  125. }
  126.  
  127. return xPad(idow, 0);
  128. },
  129. w: "getDay",
  130. W: function (d) {
  131. var doy = parseInt(Dt.formats.j(d), 10);
  132. var rdow = 7-Dt.formats.u(d);
  133. var woy = parseInt((doy+rdow)/7, 10);
  134. return xPad(woy, 0, 10);
  135. },
  136. y: function (d) { return xPad(d.getFullYear()%100, 0); },
  137. Y: "getFullYear",
  138. z: function (d) {
  139. var o = d.getTimezoneOffset();
  140. var H = xPad(parseInt(Math.abs(o/60), 10), 0);
  141. var M = xPad(Math.abs(o%60), 0);
  142. return (o>0?"-":"+") + H + M;
  143. },
  144. Z: function (d) {
  145. var tz = d.toString().replace(/^.*:\d\d( GMT[+-]\d+)? \(?([A-Za-z ]+)\)?\d*$/, "$2").replace(/[a-z ]/g, "");
  146. if(tz.length > 4) {
  147. tz = Dt.formats.z(d);
  148. }
  149. return tz;
  150. },
  151. "%": function (d) { return "%"; }
  152. },
  153.  
  154. aggregates: {
  155. c: "locale",
  156. D: "%m/%d/%y",
  157. F: "%Y-%m-%d",
  158. h: "%b",
  159. n: "\n",
  160. r: "%I:%M:%S %p",
  161. R: "%H:%M",
  162. t: "\t",
  163. T: "%H:%M:%S",
  164. x: "locale",
  165. X: "locale"
  166. //"+": "%a %b %e %T %Z %Y"
  167. },
  168.  
  169. /**
  170. * Takes a native JavaScript Date and formats it as a string for display to user.
  171. *
  172. * @for Date
  173. * @method format
  174. * @param oDate {Date} Date.
  175. * @param oConfig {Object} (Optional) Object literal of configuration values:
  176. * <dl>
  177. * <dt>format {HTML} (Optional)</dt>
  178. * <dd>
  179. * <p>
  180. * Any strftime string is supported, such as "%I:%M:%S %p". strftime has several format specifiers defined by the Open group at
  181. * <a href="http://www.opengroup.org/onlinepubs/007908799/xsh/strftime.html">http://www.opengroup.org/onlinepubs/007908799/xsh/strftime.html</a>
  182. * PHP added a few of its own, defined at <a href="http://www.php.net/strftime">http://www.php.net/strftime</a>
  183. * </p>
  184. * <p>
  185. * This javascript implementation supports all the PHP specifiers and a few more. The full list is below.
  186. * </p>
  187. * <p>
  188. * If not specified, it defaults to the ISO 8601 standard date format: %Y-%m-%d.
  189. * </p>
  190. * <dl>
  191. * <dt>%a</dt> <dd>abbreviated weekday name according to the current locale</dd>
  192. * <dt>%A</dt> <dd>full weekday name according to the current locale</dd>
  193. * <dt>%b</dt> <dd>abbreviated month name according to the current locale</dd>
  194. * <dt>%B</dt> <dd>full month name according to the current locale</dd>
  195. * <dt>%c</dt> <dd>preferred date and time representation for the current locale</dd>
  196. * <dt>%C</dt> <dd>century number (the year divided by 100 and truncated to an integer, range 00 to 99)</dd>
  197. * <dt>%d</dt> <dd>day of the month as a decimal number (range 01 to 31)</dd>
  198. * <dt>%D</dt> <dd>same as %m/%d/%y</dd>
  199. * <dt>%e</dt> <dd>day of the month as a decimal number, a single digit is preceded by a space (range " 1" to "31")</dd>
  200. * <dt>%F</dt> <dd>same as %Y-%m-%d (ISO 8601 date format)</dd>
  201. * <dt>%g</dt> <dd>like %G, but without the century</dd>
  202. * <dt>%G</dt> <dd>The 4-digit year corresponding to the ISO week number</dd>
  203. * <dt>%h</dt> <dd>same as %b</dd>
  204. * <dt>%H</dt> <dd>hour as a decimal number using a 24-hour clock (range 00 to 23)</dd>
  205. * <dt>%I</dt> <dd>hour as a decimal number using a 12-hour clock (range 01 to 12)</dd>
  206. * <dt>%j</dt> <dd>day of the year as a decimal number (range 001 to 366)</dd>
  207. * <dt>%k</dt> <dd>hour as a decimal number using a 24-hour clock (range 0 to 23); single digits are preceded by a blank. (See also %H.)</dd>
  208. * <dt>%l</dt> <dd>hour as a decimal number using a 12-hour clock (range 1 to 12); single digits are preceded by a blank. (See also %I.) </dd>
  209. * <dt>%m</dt> <dd>month as a decimal number (range 01 to 12)</dd>
  210. * <dt>%M</dt> <dd>minute as a decimal number</dd>
  211. * <dt>%n</dt> <dd>newline character</dd>
  212. * <dt>%p</dt> <dd>either "AM" or "PM" according to the given time value, or the corresponding strings for the current locale</dd>
  213. * <dt>%P</dt> <dd>like %p, but lower case</dd>
  214. * <dt>%r</dt> <dd>time in a.m. and p.m. notation equal to %I:%M:%S %p</dd>
  215. * <dt>%R</dt> <dd>time in 24 hour notation equal to %H:%M</dd>
  216. * <dt>%s</dt> <dd>number of seconds since the Epoch, ie, since 1970-01-01 00:00:00 UTC</dd>
  217. * <dt>%S</dt> <dd>second as a decimal number</dd>
  218. * <dt>%t</dt> <dd>tab character</dd>
  219. * <dt>%T</dt> <dd>current time, equal to %H:%M:%S</dd>
  220. * <dt>%u</dt> <dd>weekday as a decimal number [1,7], with 1 representing Monday</dd>
  221. * <dt>%U</dt> <dd>week number of the current year as a decimal number, starting with the
  222. * first Sunday as the first day of the first week</dd>
  223. * <dt>%V</dt> <dd>The ISO 8601:1988 week number of the current year as a decimal number,
  224. * range 01 to 53, where week 1 is the first week that has at least 4 days
  225. * in the current year, and with Monday as the first day of the week.</dd>
  226. * <dt>%w</dt> <dd>day of the week as a decimal, Sunday being 0</dd>
  227. * <dt>%W</dt> <dd>week number of the current year as a decimal number, starting with the
  228. * first Monday as the first day of the first week</dd>
  229. * <dt>%x</dt> <dd>preferred date representation for the current locale without the time</dd>
  230. * <dt>%X</dt> <dd>preferred time representation for the current locale without the date</dd>
  231. * <dt>%y</dt> <dd>year as a decimal number without a century (range 00 to 99)</dd>
  232. * <dt>%Y</dt> <dd>year as a decimal number including the century</dd>
  233. * <dt>%z</dt> <dd>numerical time zone representation</dd>
  234. * <dt>%Z</dt> <dd>time zone name or abbreviation</dd>
  235. * <dt>%%</dt> <dd>a literal "%" character</dd>
  236. * </dl>
  237. * </dd>
  238. * </dl>
  239. * @return {HTML} Formatted date for display.
  240. */
  241. format : function (oDate, oConfig) {
  242. oConfig = oConfig || {};
  243.  
  244. if(!Y.Lang.isDate(oDate)) {
  245. Y.log("format called without a date", "WARN", "date");
  246. return Y.Lang.isValue(oDate) ? oDate : "";
  247. }
  248.  
  249. var format, resources, compatMode, sLocale, LOCALE;
  250.  
  251. format = oConfig.format || "%Y-%m-%d";
  252.  
  253. resources = Y.Intl.get('datatype-date-format');
  254.  
  255. var replace_aggs = function (m0, m1) {
  256. if (compatMode && m1 === "r") {
  257. return resources[m1];
  258. }
  259. var f = Dt.aggregates[m1];
  260. return (f === "locale" ? resources[m1] : f);
  261. };
  262.  
  263. var replace_formats = function (m0, m1) {
  264. var f = Dt.formats[m1];
  265. switch(Y.Lang.type(f)) {
  266. case "string": // string => built in date function
  267. return oDate[f]();
  268. case "function": // function => our own function
  269. return f.call(oDate, oDate, resources);
  270. case "array": // built in function with padding
  271. if(Y.Lang.type(f[0]) === "string") {
  272. return xPad(oDate[f[0]](), f[1]);
  273. } // no break; (fall through to default:)
  274. default:
  275. Y.log("unrecognised replacement type, please file a bug (format: " + oConfig.format + ")", "WARN", "date");
  276. return m1;
  277. }
  278. };
  279.  
  280. // First replace aggregates (run in a loop because an agg may be made up of other aggs)
  281. while(format.match(/%[cDFhnrRtTxX]/)) {
  282. format = format.replace(/%([cDFhnrRtTxX])/g, replace_aggs);
  283. }
  284.  
  285. // Now replace formats (do not run in a loop otherwise %%a will be replace with the value of %a)
  286. var str = format.replace(/%([aAbBCdegGHIjklmMpPsSuUVwWyYzZ%])/g, replace_formats);
  287.  
  288. replace_aggs = replace_formats = undefined;
  289.  
  290. return str;
  291. }
  292. };
  293.  
  294. Y.mix(Y.namespace("Date"), Dt);
  295.  
  296.  
  297. Y.namespace("DataType");
  298. Y.DataType.Date = Y.Date;
  299.