Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export function declarations from LocaleData Plugin #1116

Merged
merged 3 commits into from
Oct 14, 2020
Merged

Conversation

Mocha--
Copy link
Contributor

@Mocha-- Mocha-- commented Oct 6, 2020

No description provided.

@codecov
Copy link

codecov bot commented Oct 6, 2020

Codecov Report

Merging #1116 into dev will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##               dev     #1116   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files          172       174    +2     
  Lines         1557      1619   +62     
  Branches       331       356   +25     
=========================================
+ Hits          1557      1619   +62     
Impacted Files Coverage Δ
src/locale/br.js 100.00% <0.00%> (ø)
src/locale/ca.js 100.00% <0.00%> (ø)
src/locale/de.js 100.00% <0.00%> (ø)
src/locale/sr.js 100.00% <0.00%> (ø)
src/locale/sr-cyrl.js 100.00% <0.00%> (ø)
src/plugin/objectSupport/index.js 100.00% <0.00%> (ø)
src/plugin/localizedFormat/index.js 100.00% <0.00%> (ø)
src/plugin/localizedFormat/utils.js 100.00% <0.00%> (ø)
src/plugin/arraySupport/index.js 100.00% <0.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update fe90bb6...d1508c2. Read the comment docs.

@@ -6,5 +6,14 @@ export = plugin
declare module 'dayjs' {
interface Dayjs {
localeData(): any
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we add it here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You mean under interface Dayjs?

If so, I think the exported functions should not sit under the interface since those functions are not instance methods of Dayjs.

Instead, those functions are like static, not binding to a class.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How can typescript knows that weekdaysMin is available on dayjs like this dayjs.weekdaysMin()

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

because those functions are exported from module 'dayjs', which has nothing to do with interface Dayjs.

Screen Shot 2020-10-08 at 10 38 42 am

just like MinMax plugin

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True, should we take dayjs().localeData().weekdays() into consideration as well?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

right. I've added localeData types to both dayjs and Dayjs instances.

Now (dayjs or dayjs()).localeData() both have types.

@iamkun
Copy link
Owner

iamkun commented Oct 13, 2020

Looks cool.

Two minor suggestions:

