{"version":3,"sources":["../LuV.LUMAS.Services/scripts/spext/helpers/parsers.ts"],"names":["Parser","prototype","humanizeDate","date","cb","forceIncludeTime","isNaN","getTime","SP","SOD","registerSod","requirejs","toUrl","executeFunc","withTime","getHours","getMinutes","getSeconds","DateTimeUtil","SPRelativeDateTime","getRelativeDateTimeString","SPCalendarType","none","withTime2","i18n","no_date_delivered","exports","default"],"mappings":";yGAEA,IAAAA;;;;;;AAUWA,EAAAC,UAAAC,aAAP,SAAoBC,EAAYC,EAAcC,QAAA,IAAAA,IAAAA,GAAA,GACrCF,IAAQG,MAAMH,EAAKI,YAIxBC,GAAGC,IAAIC,YAAY,qBAAsBC,UAAUC,MAAM,oCACzDJ,GAAGC,IAAII,YAAY,qBAAsB,qCAAsC,WAC3E,IAAMC,EAAqE,EAA1DX,EAAKY,WAAaZ,EAAKa,aAAeb,EAAKc,aAC5Db,EAAGI,GAAGU,aAAaC,mBAAmBC,0BAA0BjB,EAAME,GAAoBS,EAAUN,GAAGU,aAAaG,eAAeC,MAAM;;AAEzItB,EAAOC,UAAUC,aAAe,SAACC,EAAYC,EAAcC,GACvD,GAAKF,IAAQG,MAAMH,EAAKI,WAAxB,CAIA,IAAMgB,EAAsE,EAA1DpB,EAAKY,WAAaZ,EAAKa,aAAeb,EAAKc,aAC7Db,EAAGI,GAAGU,aAAaC,mBAAmBC,0BAA0BjB,EAAME,GAAoBkB,EAAWf,GAAGU,aAAaG,eAAeC,MAAM,SAJtIlB,EAAGJ,EAAOwB,KAAKC,uBAVvBrB,EAAGJ,EAAOwB,KAAKC;;AAVRzB,EAAAwB,KAAO,CAClBC,kBAAqB,wBA2B7BzB,GA9BA,SAAAA,KA+BA0B,EAAAC,QAAe,IAAI3B","file":"parsers.js","sourcesContent":["/// \r\n\r\nclass Parser {\r\n //TODO: add multilingualism\r\n private static i18n = {\r\n 'no_date_delivered': 'Kein Datum angegeben',\r\n };\r\n /** formats Date object into human-better-understandable string\r\n * because of loading the datetimeutil via sod, the first call is async\r\n * the cb is a callback, which gets the formates string\r\n * set forceIncludeTime, to force the include of time into the result, otherwise it ignores the time if hour, minutes and seconds are 0\r\n */\r\n public humanizeDate(date: Date, cb: Function, forceIncludeTime: boolean = false) {\r\n if (!date || isNaN(date.getTime())) {\r\n cb(Parser.i18n.no_date_delivered);\r\n return;\r\n }\r\n SP.SOD.registerSod(\"sp.datetimeutil.js\", requirejs.toUrl(\"/_layouts/15/sp.datetimeutil.js\"));\r\n SP.SOD.executeFunc(\"sp.datetimeutil.js\", \"SP.DateTimeUtil.SPRelativeDateTime\", () => {\r\n const withTime = date.getHours() + date.getMinutes() + date.getSeconds() > 0;\r\n cb(SP.DateTimeUtil.SPRelativeDateTime.getRelativeDateTimeString(date, forceIncludeTime || withTime, SP.DateTimeUtil.SPCalendarType.none, false));\r\n //replace the humanizeDate with a syncronous version without sod, because sp.datetimeutil.js was loaded now\r\n Parser.prototype.humanizeDate = (date: Date, cb: Function, forceIncludeTime: boolean) => {\r\n if (!date || isNaN(date.getTime())) {\r\n cb(Parser.i18n.no_date_delivered);\r\n return;\r\n }\r\n const withTime2 = date.getHours() + date.getMinutes() + date.getSeconds() > 0;\r\n cb(SP.DateTimeUtil.SPRelativeDateTime.getRelativeDateTimeString(date, forceIncludeTime || withTime2, SP.DateTimeUtil.SPCalendarType.none, false));\r\n };\r\n });\r\n }\r\n}\r\nexport default new Parser();\r\n"]}