mirror of https://github.com/abpframework/abp
parent
ae9f593b5e
commit
155f72f2f3
@ -0,0 +1,48 @@
|
|||||||
|
var abp = abp || {};
|
||||||
|
(function () {
|
||||||
|
|
||||||
|
if (!luxon) {
|
||||||
|
throw "abp/luxon library requires the luxon library included to the page!";
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TIMING *************************************************/
|
||||||
|
|
||||||
|
abp.timing = abp.timing || {};
|
||||||
|
|
||||||
|
/* NOTIFICATION *********************************************/
|
||||||
|
|
||||||
|
var setObjectValue = function (obj, property, value) {
|
||||||
|
if (typeof property === "string") {
|
||||||
|
property = property.split('.');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (property.length > 1) {
|
||||||
|
var p = property.shift();
|
||||||
|
setObjectValue(obj[p], property, value);
|
||||||
|
} else {
|
||||||
|
obj[property[0]] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var getObjectValue = function (obj, property) {
|
||||||
|
return property.split('.').reduce((a, v) => a[v], obj)
|
||||||
|
}
|
||||||
|
|
||||||
|
abp.timing.convertFieldsToIsoDate = function (form, fields) {
|
||||||
|
for (var field of fields) {
|
||||||
|
var dateTime = luxon.DateTime
|
||||||
|
.fromFormat(
|
||||||
|
getObjectValue(form, field),
|
||||||
|
abp.localization.currentCulture.dateTimeFormat.shortDatePattern,
|
||||||
|
{locale: abp.localization.currentCulture.cultureName}
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!dateTime.invalid) {
|
||||||
|
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return form;
|
||||||
|
}
|
||||||
|
|
||||||
|
})(jQuery);
|
@ -0,0 +1,48 @@
|
|||||||
|
var abp = abp || {};
|
||||||
|
(function () {
|
||||||
|
|
||||||
|
if (!luxon) {
|
||||||
|
throw "abp/luxon library requires the luxon library included to the page!";
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TIMING *************************************************/
|
||||||
|
|
||||||
|
abp.timing = abp.timing || {};
|
||||||
|
|
||||||
|
/* NOTIFICATION *********************************************/
|
||||||
|
|
||||||
|
var setObjectValue = function (obj, property, value) {
|
||||||
|
if (typeof property === "string") {
|
||||||
|
property = property.split('.');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (property.length > 1) {
|
||||||
|
var p = property.shift();
|
||||||
|
setObjectValue(obj[p], property, value);
|
||||||
|
} else {
|
||||||
|
obj[property[0]] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var getObjectValue = function (obj, property) {
|
||||||
|
return property.split('.').reduce((a, v) => a[v], obj)
|
||||||
|
}
|
||||||
|
|
||||||
|
abp.timing.convertFieldsToIsoDate = function (form, fields) {
|
||||||
|
for (var field of fields) {
|
||||||
|
var dateTime = luxon.DateTime
|
||||||
|
.fromFormat(
|
||||||
|
getObjectValue(form, field),
|
||||||
|
abp.localization.currentCulture.dateTimeFormat.shortDatePattern,
|
||||||
|
{locale: abp.localization.currentCulture.cultureName}
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!dateTime.invalid) {
|
||||||
|
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return form;
|
||||||
|
}
|
||||||
|
|
||||||
|
})(jQuery);
|
@ -0,0 +1,48 @@
|
|||||||
|
var abp = abp || {};
|
||||||
|
(function () {
|
||||||
|
|
||||||
|
if (!luxon) {
|
||||||
|
throw "abp/luxon library requires the luxon library included to the page!";
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TIMING *************************************************/
|
||||||
|
|
||||||
|
abp.timing = abp.timing || {};
|
||||||
|
|
||||||
|
/* NOTIFICATION *********************************************/
|
||||||
|
|
||||||
|
var setObjectValue = function (obj, property, value) {
|
||||||
|
if (typeof property === "string") {
|
||||||
|
property = property.split('.');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (property.length > 1) {
|
||||||
|
var p = property.shift();
|
||||||
|
setObjectValue(obj[p], property, value);
|
||||||
|
} else {
|
||||||
|
obj[property[0]] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var getObjectValue = function (obj, property) {
|
||||||
|
return property.split('.').reduce((a, v) => a[v], obj)
|
||||||
|
}
|
||||||
|
|
||||||
|
abp.timing.convertFieldsToIsoDate = function (form, fields) {
|
||||||
|
for (var field of fields) {
|
||||||
|
var dateTime = luxon.DateTime
|
||||||
|
.fromFormat(
|
||||||
|
getObjectValue(form, field),
|
||||||
|
abp.localization.currentCulture.dateTimeFormat.shortDatePattern,
|
||||||
|
{locale: abp.localization.currentCulture.cultureName}
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!dateTime.invalid) {
|
||||||
|
setObjectValue(form, field, dateTime.toFormat("yyyy-MM-dd HH:mm:ss"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return form;
|
||||||
|
}
|
||||||
|
|
||||||
|
})(jQuery);
|
Loading…
Reference in new issue