  1. we can pass an instance to dayjs().localDate().months(instance), the same as monthsShort, firstDayOfWeek, weekdays, weekdaysMin, weekdaysShort
  2. we can pass a format to dayjs().localDate().longDateFormat(format) and dayjs.localDate().longDateFormat(format)

Ref: https://github.com/iamkun/dayjs/blob/dev/src/plugin/localeData/index.js#L21

@iamkun iamkun merged commit ee5a4ec into iamkun:dev Oct 14, 2020
iamkun pushed a commit that referenced this pull request Oct 23, 2020
## [1.9.4](v1.9.3...v1.9.4) (2020-10-23)

### Bug Fixes

* Add descriptions to types ([#1148](#1148)) ([9a407a1](9a407a1))
* add devHelper plugin ([#1163](#1163)) ([de49dc8](de49dc8))
* Fix Hungarian (hu) locale ([#1112](#1112)) ([ab13754](ab13754))
* fix minMax plugin parsing empty array bug ([#1062](#1062)) ([368108b](368108b))
* update adding/subtracting Duration from Dayjs object ([#1156](#1156)) ([f861aca](f861aca))
* update en-NZ locale to use proper ordinal formatting function ([#1143](#1143)) ([fcdbc58](fcdbc58))
* update localeData plugin type ([#1116](#1116)) ([ee5a4ec](ee5a4ec))
* update timezone plugin to support custom parse format ([#1160](#1160)) ([48cbf31](48cbf31)), closes [#1159](#1159)
* update timezone plugin to support keepLocalTime ([#1161](#1161)) ([1d429e5](1d429e5)), closes [#1149](#1149)
@iamkun
Copy link
Owner

iamkun commented Oct 23, 2020

🎉 This PR is included in version 1.9.4 🎉

The release is available on:

Your semantic-release bot 📦🚀

andrewhood125ruhuc added a commit to andrewhood125ruhuc/SidRH2 that referenced this pull request May 10, 2022
## [1.9.4](iamkun/dayjs@v1.9.3...v1.9.4) (2020-10-23)

### Bug Fixes

* Add descriptions to types ([#1148](iamkun/dayjs#1148)) ([9a407a1](iamkun/dayjs@9a407a1))
* add devHelper plugin ([#1163](iamkun/dayjs#1163)) ([de49dc8](iamkun/dayjs@de49dc8))
* Fix Hungarian (hu) locale ([#1112](iamkun/dayjs#1112)) ([ab13754](iamkun/dayjs@ab13754))
* fix minMax plugin parsing empty array bug ([#1062](iamkun/dayjs#1062)) ([368108b](iamkun/dayjs@368108b))
* update adding/subtracting Duration from Dayjs object ([#1156](iamkun/dayjs#1156)) ([f861aca](iamkun/dayjs@f861aca))
* update en-NZ locale to use proper ordinal formatting function ([#1143](iamkun/dayjs#1143)) ([fcdbc58](iamkun/dayjs@fcdbc58))
* update localeData plugin type ([#1116](iamkun/dayjs#1116)) ([ee5a4ec](iamkun/dayjs@ee5a4ec))
* update timezone plugin to support custom parse format ([#1160](iamkun/dayjs#1160)) ([48cbf31](iamkun/dayjs@48cbf31)), closes [#1159](iamkun/dayjs#1159)
* update timezone plugin to support keepLocalTime ([#1161](iamkun/dayjs#1161)) ([1d429e5](iamkun/dayjs@1d429e5)), closes [#1149](iamkun/dayjs#1149)
andrewhood125ruhuc added a commit to andrewhood125ruhuc/SidRH2 that referenced this pull request May 10, 2022
## [1.9.4](iamkun/dayjs@v1.9.3...v1.9.4) (2020-10-23)

### Bug Fixes

* Add descriptions to types ([#1148](iamkun/dayjs#1148)) ([9a407a1](iamkun/dayjs@9a407a1))
* add devHelper plugin ([#1163](iamkun/dayjs#1163)) ([de49dc8](iamkun/dayjs@de49dc8))
* Fix Hungarian (hu) locale ([#1112](iamkun/dayjs#1112)) ([ab13754](iamkun/dayjs@ab13754))
* fix minMax plugin parsing empty array bug ([#1062](iamkun/dayjs#1062)) ([368108b](iamkun/dayjs@368108b))
* update adding/subtracting Duration from Dayjs object ([#1156](iamkun/dayjs#1156)) ([f861aca](iamkun/dayjs@f861aca))
* update en-NZ locale to use proper ordinal formatting function ([#1143](iamkun/dayjs#1143)) ([fcdbc58](iamkun/dayjs@fcdbc58))
* update localeData plugin type ([#1116](iamkun/dayjs#1116)) ([ee5a4ec](iamkun/dayjs@ee5a4ec))
* update timezone plugin to support custom parse format ([#1160](iamkun/dayjs#1160)) ([48cbf31](iamkun/dayjs@48cbf31)), closes [#1159](iamkun/dayjs#1159)
* update timezone plugin to support keepLocalTime ([#1161](iamkun/dayjs#1161)) ([1d429e5](iamkun/dayjs@1d429e5)), closes [#1149](iamkun/dayjs#1149)
allmoviestvshowslistsfilmography28 added a commit to allmoviestvshowslistsfilmography28/dayjs that referenced this pull request Sep 12, 2024
## [1.9.4](iamkun/dayjs@v1.9.3...v1.9.4) (2020-10-23)

### Bug Fixes

* Add descriptions to types ([#1148](iamkun/dayjs#1148)) ([7400378](iamkun/dayjs@7400378))
* add devHelper plugin ([#1163](iamkun/dayjs#1163)) ([fa3d829](iamkun/dayjs@fa3d829))
* Fix Hungarian (hu) locale ([#1112](iamkun/dayjs#1112)) ([153d268](iamkun/dayjs@153d268))
* fix minMax plugin parsing empty array bug ([#1062](iamkun/dayjs#1062)) ([6de1f5b](iamkun/dayjs@6de1f5b))
* update adding/subtracting Duration from Dayjs object ([#1156](iamkun/dayjs#1156)) ([a481a16](iamkun/dayjs@a481a16))
* update en-NZ locale to use proper ordinal formatting function ([#1143](iamkun/dayjs#1143)) ([9e1e68a](iamkun/dayjs@9e1e68a))
* update localeData plugin type ([#1116](iamkun/dayjs#1116)) ([eba7980](iamkun/dayjs@eba7980))
* update timezone plugin to support custom parse format ([#1160](iamkun/dayjs#1160)) ([92fffe8](iamkun/dayjs@92fffe8)), closes [#1159](iamkun/dayjs#1159)
* update timezone plugin to support keepLocalTime ([#1161](iamkun/dayjs#1161)) ([9a0e271](iamkun/dayjs@9a0e271)), closes [#1149](iamkun/dayjs#1149)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants