@ozdao/prometheus-framework 0.1.31 → 0.1.32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. package/dist/CardOrganization-26714a5e.mjs +297 -0
  2. package/dist/CardOrganization-88c6d479.js +1 -0
  3. package/dist/Chips-0e5bdd54.js +1 -0
  4. package/dist/Chips-5e32c8cb.mjs +200 -0
  5. package/dist/Feed-275a14d8.mjs +371 -0
  6. package/dist/Feed-505b3fa8.mjs +383 -0
  7. package/dist/Feed-d0da2943.js +1 -0
  8. package/dist/Feed-ee36f80b.js +1 -0
  9. package/dist/IconEdit-1b7b5874.js +1 -0
  10. package/dist/IconEdit-680dc269.mjs +339 -0
  11. package/dist/Image-2d2e606a.js +9 -0
  12. package/dist/Image-95c0fb07.mjs +480 -0
  13. package/dist/Product-6aa1c9ee.mjs +844 -0
  14. package/dist/Product-6ca8d04d.js +7 -0
  15. package/dist/ProductEdit-2e309add.js +1 -0
  16. package/dist/ProductEdit-6abcc97b.mjs +306 -0
  17. package/dist/ProfileBlogposts-62d5e809.mjs +70 -0
  18. package/dist/ProfileBlogposts-c31917ec.js +1 -0
  19. package/dist/ProfileEvents-89471c05.js +1 -0
  20. package/dist/ProfileEvents-e070d9d4.mjs +62 -0
  21. package/dist/ProfileOrganizations-bee6a3ae.js +1 -0
  22. package/dist/ProfileOrganizations-db313b5e.mjs +219 -0
  23. package/dist/Publics-24f055eb.js +1 -0
  24. package/dist/Publics-b1cbfd97.mjs +45 -0
  25. package/dist/Socials-9b2d27a6.js +1 -0
  26. package/dist/Socials-becde7dc.mjs +275 -0
  27. package/dist/auth.client.cjs +7 -7
  28. package/dist/auth.client.js +165 -162
  29. package/dist/community.client.cjs +1 -1
  30. package/dist/community.client.js +7 -7
  31. package/dist/events.client.cjs +1 -1
  32. package/dist/events.client.js +5 -5
  33. package/dist/events.server.js +9 -1
  34. package/dist/events.server.mjs +9 -1
  35. package/dist/organizations.client-6a69b54a.js +3 -0
  36. package/dist/organizations.client-c288ff44.mjs +3072 -0
  37. package/dist/organizations.client.cjs +1 -1
  38. package/dist/organizations.client.js +8 -8
  39. package/dist/users.client.cjs +1 -1
  40. package/dist/users.client.js +5 -5
  41. package/package.json +1 -1
  42. package/src/modules/auth/router/auth.js +1 -1
  43. package/src/modules/events/controllers/events.controller.js +12 -2
  44. package/src/modules/reports/components/sections/FormReport.vue +3 -1
