drapcode-utility 2.4.6-preview → 2.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -132,6 +132,7 @@ const drapcodeEncryptDecrypt = async (data, encrypt) => {
132
132
  };
133
133
  exports.drapcodeEncryptDecrypt = drapcodeEncryptDecrypt;
134
134
  const cryptFile = async (filePath, encryption, decrypt) => {
135
+ console.log("encryption cryptFile:>> ", encryption);
135
136
  const data = await (0, file_1.processFileEncryptionDecryption)(filePath, encryption, decrypt);
136
137
  return data;
137
138
  };
@@ -1,10 +1,9 @@
1
- interface ExtraFieldSetting {
2
- dateDisplayType?: string;
3
- }
4
1
  interface DateField {
5
2
  fieldName: string;
6
3
  type: string;
7
- extraFieldSetting?: Map<string, ExtraFieldSetting>;
4
+ extraFieldSetting?: {
5
+ dateDisplayType?: string;
6
+ };
8
7
  }
9
8
  interface DateRangeValue {
10
9
  [key: string]: {
@@ -5,7 +5,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.formatProjectDates = exports.timezoneDateParse = exports.nextDayDate = exports.getDateRangeValue = exports.getDateValue = exports.createLogsDateFormat = exports.createLoggerPreviousDateFormat = exports.createLoggerDateFormat = exports.DATE_REGEX = void 0;
7
7
  const drapcode_constant_1 = require("drapcode-constant");
8
- const lodash_1 = __importDefault(require("lodash"));
9
8
  const moment_1 = __importDefault(require("moment"));
10
9
  const dateFormat = "YYYY-MM-DDTHH:mm:ss.SSS";
11
10
  exports.DATE_REGEX = /^[12]\d{3}(-(0[1-9]|1[0-2])(-(0[1-9]|[12][0-9]|3[01]))?)(T| )?(([01][0-9]|2[0-3]):[0-5]\d(:[0-5]\d(\.\d+)?)?(Z|[+-]\d{2}:\d{2})?)?$/;
@@ -193,17 +192,7 @@ const formatItemDates = (item, fields, dateFormat, reverse) => {
193
192
  Object.keys(item).forEach((fieldName) => {
194
193
  const field = fields.find((field) => field.fieldName === fieldName);
195
194
  if (field?.type === "date") {
196
- let dateDisplayType = "";
197
- if (field?.extraFieldSetting) {
198
- const extraFieldSetting = field?.extraFieldSetting;
199
- if (lodash_1.default.isPlainObject(extraFieldSetting)) {
200
- dateDisplayType = extraFieldSetting?.dateDisplayType;
201
- }
202
- else if (extraFieldSetting instanceof Map) {
203
- dateDisplayType = extraFieldSetting?.get("dateDisplayType") || "";
204
- }
205
- }
206
- if (dateDisplayType === "datetime-local") {
195
+ if (field?.extraFieldSetting?.dateDisplayType === "datetime-local") {
207
196
  item[fieldName] = (0, moment_1.default)(item[fieldName], dateTimeFormat).isValid()
208
197
  ? item[fieldName]
209
198
  : "";
@@ -33,6 +33,7 @@ const createS3Client = (awsConfig) => {
33
33
  exports.createS3Client = createS3Client;
34
34
  const fileUploadToS3 = async (files, s3Client, s3Config, publicS3Client, publicS3Config, isGenerateIcons, encryption, options = {}, encrypted = false) => {
35
35
  if (Array.isArray(files)) {
36
+ console.log("Multiple file");
36
37
  const fileOptions = [];
37
38
  const s3Key = s3Config.key;
38
39
  for (const file of files) {
@@ -48,17 +49,21 @@ const fileUploadToS3 = async (files, s3Client, s3Config, publicS3Client, publicS
48
49
  return fileOptions;
49
50
  }
50
51
  else {
52
+ console.log("Single file");
51
53
  const fileSlug = slugifyFileName(files.originalname);
52
54
  if (s3Config.append) {
53
55
  s3Config.key = `${s3Config.key}/${(0, uuid_1.v4)()}/${fileSlug}`;
54
56
  }
57
+ console.log("encryption :>> ", encryption);
55
58
  return await processFileUploadToS3(files, s3Client, s3Config, publicS3Client, publicS3Config, isGenerateIcons, encryption, options, encrypted);
56
59
  }
57
60
  };
58
61
  exports.fileUploadToS3 = fileUploadToS3;
59
62
  const processFileUploadToS3 = async (file, s3Client, s3Config, publicS3Client, publicS3Config, isGenerateIcons, encryption, options = {}, encrypt = false) => {
60
63
  try {
64
+ console.log("encrypt :>> ", encrypt);
61
65
  const contentType = mime_types_1.default.lookup(file.originalname) || "";
66
+ console.log("s3Config :>> ", s3Config);
62
67
  const { acl, key, bucket } = s3Config;
63
68
  let params = null;
64
69
  let encryptedFilePath = null;
@@ -83,6 +88,8 @@ const processFileUploadToS3 = async (file, s3Client, s3Config, publicS3Client, p
83
88
  ...options,
84
89
  };
85
90
  }
91
+ console.log("encryptedFilePath :>> ", encryptedFilePath);
92
+ console.log("params :>> ", params);
86
93
  const parallelUploads3 = new lib_storage_1.Upload({ client: s3Client, params });
87
94
  const data = await parallelUploads3.done();
88
95
  const { smallIcon, mediumIcon, largeIcon } = await handleIconUpload(file, contentType, publicS3Client, publicS3Config, isGenerateIcons, key, options);
@@ -299,6 +299,7 @@ const replaceDataValueIntoExpression = (expression, data, user, tenant, userSett
299
299
  const contentList = expression
300
300
  .match(/{{(.*?)}}/g)
301
301
  ?.map((b) => b.replace(/{{(.*?)}}/g, "$1"));
302
+ console.log("1 replaceDataValueIntoExpression");
302
303
  contentList?.forEach((prop) => {
303
304
  const needle = `{{${prop}}}`;
304
305
  let dataOfItem = "";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "drapcode-utility",
3
- "version": "2.4.6-preview",
4
- "description": "",
3
+ "version": "2.4.6",
4
+ "description": "DrapCode Utility",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
7
7
  "files": [
@@ -42,9 +42,9 @@
42
42
  "axios": "^1.1.2",
43
43
  "date-fns": "^4.1.0",
44
44
  "dompurify": "^3.1.7",
45
- "drapcode-constant": "^1.8.0",
45
+ "drapcode-constant": "^2.0.1",
46
46
  "drapcode-logger": "^1.3.5",
47
- "drapcode-redis": "^1.3.5",
47
+ "drapcode-redis": "^1.4.8",
48
48
  "exiftool-vendored": "^28.2.1",
49
49
  "express": "^4.17.1",
50
50
  "gm": "^1.25.0",