@ozdao/prometheus-framework 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Breadcrumbs.vue_vue_type_style_index_0_lang-561d6db3.js +1 -0
- package/dist/Breadcrumbs.vue_vue_type_style_index_0_lang-9e474158.mjs +1945 -0
- package/dist/ButtonFollow-38d9a720.mjs +131 -0
- package/dist/ButtonFollow-9a33ab06.js +1 -0
- package/dist/CardOrganization-3049931d.mjs +230 -0
- package/dist/CardOrganization-8b376cbb.js +1 -0
- package/dist/Chips-03ff0c34.mjs +108 -0
- package/dist/Chips-4d8ac62e.js +1 -0
- package/dist/Feed-1d0d9853.js +1 -0
- package/dist/Feed-79839e67.mjs +368 -0
- package/dist/Feed-af94027c.js +1 -0
- package/dist/Feed-b616f102.mjs +439 -0
- package/dist/Image-75f5becb.js +9 -0
- package/dist/Image-be69af9c.mjs +477 -0
- package/dist/Popup-d7dbc670.mjs +76 -0
- package/dist/Popup-ee4bd834.js +1 -0
- package/dist/Product-8bee8d1c.mjs +838 -0
- package/dist/Product-a39f3ca3.js +7 -0
- package/dist/ProductEdit-052b0aef.mjs +350 -0
- package/dist/ProductEdit-a322f1ba.js +1 -0
- package/dist/ProfileBlogposts-08f784c3.mjs +64 -0
- package/dist/ProfileBlogposts-d6bba033.js +1 -0
- package/dist/ProfileComments-96f6cde8.mjs +44 -0
- package/dist/ProfileComments-dd923865.js +1 -0
- package/dist/ProfileEvents-1e0c1291.js +1 -0
- package/dist/ProfileEvents-26a72fe2.mjs +56 -0
- package/dist/ProfileLikes-b1060d1e.js +1 -0
- package/dist/ProfileLikes-c8dab14d.mjs +44 -0
- package/dist/ProfileOrganizations-3a879480.mjs +212 -0
- package/dist/ProfileOrganizations-78fef72e.js +1 -0
- package/dist/Publics-8bb9a680.js +1 -0
- package/dist/Publics-ffc08ad7.mjs +123 -0
- package/dist/UploadImage-6344f789.js +1 -0
- package/dist/UploadImage-f04e4bc0.mjs +83 -0
- package/dist/auth-60c81f40.mjs +1836 -0
- package/dist/auth-e8f6d979.js +8 -0
- package/dist/auth.client.cjs +4 -4
- package/dist/auth.client.js +247 -236
- package/dist/auth.server.js +72 -11
- package/dist/auth.server.mjs +72 -11
- package/dist/auth.validation-1d5f2990.mjs +20 -0
- package/dist/auth.validation-2dfb450f.js +1 -0
- package/dist/community.client.cjs +1 -1
- package/dist/community.client.js +11 -11
- package/dist/events.client.cjs +1 -1
- package/dist/events.client.js +9 -9
- package/dist/organizations-4157d81d.js +1 -0
- package/dist/organizations-52438d24.mjs +121 -0
- package/dist/organizations.client-16ee6b43.js +3 -0
- package/dist/organizations.client-cdbaf6aa.mjs +3017 -0
- package/dist/organizations.client.cjs +1 -1
- package/dist/organizations.client.js +11 -11
- package/dist/users.client.cjs +1 -1
- package/dist/users.client.js +258 -239
- package/dist/users.server.js +7 -0
- package/dist/users.server.mjs +7 -0
- package/package.json +1 -1
- package/src/components/CardHeader/CardHeader.vue +2 -1
- package/src/modules/auth/components/pages/SignIn.vue +48 -39
- package/src/modules/auth/controllers/auth.controller.js +42 -11
- package/src/modules/auth/store/auth.js +3 -10
- package/src/modules/auth/utils/server/verifyAppleIdToken.js +57 -0
- package/src/modules/users/components/pages/Profile.vue +20 -6
- package/src/modules/users/components/pages/ProfileEdit.vue +15 -5
- package/src/modules/users/models/user.model.js +9 -1
- package/src/modules/users/store/users.js +2 -1
@@ -0,0 +1,439 @@
|
|
1
|
+
import { reactive as z, watch as B, openBlock as o, createElementBlock as c, toDisplayString as d, createCommentVNode as i, createElementVNode as b, ref as g, createTextVNode as I, computed as L, createBlock as w, withModifiers as N, createVNode as k, normalizeClass as O, unref as m, renderSlot as U, onMounted as A, Transition as $, withCtx as j, Fragment as M, renderList as T } from "vue";
|
2
|
+
import { _ as F } from "./EmptyState-34d85f10.mjs";
|
3
|
+
import { _ as V } from "./_plugin-vue_export-helper-dad06003.mjs";
|
4
|
+
import { _ as q, a as D } from "./Chips-03ff0c34.mjs";
|
5
|
+
import { useRouter as G } from "vue-router";
|
6
|
+
import { a as E } from "./auth-60c81f40.mjs";
|
7
|
+
import { s as p } from "./globals-96ba60e4.mjs";
|
8
|
+
import { I as H } from "./IconEdit-eacf3856.mjs";
|
9
|
+
const _ = E.create({ baseURL: process.env.API_URL, withCredentials: !0 });
|
10
|
+
_.defaults.withCredentials = !0;
|
11
|
+
const f = z({
|
12
|
+
all: [],
|
13
|
+
filter: {
|
14
|
+
// query
|
15
|
+
tags: [],
|
16
|
+
period: ""
|
17
|
+
// pagination
|
18
|
+
},
|
19
|
+
pagination: {
|
20
|
+
page: 1,
|
21
|
+
perPage: 18
|
22
|
+
},
|
23
|
+
// Sort
|
24
|
+
sort: {
|
25
|
+
current: "popularity",
|
26
|
+
ascending: !1
|
27
|
+
},
|
28
|
+
current: {
|
29
|
+
_id: "",
|
30
|
+
url: "",
|
31
|
+
status: "",
|
32
|
+
name: "",
|
33
|
+
tags: [],
|
34
|
+
owner: {},
|
35
|
+
date: "",
|
36
|
+
views: 0,
|
37
|
+
content: []
|
38
|
+
}
|
39
|
+
});
|
40
|
+
async function R(e = {}) {
|
41
|
+
e.params = e.params || {}, e.params.skip = e.skip || 0, e.params.limit = e.limit || 9, e.params.tags = e.tags || [], e.period && (e.params.period = e.period), e.url && (e.params = { url: e.url }), e.category && (e.params.category = e.category), e.organization && (e.params.organization = e.organization), e.owner && (e.params.owner = e.owner), e.creator && (e.params.creator = e.creator), e.status && (e.params.status = e.status), e.user && (e.params.user = e.user), e.params.skip = e.skip || 0, e.params.limit = e.limit || 10;
|
42
|
+
try {
|
43
|
+
console.log("Request params:" + e.params);
|
44
|
+
const t = await _.get("/api/blog/read", { params: e.params });
|
45
|
+
return e.url ? P(t.data, "current") : P(t.data, "all"), Promise.resolve(t.data);
|
46
|
+
} catch (t) {
|
47
|
+
return p(t), Promise.reject(t);
|
48
|
+
}
|
49
|
+
}
|
50
|
+
async function J(e) {
|
51
|
+
return _.post("/api/blog/create", e).then(
|
52
|
+
(t) => (P(t.data, "current"), Promise.resolve(t.data)),
|
53
|
+
(t) => (p(t), Promise.reject(t))
|
54
|
+
);
|
55
|
+
}
|
56
|
+
async function K(e) {
|
57
|
+
return _.post("/api/blog/update", e).then(
|
58
|
+
(t) => (P(t.data, "current"), Promise.resolve(t.data)),
|
59
|
+
(t) => (p(t), Promise.reject(t))
|
60
|
+
);
|
61
|
+
}
|
62
|
+
async function Q(e) {
|
63
|
+
return await _.delete(`/api/blog/delete/${e}`).then(
|
64
|
+
(t) => {
|
65
|
+
const a = f.all.findIndex((r) => r._id === e);
|
66
|
+
return a !== -1 && f.all.splice(a, 1), Promise.resolve(t.data);
|
67
|
+
},
|
68
|
+
(t) => (p(t), Promise.reject(t))
|
69
|
+
);
|
70
|
+
}
|
71
|
+
function P(e, t) {
|
72
|
+
f[t] = e;
|
73
|
+
}
|
74
|
+
function W() {
|
75
|
+
f.current = {
|
76
|
+
_id: "",
|
77
|
+
url: "",
|
78
|
+
status: "",
|
79
|
+
name: "",
|
80
|
+
tags: [],
|
81
|
+
author: "",
|
82
|
+
owner: "",
|
83
|
+
date: "",
|
84
|
+
views: 0,
|
85
|
+
content: []
|
86
|
+
};
|
87
|
+
}
|
88
|
+
function X(e) {
|
89
|
+
const t = {
|
90
|
+
order: f.project.content.length + 1,
|
91
|
+
type: e.type,
|
92
|
+
data: e.data,
|
93
|
+
class: e.class,
|
94
|
+
content: e.content
|
95
|
+
};
|
96
|
+
f.project.content.push(t);
|
97
|
+
}
|
98
|
+
B(f, (e, t) => {
|
99
|
+
});
|
100
|
+
const Ce = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
101
|
+
__proto__: null,
|
102
|
+
blockAdd: X,
|
103
|
+
clean: W,
|
104
|
+
create: J,
|
105
|
+
read: R,
|
106
|
+
remove: Q,
|
107
|
+
set: P,
|
108
|
+
state: f,
|
109
|
+
update: K
|
110
|
+
}, Symbol.toStringTag, { value: "Module" })), Y = {
|
111
|
+
props: {
|
112
|
+
progress: {
|
113
|
+
type: Number,
|
114
|
+
default: null
|
115
|
+
},
|
116
|
+
status: {
|
117
|
+
type: String,
|
118
|
+
default: null
|
119
|
+
}
|
120
|
+
}
|
121
|
+
}, Z = { class: "circular-loader" }, ee = /* @__PURE__ */ b("svg", { viewBox: "25 25 50 50" }, [
|
122
|
+
/* @__PURE__ */ b("circle", {
|
123
|
+
cx: "50",
|
124
|
+
cy: "50",
|
125
|
+
r: "20",
|
126
|
+
fill: "none",
|
127
|
+
"stroke-width": "4",
|
128
|
+
"stroke-miterlimit": "10"
|
129
|
+
})
|
130
|
+
], -1), te = {
|
131
|
+
key: 0,
|
132
|
+
class: "progress-text"
|
133
|
+
}, re = {
|
134
|
+
key: 1,
|
135
|
+
class: "uppercase t-semi w-m-10r status-text"
|
136
|
+
};
|
137
|
+
function ae(e, t, a, r, s, n) {
|
138
|
+
return o(), c("div", Z, [
|
139
|
+
ee,
|
140
|
+
a.progress ? (o(), c("div", te, d(a.progress), 1)) : i("", !0),
|
141
|
+
a.status ? (o(), c("div", re, d(a.status), 1)) : i("", !0)
|
142
|
+
]);
|
143
|
+
}
|
144
|
+
const se = /* @__PURE__ */ V(Y, [["render", ae]]), x = E.create({
|
145
|
+
baseURL: process.env.API_URL,
|
146
|
+
withCredentials: !0
|
147
|
+
}), y = z({
|
148
|
+
reactions: [],
|
149
|
+
error: null
|
150
|
+
}), S = {
|
151
|
+
async read({ user: e, type: t, target: a, role: r }) {
|
152
|
+
try {
|
153
|
+
const s = await x.get("/api/reactions", { params: { user: e, type: t, target: a, role: r } });
|
154
|
+
return y.error = null, y.reactions = s.data, Promise.resolve(s.data);
|
155
|
+
} catch (s) {
|
156
|
+
return p(s), Promise.reject(s);
|
157
|
+
}
|
158
|
+
},
|
159
|
+
async create(e) {
|
160
|
+
try {
|
161
|
+
const t = await x.post("/api/reactions/create", e);
|
162
|
+
return y.error = null, Promise.resolve(t.data);
|
163
|
+
} catch (t) {
|
164
|
+
return console.log(t), p(t), Promise.reject(t);
|
165
|
+
}
|
166
|
+
},
|
167
|
+
async update(e) {
|
168
|
+
try {
|
169
|
+
const t = await x.post("/api/reactions/update", e);
|
170
|
+
return y.error = null, Promise.resolve(t.data);
|
171
|
+
} catch (t) {
|
172
|
+
return p(t), Promise.reject(t);
|
173
|
+
}
|
174
|
+
},
|
175
|
+
async delete(e) {
|
176
|
+
try {
|
177
|
+
const t = await x.post("/api/reactions/delete", e);
|
178
|
+
return y.error = null, Promise.resolve(t.data);
|
179
|
+
} catch (t) {
|
180
|
+
return p(t), Promise.reject(t);
|
181
|
+
}
|
182
|
+
}
|
183
|
+
}, oe = {
|
184
|
+
handleReactionUpdate(e, t, a) {
|
185
|
+
let r;
|
186
|
+
if (Array.isArray(e) ? r = e.find((s) => s._id === t.target) : typeof e == "object" && e._id === t.target && (r = e), r)
|
187
|
+
if (r.hasReaction = a, a)
|
188
|
+
r.reactions.push(t), r.numberOfReactions += 1;
|
189
|
+
else {
|
190
|
+
const s = r.reactions.findIndex((n) => n._id === t._id);
|
191
|
+
s !== -1 && (r.reactions.splice(s, 1), r.numberOfReactions -= 1);
|
192
|
+
}
|
193
|
+
}
|
194
|
+
};
|
195
|
+
B(y, (e) => {
|
196
|
+
});
|
197
|
+
const Ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
198
|
+
__proto__: null,
|
199
|
+
actions: S,
|
200
|
+
mutations: oe,
|
201
|
+
state: y
|
202
|
+
}, Symbol.toStringTag, { value: "Module" })), le = { class: "t-semi br-top-dark flex-nowrap flex-nojustify flex" }, ne = /* @__PURE__ */ b("span", { class: "mn-r-small mn-l-small d-block" }, "·", -1), ce = { class: "cursor-pointer" }, ie = /* @__PURE__ */ b("span", { class: "mn-r-small mn-l-small d-block" }, "·", -1), ue = {
|
203
|
+
__name: "FooterBlogpost",
|
204
|
+
props: ["blogpost", "owner", "user"],
|
205
|
+
setup(e) {
|
206
|
+
const t = e, a = g(t.blogpost.numberOfReactions), r = g(t.blogpost.isReacted), s = g(t.blogpost.reactionId);
|
207
|
+
async function n(v) {
|
208
|
+
if (!t.user) {
|
209
|
+
alert("Please login to add a reaction");
|
210
|
+
return;
|
211
|
+
}
|
212
|
+
try {
|
213
|
+
const l = {
|
214
|
+
target: t.blogpost._id,
|
215
|
+
type: "blogpost",
|
216
|
+
user: t.user,
|
217
|
+
class: "like"
|
218
|
+
}, h = await S.create(l);
|
219
|
+
h.reaction.class === "like" && (a.value += 1, r.value = !0, s.value = h.reaction._id);
|
220
|
+
} catch (l) {
|
221
|
+
console.error(l), alert("Error adding reaction. Please try again later.");
|
222
|
+
}
|
223
|
+
}
|
224
|
+
async function u(v) {
|
225
|
+
if (!t.user) {
|
226
|
+
alert("Please login to add a reaction");
|
227
|
+
return;
|
228
|
+
}
|
229
|
+
try {
|
230
|
+
const l = { _id: s.value };
|
231
|
+
await S.delete(l), a.value -= 1, r.value = !1, s.value = null;
|
232
|
+
} catch {
|
233
|
+
alert("Error adding reaction. Please try again later.");
|
234
|
+
}
|
235
|
+
}
|
236
|
+
return (v, l) => (o(), c("footer", le, [
|
237
|
+
I(" 👁️ " + d(e.blogpost.views) + " ", 1),
|
238
|
+
ne,
|
239
|
+
b("div", ce, [
|
240
|
+
r.value ? i("", !0) : (o(), c("div", {
|
241
|
+
key: 0,
|
242
|
+
class: "cursor-pointer",
|
243
|
+
onClick: l[0] || (l[0] = (h) => n())
|
244
|
+
}, " 👍 " + d(a.value), 1)),
|
245
|
+
r.value ? (o(), c("div", {
|
246
|
+
key: 1,
|
247
|
+
class: "cursor-pointer",
|
248
|
+
onClick: l[1] || (l[1] = (h) => u())
|
249
|
+
}, " 👍 " + d(a.value), 1)) : i("", !0)
|
250
|
+
]),
|
251
|
+
ie,
|
252
|
+
I(" 💬 " + d(e.blogpost.numberOfComments), 1)
|
253
|
+
]));
|
254
|
+
}
|
255
|
+
}, de = { class: "pos-relative bg-grey radius-big" }, me = ["src"], ge = { class: "pd-t-zero pd-medium" }, pe = {
|
256
|
+
key: 0,
|
257
|
+
class: "cursor-pointer mn-thin flex-nowrap flex w-100"
|
258
|
+
}, fe = {
|
259
|
+
key: 0,
|
260
|
+
class: "pd-micro t-white uppercase t-semi p-small flex-center flex pd-r-small pd-l-small mn-l-thin w-min bg-second radius-extra"
|
261
|
+
}, ye = {
|
262
|
+
key: 1,
|
263
|
+
class: "mn-small t-transp p-big"
|
264
|
+
}, be = {
|
265
|
+
key: 2,
|
266
|
+
class: "mn-small h2"
|
267
|
+
}, ve = {
|
268
|
+
__name: "CardBlogpost",
|
269
|
+
props: ["blogpost", "user", "type"],
|
270
|
+
setup(e) {
|
271
|
+
const t = e, a = G(), r = L(() => t.blogpost.content.find((n) => n.type === "ImageUpload")), s = L(() => t.blogpost.content.find((n) => n.type === "Textarea"));
|
272
|
+
return (n, u) => (o(), c("article", de, [
|
273
|
+
e.user === e.blogpost.creator.target._id ? (o(), w(H, {
|
274
|
+
key: 0,
|
275
|
+
onClick: u[0] || (u[0] = N((v) => n.$router.push({
|
276
|
+
name: "Edit BlogPost",
|
277
|
+
params: {
|
278
|
+
url: e.blogpost.url
|
279
|
+
}
|
280
|
+
}), ["stop"])),
|
281
|
+
class: "z-index-2 pos-absolute pos-t-regular pos-r-regular i-regular t-transp"
|
282
|
+
})) : i("", !0),
|
283
|
+
k(q, {
|
284
|
+
class: O({
|
285
|
+
"mn-small pd-medium": e.type !== "short",
|
286
|
+
"flex-child-order-last flex-child mn-l-small": e.type === "short"
|
287
|
+
}),
|
288
|
+
owner: e.blogpost.owner,
|
289
|
+
creator: e.blogpost.creator,
|
290
|
+
date: e.blogpost.createdAt
|
291
|
+
}, null, 8, ["class", "owner", "creator", "date"]),
|
292
|
+
m(r) && m(r).content && e.type !== "blogpostPage" ? (o(), c("img", {
|
293
|
+
key: 1,
|
294
|
+
src: (n.FILE_SERVER_URL || "") + m(r).content,
|
295
|
+
alt: "Blog post image",
|
296
|
+
class: "mn-medium object-fit-cover w-100 h-20r"
|
297
|
+
}, null, 8, me)) : i("", !0),
|
298
|
+
b("section", ge, [
|
299
|
+
e.type !== "blogpostPage" ? (o(), c("div", pe, [
|
300
|
+
b("h3", {
|
301
|
+
onClick: u[1] || (u[1] = (v) => m(a).push({
|
302
|
+
name: "BlogPost",
|
303
|
+
params: {
|
304
|
+
url: e.blogpost.url
|
305
|
+
}
|
306
|
+
})),
|
307
|
+
class: ""
|
308
|
+
}, d(e.blogpost.name), 1),
|
309
|
+
e.blogpost.status === "draft" ? (o(), c("div", fe, d(e.blogpost.status), 1)) : i("", !0)
|
310
|
+
])) : i("", !0),
|
311
|
+
m(s) && m(s).content && e.type !== "blogpostPage" ? (o(), c("p", ye, d(m(s).content.slice(0, 120)) + "... ", 1)) : i("", !0),
|
312
|
+
e.type === "blogpostPage" ? (o(), c("h3", be, d(e.blogpost.name), 1)) : i("", !0),
|
313
|
+
U(n.$slots, "default"),
|
314
|
+
e.type !== "short" && e.blogpost.tags.length > 0 ? (o(), w(D, {
|
315
|
+
key: 3,
|
316
|
+
chips: e.blogpost.tags
|
317
|
+
}, null, 8, ["chips"])) : i("", !0)
|
318
|
+
]),
|
319
|
+
k(ue, {
|
320
|
+
class: "pd-t-zero pd-medium",
|
321
|
+
blogpost: e.blogpost,
|
322
|
+
user: e.user
|
323
|
+
}, null, 8, ["blogpost", "user"])
|
324
|
+
]));
|
325
|
+
}
|
326
|
+
}, he = { class: "feed" }, we = { key: 1 }, Le = {
|
327
|
+
__name: "Feed",
|
328
|
+
props: {
|
329
|
+
category: {
|
330
|
+
type: String,
|
331
|
+
default: null
|
332
|
+
},
|
333
|
+
owner: {
|
334
|
+
type: String,
|
335
|
+
default: null
|
336
|
+
},
|
337
|
+
creator: {
|
338
|
+
type: String,
|
339
|
+
default: null
|
340
|
+
},
|
341
|
+
status: {
|
342
|
+
type: String,
|
343
|
+
default: "published"
|
344
|
+
},
|
345
|
+
user: {
|
346
|
+
type: [String, Number],
|
347
|
+
default: null
|
348
|
+
},
|
349
|
+
period: {
|
350
|
+
type: String,
|
351
|
+
default: null
|
352
|
+
}
|
353
|
+
},
|
354
|
+
setup(e) {
|
355
|
+
const t = e, a = g([]), r = g(!0);
|
356
|
+
let s = g(!0), n = g(0), u = g(7);
|
357
|
+
const v = async () => {
|
358
|
+
if (r.value) {
|
359
|
+
n.value += u.value;
|
360
|
+
const l = await R({
|
361
|
+
skip: n.value,
|
362
|
+
limit: u.value,
|
363
|
+
category: t.category,
|
364
|
+
user: t.user,
|
365
|
+
owner: t.owner,
|
366
|
+
status: t.status,
|
367
|
+
creator: t.creator,
|
368
|
+
period: t.period
|
369
|
+
});
|
370
|
+
l.length === 0 && (r.value = !1), a.value = [...a.value, ...l];
|
371
|
+
}
|
372
|
+
};
|
373
|
+
return A(async () => {
|
374
|
+
const l = await R({
|
375
|
+
skip: n.value,
|
376
|
+
limit: u.value,
|
377
|
+
category: t.category,
|
378
|
+
user: t.user,
|
379
|
+
owner: t.owner,
|
380
|
+
status: t.status,
|
381
|
+
creator: t.creator,
|
382
|
+
period: t.period
|
383
|
+
});
|
384
|
+
l.length === 0 ? r.value = !1 : r.value = !0, a.value = l, s.value = !1;
|
385
|
+
}), (l, h) => (o(), c("section", he, [
|
386
|
+
k($, { name: "fade" }, {
|
387
|
+
default: j(() => [
|
388
|
+
m(s) ? (o(), w(se, {
|
389
|
+
key: 0,
|
390
|
+
class: "z-index-5 pos-t-50 left-t-50 pos-absolute"
|
391
|
+
})) : i("", !0)
|
392
|
+
]),
|
393
|
+
_: 1
|
394
|
+
}),
|
395
|
+
k($, { name: "fade" }, {
|
396
|
+
default: j(() => [
|
397
|
+
!m(s) && a.value.length < 1 ? (o(), w(F, {
|
398
|
+
key: 0,
|
399
|
+
title: "No Blog Posts Found",
|
400
|
+
description: "Currently, there are no posts available in this blog. Please check back later.",
|
401
|
+
class: "pd-medium mn-thin bg-grey radius-big"
|
402
|
+
})) : (o(), c("div", we, [
|
403
|
+
(o(!0), c(M, null, T(a.value, (C) => (o(), w(ve, {
|
404
|
+
key: C._id,
|
405
|
+
blogpost: C,
|
406
|
+
user: e.user,
|
407
|
+
class: "mn-medium"
|
408
|
+
}, null, 8, ["blogpost", "user"]))), 128)),
|
409
|
+
k($, { name: "fade" }, {
|
410
|
+
default: j(() => [
|
411
|
+
r.value && a.value.length > 0 ? (o(), c("button", {
|
412
|
+
key: 0,
|
413
|
+
onClick: v,
|
414
|
+
class: "w-100 bg-main button"
|
415
|
+
}, " Load more ")) : i("", !0)
|
416
|
+
]),
|
417
|
+
_: 1
|
418
|
+
})
|
419
|
+
]))
|
420
|
+
]),
|
421
|
+
_: 1
|
422
|
+
})
|
423
|
+
]));
|
424
|
+
}
|
425
|
+
};
|
426
|
+
export {
|
427
|
+
se as L,
|
428
|
+
Le as _,
|
429
|
+
J as a,
|
430
|
+
Q as b,
|
431
|
+
W as c,
|
432
|
+
ve as d,
|
433
|
+
ue as e,
|
434
|
+
Ce as f,
|
435
|
+
Ie as g,
|
436
|
+
R as r,
|
437
|
+
f as s,
|
438
|
+
K as u
|
439
|
+
};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
"use strict";const e=require("vue"),B=require("./auth-e8f6d979.js"),C=require("./vue-draggable-next.esm-bundler-80731ae0.js"),$=require("./Chips-4d8ac62e.js");const _=["placeholder"],y={__name:"Textarea",props:["prop","value","content","placeholder","index","setFocus"],emits:["deleteBlock","updateBlock","addBlock","focus"],setup(o,{emit:r}){const n=o;e.ref(n);const t=e.ref(null);e.ref(0);function d(a){let l=a.target.value.split(/\n+/);if(l.length>1){n.prop[n.content]=l[0],e.nextTick(()=>{c()});let u=l.slice(1).map(f=>({__name:"Textarea",content:f}));r("addBlock","Textarea","",n.index,{blocks:u,ref:t})}else a.target.value.trim()===""&&a.target.value.includes(`
|
2
|
+
|
3
|
+
`)&&(console.log("We are adding new block:"+n.index+newBlocks+t),r("addBlock","Textarea","",n.index,{blocks:newBlocks,ref:t})),c()}function i(a){(a.keyCode===8||a.keyCode===46)&&n.prop[n.content].trim()===""&&r("deleteBlock",n.prop)}function s(){e.nextTick(()=>{t.value.focus(),r("updateBlock",n.prop,{setFocus:!1})})}function c(){t.value.style.height="1rem",t.value.style.height=t.value.scrollHeight+"px"}return e.onUpdated(()=>{n.setFocus&&e.nextTick(()=>{s()}),c()}),e.onMounted(()=>{n.setFocus&&e.nextTick(()=>{s()}),c()}),(a,l)=>(e.openBlock(),e.createElementBlock("div",null,[e.withDirectives(e.createElementVNode("textarea",{"onUpdate:modelValue":l[0]||(l[0]=u=>o.prop[o.content]=u),placeholder:o.placeholder?o.placeholder:"Enter text",onInput:d,onFocus:l[1]||(l[1]=u=>r("focus",t.value)),onKeyup:i,ref_key:"textarea",ref:t,class:"text-area mn-thin"},`
|
4
|
+
`,40,_),[[e.vModelText,o.prop[o.content]]])]))}};const V=["placeholder"],N={__name:"H2",props:["obj","label","prop","value","content","textarea","placeholder","index","ref","setFocus"],emits:["deleteBlock","updateBlock","addBlock","focus"],setup(o,{emit:r}){const n=o;e.ref(n);const t=e.ref(null);e.ref(0);function d(a){let l=a.target.value.split(/\n+/);if(l.length>1){n.prop[n.content]=l[0],e.nextTick(()=>{c()});let u=l.slice(1).map(f=>({type:"Textarea",content:f}));r("addBlock","Textarea","",n.index,{blocks:u,ref:t})}else a.target.value.trim()===""&&a.target.value.includes(`
|
5
|
+
|
6
|
+
`)&&(console.log("We are adding new block:"+n.index+newBlocks+t),r("addBlock","Textarea","",n.index,{blocks:newBlocks,ref:t})),c()}function i(a){(a.keyCode===8||a.keyCode===46)&&n.prop[n.content].trim()===""&&r("deleteBlock",n.prop)}function s(){e.nextTick(()=>{t.value.focus(),r("updateBlock",n.prop,{setFocus:!1})})}function c(){t.value.style.height="1rem",t.value.style.height=t.value.scrollHeight+"px"}return e.onUpdated(()=>{n.setFocus&&e.nextTick(()=>{s()}),c()}),e.onMounted(()=>{n.setFocus&&e.nextTick(()=>{s()}),c()}),e.watch(()=>n.prop[n.content],a=>{}),(a,l)=>(e.openBlock(),e.createElementBlock("div",null,[e.withDirectives(e.createElementVNode("textarea",{"onUpdate:modelValue":l[0]||(l[0]=u=>o.prop[o.content]=u),placeholder:o.placeholder?o.placeholder:"Enter text",onInput:d,onFocus:l[1]||(l[1]=u=>r("focus",t.value)),onKeyup:i,ref_key:"textarea",ref:t,class:"h3 text-area mn-thin"},`
|
7
|
+
`,40,V),[[e.vModelText,o.prop[o.content]]])]))}},T=["placeholder"],U={__name:"Caption",props:["obj","label","prop","value","content","textarea","placeholder","index","ref"],emits:["deleteBlock","addBlock","focus"],setup(o,{emit:r}){const n=o;e.ref(n);const t=e.ref(null);function d(s){const c=/^\s*[-*]\s+(.*)/;let l=s.target.value.split(/\n+/).map(u=>{const f=c.exec(u);return f?f[1]:null}).filter(u=>u!==null);l.length>0?(n.prop[n.content]=l,i()):s.target.value.trim()===""&&(n.prop[n.content]=[],i())}function i(){t.value.style.height="1rem",t.value.style.height=t.value.scrollHeight+"px"}return e.onUpdated(()=>{i()}),e.onMounted(()=>{i()}),e.watch(()=>n.prop[n.content],s=>{(!s||s.length===0)&&r("deleteBlock",n.prop)}),(s,c)=>(e.openBlock(),e.createElementBlock("div",null,[e.withDirectives(e.createElementVNode("textarea",{"onUpdate:modelValue":c[0]||(c[0]=a=>o.prop[o.content]=a),placeholder:o.placeholder?o.placeholder:"Enter text",onInput:d,onFocus:c[1]||(c[1]=a=>r("focus",t.value)),ref_key:"textarea",ref:t,class:"br-l br-solid br-main pd-l-small text-area mn-small"},`
|
8
|
+
`,40,T),[[e.vModelText,o.prop[o.content]]])]))}},D=["placeholder"],F={__name:"Bullets",props:["obj","label","prop","value","content","textarea","placeholder","index","ref"],emits:["deleteBlock","addBlock","focus"],setup(o,{emit:r}){const n=o;e.ref(n);const t=e.ref(null);function d(s){const c=/^\s*[-*]\s+(.*)/;let l=s.target.value.split(/\n+/).map(u=>{const f=c.exec(u);return f?f[1]:null}).filter(u=>u!==null);l.length>0?(n.prop[n.content]=l,i()):s.target.value.trim()===""&&(n.prop[n.content]=[],i())}function i(){t.value.style.height="1rem",t.value.style.height=t.value.scrollHeight+"px"}return e.onUpdated(()=>{i()}),e.onMounted(()=>{i()}),e.watch(()=>n.prop[n.content],s=>{(!s||s.length===0)&&r("deleteBlock",n.prop)}),(s,c)=>(e.openBlock(),e.createElementBlock("div",null,[e.createTextVNode(e.toDisplayString(o.prop[o.content])+" ",1),e.withDirectives(e.createElementVNode("textarea",{"onUpdate:modelValue":c[0]||(c[0]=a=>o.prop[o.content]=a),placeholder:o.placeholder?o.placeholder:"Enter text",onInput:d,onFocus:c[1]||(c[1]=a=>r("focus",t.value)),ref_key:"textarea",ref:t,class:"text-area mn-small"},`
|
9
|
+
`,40,D),[[e.vModelText,o.prop[o.content]]])]))}},I=["src"],M={key:1,class:"t-transp pd-extra"},L={__name:"ImageUpload",props:["label","value","prop"],emits:["input","updateBlock"],setup(o,{emit:r}){const n=o,t=e.ref(null),d=e.ref(null);function i(){d.value.click()}async function s(a){let l=a.target.files[0];console.log(l);let u=new FormData,f="unsorted";u.append("file",l),console.log(u.has("file"));try{let h=await B.axios.create({baseURL:process.env.API_URL,withCredentials:!0}).post(`/api/upload/file?folderName=${encodeURIComponent(f)}`,u,{headers:{"Content-Type":"multipart/form-data"}});t.value=h.data.filepath,console.log(t.value),r("input",t.value),r("updateBlock",n.prop,{content:t.value})}catch(g){console.error(g)}}function c(a){a.preventDefault(),s({target:{files:a.dataTransfer.files}})}return(a,l)=>(e.openBlock(),e.createElementBlock("div",{onClick:i,onDrop:c,onDragover:l[0]||(l[0]=e.withModifiers(()=>{},["prevent"])),class:"w-100 radius-big bg-white image-upload-area flex-v-center flex-h-center flex t-black mn-small"},[o.prop.content?(e.openBlock(),e.createElementBlock("img",{key:0,src:(a.FILE_SERVER_URL||"")+o.prop.content,alt:"Uploaded image",class:"w-100 h-30r object-fit-contain"},null,8,I)):(e.openBlock(),e.createElementBlock("span",M,"Click or drag-and-drop your image")),e.createElementVNode("input",{type:"file",ref_key:"fileInput",ref:d,onChange:s,style:{display:"none"}},null,544)],32))}},R=["onMouseover"],S={key:0,class:"z-index-5 radius-thin mn-small relative left-0 mt-2 w-max bg-white shadow-lg rounded"},A=["onClick"],H=["onClick"],z=["onClick"],j={__name:"Constructor",props:["content"],emits:["update"],setup(o,{emit:r}){const n=o;let t=e.ref(null);e.ref(null),t.value={content:n.content};const d={Textarea:y,H2:N,Bullets:F,Caption:U,ImageUpload:L};function i(h="Textarea",k="",p,m){console.log("We are adding new block (functuin HandleAddBlock):"+h+k+p+m);let v={order:t.value.content.length+1,type:h,style:"",class:"",content:k,blocks:[],setFocus:!0};if(m&&m.blocks&&Array.isArray(m.blocks)){let x=m.blocks.map(E=>({...v,content:E.content})),b=[(m.index||p)+1,0].concat(x);t.value.content.splice.apply(t.value.content,b);const w=x[x.length-1];console.log("New block is"+w)}else p!==void 0?(t.value.content.splice(p+1,0,v),console.log("Latest block is"+v)):(console.log("Another block is"+v),t.value.content.push(v));a.value=null,r("update",t.value.content)}function s(h,k){const p=t.value.content.findIndex(m=>m===h);p!==-1&&(t.value.content[p]={...t.value.content[p],...k}),r("update",t.value.content)}function c(h){let k=t.value.content.findIndex(p=>p===h);k!==-1&&t.value.content.splice(k,1),t.value.content[k-1].setFocus=!0,r("update",t.value.content)}const a=e.ref(null),l=e.ref(!1),u=e.ref(!1);function f(){l.value=!0}function g(){l.value=!1}return e.watchEffect(()=>{t.value&&t.value.content.length===0&&i("Textarea",""),r("update",t.value.content)}),(h,k)=>(e.openBlock(),e.createElementBlock("section",null,[e.unref(t).content?(e.openBlock(),e.createBlock(e.unref(C.VueDraggableNext),{key:0,class:"w-full",list:e.unref(t).content,onStart:f,onEnd:g},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(t).content,(p,m)=>(e.openBlock(),e.createElementBlock("div",{key:m,class:"pos-relative"},[e.createElementVNode("div",{onMouseover:v=>(a.value=m,u.value=!1),class:"pos-relative w-full h-full"},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(d[p.type]),{index:m,component:p,prop:p,class:e.normalizeClass(p.class),setFocus:p.setFocus,content:"content",onDeleteBlock:c,onAddBlock:i,onUpdateBlock:s},null,40,["index","component","prop","class","setFocus"]))],40,R),e.createVNode(e.Transition,{name:"fade"},{default:e.withCtx(()=>[a.value===m?(e.openBlock(),e.createElementBlock("div",{key:0,class:"pos-absolute pos-r-100 pos-t-0 z-index-4 i-semi",onMousedown:k[1]||(k[1]=e.withModifiers(v=>l.value=!0,["prevent"]))},[e.createElementVNode("button",{onClick:k[0]||(k[0]=v=>u.value=!u.value),class:"mn-small w-100 i-semi bg-white radius-thin"},e.toDisplayString(p.content?"...":"+"),1),u.value?(e.openBlock(),e.createElementBlock("div",S,[e.createElementVNode("button",{onClick:v=>c(p),class:"block w-max text-left px-4 py-2 hover:bg-gray-200"},"Удалить",8,A),e.createElementVNode("button",{onClick:v=>i("ImageUpload","",m),class:"block w-max text-left px-4 py-2 hover:bg-gray-200"},"Добавить изображение",8,H),e.createElementVNode("button",{onClick:v=>i("H2","",m),class:"block w-max text-left px-4 py-2 hover:bg-gray-200"},"Добавить заголовок",8,z)])):e.createCommentVNode("",!0)],32)):e.createCommentVNode("",!0)]),_:2},1024)]))),128))]),_:1},8,["list"])):e.createCommentVNode("",!0)]))}},q={class:"mn-small"},K=e.createElementVNode("p",{class:"t-semi uppercase"},"Please log in to leave a comment.",-1),P=[K],W={key:1,class:"mn-small"},G=["onSubmit"],J=e.createElementVNode("button",{type:"submit",class:"mn-l-auto bg-main button"},"Send",-1),O={class:"pd-t-zero"},Q={class:"p-big"},X={__name:"Comments",props:["target","owner","type"],setup(o){const r=o,n=B.axios.create({baseURL:process.env.API_URL}),t=e.ref([]),d=e.ref(""),i=async()=>{const{data:c}=await n.get(`/comments/read?type=${r.type}&target=${r.target}`);t.value=c},s=async()=>{if(d.value)try{const c=await n.post("/comments/create",{target:r.target,user:r.owner,type:r.type,content:d.value});c.data.owner=r.owner,t.value.push(c.data),d.value=""}catch(c){console.error(c)}};return i(),(c,a)=>(e.openBlock(),e.createElementBlock("div",null,[e.createElementVNode("div",null,[e.createElementVNode("h3",q,e.toDisplayString(t.value.length)+" comments",1),o.owner?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",{key:0,onClick:a[0]||(a[0]=l=>c.$router.push({name:"Sign In"})),class:"cursor-pointer mn-small section bg-black t-white flex-center flex radius-big"},P)),o.owner?(e.openBlock(),e.createElementBlock("div",W,[e.createElementVNode("form",{onSubmit:e.withModifiers(s,["prevent"]),class:"bg-grey radius-big pd-medium"},[e.withDirectives(e.createElementVNode("textarea",{"onUpdate:modelValue":a[1]||(a[1]=l=>d.value=l),placeholder:"Enter your comment",class:"pd-small p-big w-100 radius-small mn-r-small"},null,512),[[e.vModelText,d.value]]),J],40,G)])):e.createCommentVNode("",!0)]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.value,l=>(e.openBlock(),e.createElementBlock("div",{key:l._id,class:"comment mn-small radius-big pd-medium bg-grey"},[e.createVNode($._sfc_main,{class:"mn-medium",owner:{target:l.user},creator:{target:l.user},date:l.createdAt},null,8,["owner","creator","date"]),e.createElementVNode("div",O,[e.createElementVNode("p",Q,e.toDisplayString(l.content),1)])]))),128))]))}},Y={class:"w-100 bg-white radius-big image-upload-area flex-v-center flex-h-center flex t-black mn-small"},Z=["src"],ee={__name:"Image",props:["label","value","prop"],setup(o){return e.ref(null),(r,n)=>(e.openBlock(),e.createElementBlock("div",Y,[o.prop.content?(e.openBlock(),e.createElementBlock("img",{key:0,src:(r.FILE_SERVER_URL||"")+o.prop.content,alt:"Uploaded image",class:"w-100 h-30r object-fit-contain"},null,8,Z)):e.createCommentVNode("",!0)]))}};exports._sfc_main=y;exports._sfc_main$1=j;exports._sfc_main$2=X;exports._sfc_main$3=ee;
|