day2cht.mjs

  1. import ot from 'dayjs'
  2. import isday from './isday.mjs'
  3. /**
  4. * 日時間轉中文格式時間字串
  5. *
  6. * Unit Test: {@link https://github.com/yuda-lyu/wsemi/blob/master/test/day2cht.test.mjs Github}
  7. * @memberOf wsemi
  8. * @param {String} t 輸入日時間字串
  9. * @param {boolean} [bNoDisplayYear=false] 輸入是否輸出民國年,預設為false
  10. * @returns {String} 回傳中文格式時間字串
  11. * @example
  12. *
  13. * console.log(day2cht('2019-01-02'))
  14. * // => '民國 108 年 1 月 2 日'
  15. *
  16. */
  17. function day2cht(t, bNoDisplayYear = false) {
  18. //check
  19. if (!isday(t)) {
  20. return ''
  21. }
  22. let d = ot(t, 'YYYY-MM-DD')
  23. let r = ''
  24. if (bNoDisplayYear) {
  25. r = (d.month() + 1) + '月' + d.date() + '日'
  26. }
  27. else {
  28. r = '民國 ' + (d.year() - 1911) + ' 年 ' + (d.month() + 1) + ' 月 ' + d.date() + ' 日'
  29. }
  30. return r
  31. }
  32. export default day2cht