-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from DataShades/LLCAXCHZF-56
LLCAXCHZF-56
- Loading branch information
Showing
9 changed files
with
233 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
111 changes: 111 additions & 0 deletions
111
ckanext/charts/assets/js/vendor/chartjs-adapter-moment.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
/* | ||
Purpose: | ||
To handle and display date and time data in Chart.js scatter and bubble charts with type: 'time' on the x-axis. | ||
Why We Use It: | ||
1. Date Parsing and Formatting: | ||
- Enables robust parsing and formatting of date strings using the moment library. | ||
2. Chart.js Compatibility: | ||
- Integrates with Chart.js for time-based data handling. | ||
- Necessary for using type: 'time' in chart configurations. | ||
3. Advanced Date Manipulation: | ||
- Provides functions for date manipulation like adding/subtracting time and calculating date differences. | ||
Example Usage: | ||
To use type: 'time' for the x-axis in scatter and bubble charts: | ||
const config = { | ||
type: 'scatter', | ||
data: {...}, | ||
options: { | ||
scales: { | ||
x: { | ||
type: 'time', | ||
time: { | ||
unit: 'day' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
The moment adapter ensures accurate processing and display of date and time data in Chart.js. | ||
*/ | ||
|
||
|
||
/*! | ||
* chartjs-adapter-moment v1.0.0 | ||
* https://www.chartjs.org | ||
* (c) 2021 chartjs-adapter-moment Contributors | ||
* Released under the MIT license | ||
*/ | ||
(function (global, factory) { | ||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('moment'), require('chart.js')) : | ||
typeof define === 'function' && define.amd ? define(['moment', 'chart.js'], factory) : | ||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.moment, global.Chart)); | ||
}(this, (function (moment, chart_js) { 'use strict'; | ||
|
||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } | ||
|
||
var moment__default = /*#__PURE__*/_interopDefaultLegacy(moment); | ||
|
||
const FORMATS = { | ||
datetime: 'MMM D, YYYY, h:mm:ss a', | ||
millisecond: 'h:mm:ss.SSS a', | ||
second: 'h:mm:ss a', | ||
minute: 'h:mm a', | ||
hour: 'hA', | ||
day: 'MMM D', | ||
week: 'll', | ||
month: 'MMM YYYY', | ||
quarter: '[Q]Q - YYYY', | ||
year: 'YYYY' | ||
}; | ||
|
||
chart_js._adapters._date.override(typeof moment__default['default'] === 'function' ? { | ||
_id: 'moment', // DEBUG ONLY | ||
|
||
formats: function() { | ||
return FORMATS; | ||
}, | ||
|
||
parse: function(value, format) { | ||
if (typeof value === 'string' && typeof format === 'string') { | ||
value = moment__default['default'](value, format); | ||
} else if (!(value instanceof moment__default['default'])) { | ||
value = moment__default['default'](value); | ||
} | ||
return value.isValid() ? value.valueOf() : null; | ||
}, | ||
|
||
format: function(time, format) { | ||
return moment__default['default'](time).format(format); | ||
}, | ||
|
||
add: function(time, amount, unit) { | ||
return moment__default['default'](time).add(amount, unit).valueOf(); | ||
}, | ||
|
||
diff: function(max, min, unit) { | ||
return moment__default['default'](max).diff(moment__default['default'](min), unit); | ||
}, | ||
|
||
startOf: function(time, unit, weekday) { | ||
time = moment__default['default'](time); | ||
if (unit === 'isoWeek') { | ||
weekday = Math.trunc(Math.min(Math.max(0, weekday), 6)); | ||
return time.isoWeekday(weekday).startOf('day').valueOf(); | ||
} | ||
return time.startOf(unit).valueOf(); | ||
}, | ||
|
||
endOf: function(time, unit) { | ||
return moment__default['default'](time).endOf(unit).valueOf(); | ||
} | ||
} : {}); | ||
|
||
}))); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
ckanext/charts/templates/scheming/form_snippets/chart_more_info_button.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<div class="form-group control-full control-large"> | ||
<div class="controls"> | ||
<button class="btn btn-primary" type="button" data-bs-toggle="modal" data-bs-target="#moreInfoModal"> | ||
{{ _('More info') }} | ||
</button> | ||
</div> | ||
</div> | ||
|
||
{% set datetime_mapping = { | ||
"YYYY-MM-DD": "2023-07-24", | ||
"YYYY/MM/DD": "2023/07/24", | ||
"MM-DD-YYYY": "07-24-2023", | ||
"MM/DD/YYYY": "07/24/2023", | ||
"DD-MM-YYYY": "24-07-2023", | ||
"DD/MM/YYYY": "24/07/2023", | ||
"dd/MMM/yyyy": "25/Nov/2023", | ||
"YYYYMMDD": "20231125", | ||
"YYYY-MM-DDTHH:MM:SS": "2023-07-24T14:30:00", | ||
"YYYY-MM-DD HH:mm:ss": "2023-11-25 12:34:56", | ||
"YYYY-MM-DDTHH:mm:ssZ": "2023-11-25T12:34:56Z", | ||
"YYYY-MM-DD HH:mm:ss.SSS": "2023-11-25 12:34:56.789", | ||
"MM/dd/yyyy hh:mm:ss a": "9/28/2023 2:23:15 PM", | ||
"MM/dd/yyyy hh:mm:ss a:SSS": "8/5/2023 3:31:18 AM:234", | ||
"MMdd_HH:mm:ss.SSS": "0423_11:42:35.883", | ||
"dd MMM yyyy HH:mm:ss*SSS": "23 Apr 2023 10:32:35*311", | ||
"dd MMM yyyy HH:mm:ss": "23 Apr 2023 11:42:35", | ||
"yyMMdd HH:mm:ss": "220423 11:42:35", | ||
"yy-MM-dd HH:mm:ss": "23-04-19 12:00:17" | ||
} %} | ||
|
||
<div class="modal fade" id="moreInfoModal" tabindex="-1" role="dialog" aria-labelledby="moreInfoModalLabel" aria-hidden="true"> | ||
<div class="modal-dialog" role="document"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<h5 class="modal-title" id="moreInfoModalLabel">{{ _("Supported Date Formats") }}</h5> | ||
<button type="button" class="btn-close close" data-bs-dismiss="modal" aria-label="Close"> | ||
</button> | ||
</div> | ||
<div class="modal-body"> | ||
<div class="date-formats-container"> | ||
<table class="table"> | ||
<thead> | ||
<tr> | ||
<th>{{ _("Timestamp Format") }}</th> | ||
<th>{{ _("Example") }}</th> | ||
</tr> | ||
</thead> | ||
|
||
{% for format, example in datetime_mapping.items() %} | ||
<tr> | ||
<td>{{ format }}</td> | ||
<td>{{ example }}</td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
</div> | ||
</div> | ||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">{{ _("Close") }}</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.modal-open { | ||
.module-resource { | ||
z-index: unset; | ||
} | ||
} |