@@ -0,0 +1,480 @@
1
+ import { ref as d, onUpdated as U, nextTick as b, onMounted as F, openBlock as i, createElementBlock as p, withDirectives as B, createElementVNode as v, vModelText as $, watch as E, createTextVNode as j, toDisplayString as I, withModifiers as D, watchEffect as K, unref as _, createBlock as R, withCtx as L, Fragment as V, renderList as A, resolveDynamicComponent as P, normalizeClass as W, createVNode as H, Transition as q, createCommentVNode as w } from "vue";
2
+ import { a as S } from "./index-a661083c.mjs";
3
+ import { V as G } from "./vue-draggable-next.esm-bundler-ff6e3f52.mjs";
4
+ import { _ as J } from "./Chips-5e32c8cb.mjs";
5
+ const O = ["placeholder"], Q = {
6
+ __name: "Textarea",
7
+ props: ["prop", "value", "content", "placeholder", "index", "setFocus"],
8
+ emits: ["deleteBlock", "updateBlock", "addBlock", "focus"],
9
+ setup(n, { emit: s }) {
10
+ const t = n;
11
+ d(t);
12
+ const e = d(null);
13
+ d(0);
14
+ function f(o) {
15
+ let l = o.target.value.split(/\n+/);
16
+ if (l.length > 1) {
17
+ t.prop[t.content] = l[0], b(() => {
18
+ a();
19
+ });
20
+ let c = l.slice(1).map((h) => ({ __name: "Textarea", content: h }));
21
+ s("addBlock", "Textarea", "", t.index, { blocks: c, ref: e });
22
+ } else
23
+ o.target.value.trim() === "" && o.target.value.includes(`
24
+
25
+ `) && (console.log("We are adding new block:" + t.index + newBlocks + e), s("addBlock", "Textarea", "", t.index, { blocks: newBlocks, ref: e })), a();
26
+ }
27
+ function u(o) {
28
+ (o.keyCode === 8 || o.keyCode === 46) && t.prop[t.content].trim() === "" && s("deleteBlock", t.prop);
29
+ }
30
+ function r() {
31
+ b(() => {
32
+ e.value.focus(), s("updateBlock", t.prop, { setFocus: !1 });
33
+ });
34
+ }
35
+ function a() {
36
+ e.value.style.height = "1rem", e.value.style.height = e.value.scrollHeight + "px";
37
+ }
38
+ return U(() => {
39
+ t.setFocus && b(() => {
40
+ r();
41
+ }), a();
42
+ }), F(() => {
43
+ t.setFocus && b(() => {
44
+ r();
45
+ }), a();
46
+ }), (o, l) => (i(), p("div", null, [
47
+ B(v("textarea", {
48
+ "onUpdate:modelValue": l[0] || (l[0] = (c) => n.prop[n.content] = c),
49
+ placeholder: n.placeholder ? n.placeholder : "Enter text",
50
+ onInput: f,
51
+ onFocus: l[1] || (l[1] = (c) => s("focus", e.value)),
52
+ onKeyup: u,
53
+ ref_key: "textarea",
54
+ ref: e,
55
+ class: "text-area mn-thin"
56
+ }, `
57
+ `, 40, O), [
58
+ [$, n.prop[n.content]]
59
+ ])
60
+ ]));
61
+ }
62
+ };
63
+ const X = ["placeholder"], Y = {
64
+ __name: "H2",
65
+ props: ["obj", "label", "prop", "value", "content", "textarea", "placeholder", "index", "ref", "setFocus"],
66
+ emits: ["deleteBlock", "updateBlock", "addBlock", "focus"],
67
+ setup(n, { emit: s }) {
68
+ const t = n;
69
+ d(t);
70
+ const e = d(null);
71
+ d(0);
72
+ function f(o) {
73
+ let l = o.target.value.split(/\n+/);
74
+ if (l.length > 1) {
75
+ t.prop[t.content] = l[0], b(() => {
76
+ a();
77
+ });
78
+ let c = l.slice(1).map((h) => ({ type: "Textarea", content: h }));
79
+ s("addBlock", "Textarea", "", t.index, { blocks: c, ref: e });
80
+ } else
81
+ o.target.value.trim() === "" && o.target.value.includes(`
82
+
83
+ `) && (console.log("We are adding new block:" + t.index + newBlocks + e), s("addBlock", "Textarea", "", t.index, { blocks: newBlocks, ref: e })), a();
84
+ }
85
+ function u(o) {
86
+ (o.keyCode === 8 || o.keyCode === 46) && t.prop[t.content].trim() === "" && s("deleteBlock", t.prop);
87
+ }
88
+ function r() {
89
+ b(() => {
90
+ e.value.focus(), s("updateBlock", t.prop, { setFocus: !1 });
91
+ });
92
+ }
93
+ function a() {
94
+ e.value.style.height = "1rem", e.value.style.height = e.value.scrollHeight + "px";
95
+ }
96
+ return U(() => {
97
+ t.setFocus && b(() => {
98
+ r();
99
+ }), a();
100
+ }), F(() => {
101
+ t.setFocus && b(() => {
102
+ r();
103
+ }), a();
104
+ }), E(() => t.prop[t.content], (o) => {
105
+ }), (o, l) => (i(), p("div", null, [
106
+ B(v("textarea", {
107
+ "onUpdate:modelValue": l[0] || (l[0] = (c) => n.prop[n.content] = c),
108
+ placeholder: n.placeholder ? n.placeholder : "Enter text",
109
+ onInput: f,
110
+ onFocus: l[1] || (l[1] = (c) => s("focus", e.value)),
111
+ onKeyup: u,
112
+ ref_key: "textarea",
113
+ ref: e,
114
+ class: "h3 text-area mn-thin"
115
+ }, `
116
+ `, 40, X), [
117
+ [$, n.prop[n.content]]
118
+ ])
119
+ ]));
120
+ }
121
+ }, Z = ["placeholder"], ee = {
122
+ __name: "Caption",
123
+ props: ["obj", "label", "prop", "value", "content", "textarea", "placeholder", "index", "ref"],
124
+ emits: ["deleteBlock", "addBlock", "focus"],
125
+ setup(n, { emit: s }) {
126
+ const t = n;
127
+ d(t);
128
+ const e = d(null);
129
+ function f(r) {
130
+ const a = /^\s*[-*]\s+(.*)/;
131
+ let l = r.target.value.split(/\n+/).map((c) => {
132
+ const h = a.exec(c);
133
+ return h ? h[1] : null;
134
+ }).filter((c) => c !== null);
135
+ l.length > 0 ? (t.prop[t.content] = l, u()) : r.target.value.trim() === "" && (t.prop[t.content] = [], u());
136
+ }
137
+ function u() {
138
+ e.value.style.height = "1rem", e.value.style.height = e.value.scrollHeight + "px";
139
+ }
140
+ return U(() => {
141
+ u();
142
+ }), F(() => {
143
+ u();
144
+ }), E(() => t.prop[t.content], (r) => {
145
+ (!r || r.length === 0) && s("deleteBlock", t.prop);
146
+ }), (r, a) => (i(), p("div", null, [
147
+ B(v("textarea", {
148
+ "onUpdate:modelValue": a[0] || (a[0] = (o) => n.prop[n.content] = o),
149
+ placeholder: n.placeholder ? n.placeholder : "Enter text",
150
+ onInput: f,
151
+ onFocus: a[1] || (a[1] = (o) => s("focus", e.value)),
152
+ ref_key: "textarea",
153
+ ref: e,
154
+ class: "br-l br-solid br-main pd-l-small text-area mn-small"
155
+ }, `
156
+ `, 40, Z), [
157
+ [$, n.prop[n.content]]
158
+ ])
159
+ ]));
160
+ }
161
+ }, te = ["placeholder"], ne = {
162
+ __name: "Bullets",
163
+ props: ["obj", "label", "prop", "value", "content", "textarea", "placeholder", "index", "ref"],
164
+ emits: ["deleteBlock", "addBlock", "focus"],
165
+ setup(n, { emit: s }) {
166
+ const t = n;
167
+ d(t);
168
+ const e = d(null);
169
+ function f(r) {
170
+ const a = /^\s*[-*]\s+(.*)/;
171
+ let l = r.target.value.split(/\n+/).map((c) => {
172
+ const h = a.exec(c);
173
+ return h ? h[1] : null;
174
+ }).filter((c) => c !== null);
175
+ l.length > 0 ? (t.prop[t.content] = l, u()) : r.target.value.trim() === "" && (t.prop[t.content] = [], u());
176
+ }
177
+ function u() {
178
+ e.value.style.height = "1rem", e.value.style.height = e.value.scrollHeight + "px";
179
+ }
180
+ return U(() => {
181
+ u();
182
+ }), F(() => {
183
+ u();
184
+ }), E(() => t.prop[t.content], (r) => {
185
+ (!r || r.length === 0) && s("deleteBlock", t.prop);
186
+ }), (r, a) => (i(), p("div", null, [
187
+ j(I(n.prop[n.content]) + " ", 1),
188
+ B(v("textarea", {
189
+ "onUpdate:modelValue": a[0] || (a[0] = (o) => n.prop[n.content] = o),
190
+ placeholder: n.placeholder ? n.placeholder : "Enter text",
191
+ onInput: f,
192
+ onFocus: a[1] || (a[1] = (o) => s("focus", e.value)),
193
+ ref_key: "textarea",
194
+ ref: e,
195
+ class: "text-area mn-small"
196
+ }, `
197
+ `, 40, te), [
198
+ [$, n.prop[n.content]]
199
+ ])
200
+ ]));
201
+ }
202
+ }, le = ["src"], oe = {
203
+ key: 1,
204
+ class: "t-transp pd-extra"
205
+ }, ae = {
206
+ __name: "ImageUpload",
207
+ props: [
208
+ "label",
209
+ "value",
210
+ "prop"
211
+ ],
212
+ emits: ["input", "updateBlock"],
213
+ setup(n, { emit: s }) {
214
+ const t = n, e = d(null), f = d(null);
215
+ function u() {
216
+ f.value.click();
217
+ }
218
+ async function r(o) {
219
+ let l = o.target.files[0];
220
+ console.log(l);
221
+ let c = new FormData(), h = "unsorted";
222
+ c.append("file", l), console.log(c.has("file"));
223
+ try {
224
+ let y = await S.create({ baseURL: process.env.API_URL, withCredentials: !0 }).post(`/api/upload/file?folderName=${encodeURIComponent(h)}`, c, {
225
+ headers: {
226
+ "Content-Type": "multipart/form-data"
227
+ }
228
+ });
229
+ e.value = y.data.filepath, console.log(e.value), s("input", e.value), s("updateBlock", t.prop, { content: e.value });
230
+ } catch (C) {
231
+ console.error(C);
232
+ }
233
+ }
234
+ function a(o) {
235
+ o.preventDefault(), r({
236
+ target: {
237
+ files: o.dataTransfer.files
238
+ }
239
+ });
240
+ }
241
+ return (o, l) => (i(), p("div", {
242
+ onClick: u,
243
+ onDrop: a,
244
+ onDragover: l[0] || (l[0] = D(() => {
245
+ }, ["prevent"])),
246
+ class: "w-100 radius-big bg-white image-upload-area flex-v-center flex-h-center flex t-black mn-small"
247
+ }, [
248
+ n.prop.content ? (i(), p("img", {
249
+ key: 0,
250
+ src: (o.FILE_SERVER_URL || "") + n.prop.content,
251
+ alt: "Uploaded image",
252
+ class: "w-100 h-30r object-fit-contain"
253
+ }, null, 8, le)) : (i(), p("span", oe, "Click or drag-and-drop your image")),
254
+ v("input", {
255
+ type: "file",
256
+ ref_key: "fileInput",
257
+ ref: f,
258
+ onChange: r,
259
+ style: { display: "none" }
260
+ }, null, 544)
261
+ ], 32));
262
+ }
263
+ }, se = ["onMouseover"], re = {
264
+ key: 0,
265
+ class: "z-index-5 radius-thin mn-small relative left-0 mt-2 w-max bg-white shadow-lg rounded"
266
+ }, ce = ["onClick"], ue = ["onClick"], ie = ["onClick"], Ce = {
267
+ __name: "Constructor",
268
+ props: ["content"],
269
+ emits: ["update"],
270
+ setup(n, { emit: s }) {
271
+ const t = n;
272
+ let e = d(null);
273
+ d(null), e.value = { content: t.content };
274
+ const f = {
275
+ Textarea: Q,
276
+ H2: Y,
277
+ Bullets: ne,
278
+ Caption: ee,
279
+ ImageUpload: ae
280
+ };
281
+ function u(y = "Textarea", x = "", m, g) {
282
+ console.log("We are adding new block (functuin HandleAddBlock):" + y + x + m + g);
283
+ let k = {
284
+ order: e.value.content.length + 1,
285
+ type: y,
286
+ style: "",
287
+ class: "",
288
+ content: x,
289
+ blocks: [],
290
+ setFocus: !0
291
+ };
292
+ if (g && g.blocks && Array.isArray(g.blocks)) {
293
+ let T = g.blocks.map((N) => ({
294
+ ...k,
295
+ content: N.content
296
+ })), z = [(g.index || m) + 1, 0].concat(T);
297
+ e.value.content.splice.apply(e.value.content, z);
298
+ const M = T[T.length - 1];
299
+ console.log("New block is" + M);
300
+ } else
301
+ m !== void 0 ? (e.value.content.splice(m + 1, 0, k), console.log("Latest block is" + k)) : (console.log("Another block is" + k), e.value.content.push(k));
302
+ o.value = null, s("update", e.value.content);
303
+ }
304
+ function r(y, x) {
305
+ const m = e.value.content.findIndex((g) => g === y);
306
+ m !== -1 && (e.value.content[m] = { ...e.value.content[m], ...x }), s("update", e.value.content);
307
+ }
308
+ function a(y) {
309
+ let x = e.value.content.findIndex((m) => m === y);
310
+ x !== -1 && e.value.content.splice(x, 1), e.value.content[x - 1].setFocus = !0, s("update", e.value.content);
311
+ }
312
+ const o = d(null), l = d(!1), c = d(!1);
313
+ function h() {
314
+ l.value = !0;
315
+ }
316
+ function C() {
317
+ l.value = !1;
318
+ }
319
+ return K(() => {
320
+ e.value && e.value.content.length === 0 && u("Textarea", ""), s("update", e.value.content);
321
+ }), (y, x) => (i(), p("section", null, [
322
+ _(e).content ? (i(), R(_(G), {
323
+ key: 0,
324
+ class: "w-full",
325
+ list: _(e).content,
326
+ onStart: h,
327
+ onEnd: C
328
+ }, {
329
+ default: L(() => [
330
+ (i(!0), p(V, null, A(_(e).content, (m, g) => (i(), p("div", {
331
+ key: g,
332
+ class: "pos-relative"
333
+ }, [
334
+ v("div", {
335
+ onMouseover: (k) => (o.value = g, c.value = !1),
336
+ class: "pos-relative w-full h-full"
337
+ }, [
338
+ (i(), R(P(f[m.type]), {
339
+ index: g,
340
+ component: m,
341
+ prop: m,
342
+ class: W(m.class),
343
+ setFocus: m.setFocus,
344
+ content: "content",
345
+ onDeleteBlock: a,
346
+ onAddBlock: u,
347
+ onUpdateBlock: r
348
+ }, null, 40, ["index", "component", "prop", "class", "setFocus"]))
349
+ ], 40, se),
350
+ H(q, { name: "fade" }, {
351
+ default: L(() => [
352
+ o.value === g ? (i(), p("div", {
353
+ key: 0,
354
+ class: "pos-absolute pos-r-100 pos-t-0 z-index-4 i-semi",
355
+ onMousedown: x[1] || (x[1] = D((k) => l.value = !0, ["prevent"]))
356
+ }, [
357
+ v("button", {
358
+ onClick: x[0] || (x[0] = (k) => c.value = !c.value),
359
+ class: "mn-small w-100 i-semi bg-white radius-thin"
360
+ }, I(m.content ? "..." : "+"), 1),
361
+ c.value ? (i(), p("div", re, [
362
+ v("button", {
363
+ onClick: (k) => a(m),
364
+ class: "block w-max text-left px-4 py-2 hover:bg-gray-200"
365
+ }, "Remove", 8, ce),
366
+ v("button", {
367
+ onClick: (k) => u("ImageUpload", "", g),
368
+ class: "block w-max text-left px-4 py-2 hover:bg-gray-200"
369
+ }, "Add Image", 8, ue),
370
+ v("button", {
371
+ onClick: (k) => u("H2", "", g),
372
+ class: "block w-max text-left px-4 py-2 hover:bg-gray-200"
373
+ }, "Add Title", 8, ie)
374
+ ])) : w("", !0)
375
+ ], 32)) : w("", !0)
376
+ ]),
377
+ _: 2
378
+ }, 1024)
379
+ ]))), 128))
380
+ ]),
381
+ _: 1
382
+ }, 8, ["list"])) : w("", !0)
383
+ ]));
384
+ }
385
+ }, de = { class: "mn-small" }, pe = /* @__PURE__ */ v("p", { class: "t-semi uppercase" }, "Please log in to leave a comment.", -1), fe = [
386
+ pe
387
+ ], me = {
388
+ key: 1,
389
+ class: "mn-small"
390
+ }, ve = ["onSubmit"], ge = /* @__PURE__ */ v("button", {
391
+ type: "submit",
392
+ class: "mn-l-auto bg-main button"
393
+ }, "Send", -1), he = { class: "pd-t-zero" }, xe = { class: "p-big" }, _e = {
394
+ __name: "Comments",
395
+ props: ["target", "owner", "type"],
396
+ setup(n) {
397
+ const s = n, t = S.create({ baseURL: process.env.API_URL }), e = d([]), f = d(""), u = async () => {
398
+ const { data: a } = await t.get(`/comments/read?type=${s.type}&target=${s.target}&user=${s.owner}`);
399
+ e.value = a;
400
+ }, r = async () => {
401
+ if (f.value)
402
+ try {
403
+ const a = await t.post("/comments/create", {
404
+ target: s.target,
405
+ user: s.owner,
406
+ type: s.type,
407
+ content: f.value
408
+ });
409
+ a.data.owner = s.owner, e.value.push(a.data), f.value = "";
410
+ } catch (a) {
411
+ console.error(a);
412
+ }
413
+ };
414
+ return u(), (a, o) => (i(), p("div", null, [
415
+ v("div", null, [
416
+ v("h3", de, I(e.value.length) + " comments", 1),
417
+ n.owner ? w("", !0) : (i(), p("div", {
418
+ key: 0,
419
+ onClick: o[0] || (o[0] = (l) => a.$router.push({ name: "Sign In" })),
420
+ class: "cursor-pointer mn-small section bg-black t-white flex-center flex radius-big"
421
+ }, fe)),
422
+ n.owner ? (i(), p("div", me, [
423
+ v("form", {
424
+ onSubmit: D(r, ["prevent"]),
425
+ class: "bg-grey radius-big pd-medium"
426
+ }, [
427
+ B(v("textarea", {
428
+ "onUpdate:modelValue": o[1] || (o[1] = (l) => f.value = l),
429
+ placeholder: "Enter your comment",
430
+ class: "pd-small p-big w-100 radius-small mn-r-small"
431
+ }, null, 512), [
432
+ [$, f.value]
433
+ ]),
434
+ ge
435
+ ], 40, ve)
436
+ ])) : w("", !0)
437
+ ]),
438
+ (i(!0), p(V, null, A(e.value, (l) => (i(), p("div", {
439
+ key: l._id,
440
+ class: "comment mn-small radius-big pd-medium bg-grey"
441
+ }, [
442
+ H(J, {
443
+ class: "mn-medium",
444
+ entity: l,
445
+ entityType: "comment",
446
+ user: n.owner,
447
+ owner: { target: l.user },
448
+ creator: { target: l.user },
449
+ date: l.createdAt
450
+ }, null, 8, ["entity", "user", "owner", "creator", "date"]),
451
+ v("div", he, [
452
+ v("p", xe, I(l.content), 1)
453
+ ])
454
+ ]))), 128))
455
+ ]));
456
+ }
457
+ }, ke = { class: "w-100 bg-white radius-big image-upload-area flex-v-center flex-h-center flex t-black mn-small" }, ye = ["src"], Ie = {
458
+ __name: "Image",
459
+ props: [
460
+ "label",
461
+ "value",
462
+ "prop"
463
+ ],
464
+ setup(n) {
465
+ return d(null), (s, t) => (i(), p("div", ke, [
466
+ n.prop.content ? (i(), p("img", {
467
+ key: 0,
468
+ src: (s.FILE_SERVER_URL || "") + n.prop.content,
469
+ alt: "Uploaded image",
470
+ class: "w-100 h-30r object-fit-contain"
471
+ }, null, 8, ye)) : w("", !0)
472
+ ]));
473
+ }
474
+ };
475
+ export {
476
+ Q as _,
477
+ Ce as a,
478
+ _e as b,
479
+ Ie as c
480
+ };