addon/components/ui-date-input.js

  1. import moment from 'moment';
  2. import Pikaday from 'pikaday';
  3. import layout from '../templates/components/ui-date-input';
  4. import Component from '@ember/component';
  5.  
  6.  
  7. let zh_cn = {
  8. previousMonth : '上一月',
  9. nextMonth : '下一月',
  10. months : ['一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月'],
  11. weekdays : ['周日','星期一','星期二','星期三','星期四','星期五','星期六'],
  12. weekdaysShort : ['日','一','二','三','四','五','六']
  13. };
  14.  
  15. /**
  16. ui-date-input component
  17.  
  18. @module components
  19. @namespace components
  20. @class UiDateInput
  21. @constructor
  22. */
  23. export default Component.extend({
  24. layout: layout,
  25. /**
  26. display language, by default is zh_CN
  27. @property {String} lang
  28. @default 'zh_CN'
  29. */
  30. lang: 'zh_CN',
  31. tagName: 'div',
  32. classNameBindings: ['class'],
  33. /**
  34. class apply to this component
  35. @property {String} class
  36. @default 'ui input'
  37. */
  38. class: 'ui input',
  39. didInsertElement(){
  40. let self = this;
  41. let options = {
  42. field: self.$('input')[0],
  43. format: self.format,
  44. position: self.position,
  45. onSelect: function () {
  46. if(typeof self.attrs.update === 'function'){
  47. self.attrs.update(this.getMoment().format(self.format));
  48. }
  49. }
  50. };
  51. if(self.lang === 'zh_CN'){
  52. options.i18n = zh_cn;
  53. }
  54. let picker = new Pikaday(options);
  55. this.set('picker', picker);
  56. },
  57. /**
  58. pikaday position 'bottom right', 'bottom left', 'top left', 'top right'
  59. @property {String} position
  60. @default 'bottom left'
  61. */
  62. position: 'bottom left',
  63. /**
  64. moment format
  65. @property {String} format
  66. @default 'YYYY-MM-DD'
  67. */
  68. format: 'YYYY-MM-DD',
  69. init(){
  70. this._super(...arguments);
  71. if(this.value && moment(this.value).isValid()){
  72. this.set('valueDisplay', moment(this.value).format(this.format));
  73. }
  74. },
  75. willDestory(){
  76. this._super(...arguments);
  77. this.picker.destroy();
  78. }
  79. });
  80.