@articles-media/articles-dev-box 1.0.17 → 1.0.23

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.
Files changed (69) hide show
  1. package/README.md +6 -5
  2. package/dist/Ad-Ck5UdTq3.js +387 -0
  3. package/dist/Ad.js +2 -604
  4. package/dist/AdConfirmExitModal-CJ-HtcVC.js +56 -0
  5. package/dist/AdDetailsModal-DRNRTL2W.js +108 -0
  6. package/dist/ArticlesAd.js +16 -15
  7. package/dist/Button-BlAdEbSd.js +30 -0
  8. package/dist/CreditsModal.js +56 -0
  9. package/dist/DarkModeHandler.js +17 -16
  10. package/dist/FriendsList.js +77 -121
  11. package/dist/GameScoreboard-CBY3JsFa.js +165 -0
  12. package/dist/GameScoreboard.js +2 -190
  13. package/dist/GlobalBody.js +36 -7
  14. package/dist/GlobalHead.js +10 -12
  15. package/dist/Link-MFZblBb4.js +17 -0
  16. package/dist/Modal-BX1s6CCU.js +1631 -0
  17. package/dist/ReturnToLauncherButton.js +39 -54
  18. package/dist/SettingsModal-XI2dMI09.js +247 -0
  19. package/dist/SettingsModal.js +2 -658
  20. package/dist/StatusModal-elrPJvX1.js +70 -0
  21. package/dist/ViewUserModal-DDjWLpyM.js +3094 -0
  22. package/dist/ViewUserModal.js +3 -3149
  23. package/dist/articles-dev-box.css +2 -1
  24. package/dist/classnames-DP6dWde5.js +31 -0
  25. package/dist/index.js +16 -28
  26. package/dist/jsx-runtime-VZk6y-ec.js +191 -0
  27. package/dist/numberWithCommas-BSKBdR-e.js +18 -0
  28. package/dist/useAuthSiteStatus-1rHjYC4N.js +29 -0
  29. package/dist/useFullscreen.js +24 -0
  30. package/dist/useUserDetails.js +22 -32
  31. package/dist/useUserFriends.js +29 -51
  32. package/dist/useUserToken.js +16 -21
  33. package/package.json +26 -67
  34. package/dist/Ad.cjs +0 -1
  35. package/dist/AdConfirmExitModal-Bhz-lt9w.js +0 -72
  36. package/dist/AdConfirmExitModal-N3Lvhb4y.cjs +0 -1
  37. package/dist/AdDetailsModal-BMj8DjV0.cjs +0 -1
  38. package/dist/AdDetailsModal-DXvfmyKK.js +0 -83
  39. package/dist/ArticlesAd.cjs +0 -1
  40. package/dist/Button-0ZK0NKiK.cjs +0 -1
  41. package/dist/Button-_Quon8UV.js +0 -54
  42. package/dist/DarkModeHandler.cjs +0 -1
  43. package/dist/ElementChildren-DN3RWY2E.js +0 -51
  44. package/dist/ElementChildren-eAwIENLl.cjs +0 -1
  45. package/dist/FriendsList.cjs +0 -1
  46. package/dist/GameScoreboard.cjs +0 -1
  47. package/dist/GlobalBody-BrrtfBBs.js +0 -123
  48. package/dist/GlobalBody-weON_TbJ.cjs +0 -33
  49. package/dist/GlobalBody.cjs +0 -1
  50. package/dist/GlobalHead.cjs +0 -1
  51. package/dist/Modal-Bdhkgkwr.cjs +0 -2
  52. package/dist/Modal-nux8R77F.js +0 -2087
  53. package/dist/ReturnToLauncherButton.cjs +0 -1
  54. package/dist/SettingsModal.cjs +0 -1
  55. package/dist/StatusModal-B086BgSW.js +0 -71
  56. package/dist/StatusModal-CzPyqQQA.cjs +0 -1
  57. package/dist/ViewUserModal.cjs +0 -1
  58. package/dist/index-BlP2-uOi.cjs +0 -1
  59. package/dist/index-C8MeSLnR.js +0 -2504
  60. package/dist/index-DWV8myok.cjs +0 -6
  61. package/dist/index-YnD2EP-S.js +0 -43
  62. package/dist/index.cjs +0 -1
  63. package/dist/jsx-runtime-nZSsnGb7.cjs +0 -6
  64. package/dist/jsx-runtime-tc70JA_2.js +0 -264
  65. package/dist/numberWithCommas-CRgrb58X.cjs +0 -1
  66. package/dist/numberWithCommas-DnAkiOFL.js +0 -1256
  67. package/dist/useUserDetails.cjs +0 -1
  68. package/dist/useUserFriends.cjs +0 -1
  69. package/dist/useUserToken.cjs +0 -1
package/README.md CHANGED
@@ -49,20 +49,21 @@ npm run dev
49
49
  - View user profile data and recent activity.
50
50
  - SettingsModal
51
51
  - All in one component to handle game settings UI across multiple games.
52
+ - CreditsModal
53
+ - All in one component to handle game credits UI across multiple games.
52
54
  - DarkModeHandler
53
55
  - Consumes a Zustand store, detects prefers-color-scheme, sets data-bs-theme on body element.
54
56
  - useUserToken
55
57
  - Hook for getting the subdomain auth token.
56
58
  - useUserDetails
57
59
  - Hook for getting the details of the current user if a valid user token is found.
60
+ - useFullscreen
61
+ - Hook for going fullscreen on the body or provided element
58
62
 
59
63
  # Roadmap
60
64
  ⏹️ Remove Bootstrap reliance
61
- ⏹️ Look into npm package yalc
62
- ⏹️ Automatic GitHub Action for NPM are done but need to figure out how to show verified build badge on NPM.
63
- ⏹️ Figure out why this package does not work outside webpack, on Turbopack for example it fails.
64
-
65
+ ⏹️ Figure out why this package does not work outside webpack, on Turbopack for example it fails. Bootstrap SASS related I think.
65
66
 
66
67
  # TODO
67
- - Bundle SCSS on a component level instead of a project level.
68
+ - Bundle SCSS on a component level instead of a project level.
68
69
  - Verify I am exporting components the most efficient way.
@@ -0,0 +1,387 @@
1
+ import { r as e, t } from "./jsx-runtime-VZk6y-ec.js";
2
+ import { t as n } from "./classnames-DP6dWde5.js";
3
+ import { t as r } from "./Button-BlAdEbSd.js";
4
+ import { t as i } from "./Link-MFZblBb4.js";
5
+ import { n as a, t as o } from "./numberWithCommas-BSKBdR-e.js";
6
+ import { lazy as s, memo as c, useEffect as l, useState as u } from "react";
7
+ import { useInView as d } from "react-intersection-observer";
8
+ import f from "swr";
9
+ import { differenceInMinutes as p, minutesToMilliseconds as m } from "date-fns";
10
+ //#region src/hooks/Ads/useAd.js
11
+ var h = async (e) => {
12
+ if (process.env.NODE_ENV === "development") try {
13
+ let t = new URLSearchParams({
14
+ ad_id: e.ad_id,
15
+ user_ad_token: e.user_ad_token
16
+ }).toString();
17
+ return (await (await fetch(`http://localhost:3001/api/ads/${e.ad_id}?${t}`)).json()).result;
18
+ } catch {}
19
+ let t = new URLSearchParams({ ad_id: e.ad_id }).toString();
20
+ return fetch(`${e.url}?${t}`).then((e) => e.json()).then((e) => e.result);
21
+ }, g = { dedupingInterval: 1e3 * 60 * 60 }, _ = (e, t) => {
22
+ let { data: n, error: r, isLoading: i, mutate: a } = f(e ? {
23
+ url: `https://articles.media/api/ads/${e}`,
24
+ ad_id: e,
25
+ user_ad_token: t
26
+ } : null, h, g);
27
+ return {
28
+ data: n,
29
+ error: r,
30
+ isLoading: i,
31
+ mutate: a
32
+ };
33
+ }, v = async (e) => {
34
+ if (process.env.NODE_ENV === "development") try {
35
+ return await (await fetch("http://localhost:3001/api/ads")).json();
36
+ } catch {}
37
+ return fetch(e.url).then((e) => e.json());
38
+ }, y = 60, b = {
39
+ dedupingInterval: m(y),
40
+ focusThrottleInterval: m(y)
41
+ }, x = (e) => {
42
+ let { data: t, error: n, isLoading: r, mutate: i } = f(e?.loading || e?.disabled ? null : { url: "https://articles.media/api/ads" }, v, b);
43
+ return {
44
+ data: t,
45
+ error: n,
46
+ isLoading: r,
47
+ mutate: i
48
+ };
49
+ }, S = t(), C = /* @__PURE__ */ e(n(), 1), w = s(() => import("./AdDetailsModal-DRNRTL2W.js")), T = s(() => import("./AdConfirmExitModal-CJ-HtcVC.js"));
50
+ function E(e, t) {
51
+ return Math.floor(Math.random() * (t - e + 1)) + e;
52
+ }
53
+ function D(e) {
54
+ let { previewMode: t, darkMode: n, user_ad_token: s, userDetails: c, userDetailsLoading: f, prepend: m, append: h } = e, g = [], [v, y] = u(null), { data: b, isLoading: D, mutate: O } = x({
55
+ loading: f,
56
+ disabled: c?.articles_membership?.status == "Active"
57
+ }), { data: k, isLoading: ee } = _(v, s), A = e.previewData || {}, [te, ne] = u(null), [j, M] = u(null), [N, P] = u(null), [F, I] = u(0), [L, R] = u(!1), [z, B] = u(!1), [V, H] = u(!1), [re, ie] = u(/* @__PURE__ */ new Date()), [U, W] = u([]);
58
+ l(() => {
59
+ b && b?.length > 0 && !v && (console.log("Ad Mounted or reduxAds changed"), y(e.ad_id || b[E(0, b?.length - 1)]?._id));
60
+ }, [b]), l(() => {}, [k]), l(() => {
61
+ k?.populated_promos && F >= 0 && P(k?.populated_promos[F]);
62
+ }, [F, k]);
63
+ function G() {
64
+ B(!z);
65
+ }
66
+ let { ref: K, inView: q, entry: ae } = d({
67
+ threshold: 0,
68
+ triggerOnce: !0
69
+ });
70
+ function J(e) {
71
+ if (t && console.log("Preventing this event from being logged as this ad is being shown in preview mode."), U.find((t) => t == e)) {
72
+ console.log("Already logged this event");
73
+ return;
74
+ }
75
+ let n = new URLSearchParams({
76
+ ad_id: k?._id,
77
+ event: e
78
+ }).toString();
79
+ fetch(`/api/ads/event?${n}`).then(function(e) {
80
+ return e.json();
81
+ }).then(function(t) {
82
+ W([...U, e]), console.log(t);
83
+ }).catch(function(e) {
84
+ console.log(e);
85
+ });
86
+ }
87
+ l(() => {
88
+ if (!t && (console.log("inView", q), q && v)) {
89
+ let e = [{
90
+ ad_id: v,
91
+ date: (/* @__PURE__ */ new Date()).toString()
92
+ }, ...g.filter((e) => {
93
+ if (console.log(p(/* @__PURE__ */ new Date(), new Date(e.date))), p(/* @__PURE__ */ new Date(), new Date(e.date)) > 5) {
94
+ console.log("adsViewed - Remove Old Ad View Object");
95
+ return;
96
+ } else return console.log("adsViewed - Keep Ad View Object"), e;
97
+ })];
98
+ console.log("unexpiredRecentViews", e);
99
+ }
100
+ }, [q, v]);
101
+ let [Y, X] = u(null), [Z, Q] = u(!1);
102
+ function $() {
103
+ Q(!0), console.log("logAdAvoided called", s);
104
+ let e = process.env.NODE_ENV === "development" ? "http://localhost:3001/api/user/advertising/avoided" : "https://articles.media/api/user/advertising/avoided", t = new URLSearchParams({ user_id: c?._id }).toString();
105
+ fetch(`${e}?${t}`, { headers: { "x-articles-api-key": s } }).then(function(e) {
106
+ return e.json();
107
+ }).then(function(e) {
108
+ Q(!1), X(e.avoided_count), console.log(e);
109
+ }).catch(function(e) {
110
+ console.log(e), Q(!1);
111
+ });
112
+ }
113
+ return l(() => {
114
+ t || (console.log("inView", q), c?.articles_membership?.status == "Active" && q && $("Ad Avoided"));
115
+ }, [q, c]), f ? null : /* @__PURE__ */ (0, S.jsxs)("div", {
116
+ ref: K,
117
+ className: (0, C.default)("ad-wrap", { "active-member": c?.articles_membership?.status == "Active" }),
118
+ style: {
119
+ "--articles-ad-background-color": A.background_color || k?.background_color,
120
+ "--articles-ad-font-color": A.font_color || k?.font_color,
121
+ "--articles-ad-border-color": A.border_color || k?.border_color
122
+ },
123
+ children: [
124
+ z && /* @__PURE__ */ (0, S.jsx)(w, {
125
+ setModalShow: B,
126
+ ad: k,
127
+ previewData: A
128
+ }),
129
+ V && /* @__PURE__ */ (0, S.jsx)(T, {
130
+ setModalShow: H,
131
+ ad: k,
132
+ previewData: A
133
+ }),
134
+ m && /* @__PURE__ */ (0, S.jsx)("div", {
135
+ className: "prepend-container",
136
+ children: m
137
+ }),
138
+ /* @__PURE__ */ (0, S.jsxs)("div", {
139
+ className: "ad",
140
+ children: [c?.articles_membership?.status !== "Active" && /* @__PURE__ */ (0, S.jsxs)("div", {
141
+ className: "main-panel",
142
+ children: [
143
+ /* @__PURE__ */ (0, S.jsx)("div", {
144
+ className: "ad-warning flex-header",
145
+ children: /* @__PURE__ */ (0, S.jsxs)("div", {
146
+ className: "",
147
+ children: [k?.city && "Local", " Advertisement"]
148
+ })
149
+ }),
150
+ /* @__PURE__ */ (0, S.jsxs)("div", {
151
+ className: "content-wrap",
152
+ children: [/* @__PURE__ */ (0, S.jsxs)("div", {
153
+ className: "photo-banner",
154
+ children: [
155
+ /* @__PURE__ */ (0, S.jsx)("div", {
156
+ className: "logo",
157
+ children: (A.logo?.location || k?.logo?.location) && /* @__PURE__ */ (0, S.jsx)("img", {
158
+ src: A?.logo?.key ? `${process.env.NEXT_PUBLIC_CDN}${A?.logo?.key}` : `${process.env.NEXT_PUBLIC_CDN}${k?.logo?.key}`,
159
+ alt: ""
160
+ })
161
+ }),
162
+ /* @__PURE__ */ (0, S.jsx)("div", {
163
+ className: "icon d-none",
164
+ children: /* @__PURE__ */ (0, S.jsx)("i", { className: "fas fa-mug-hot" })
165
+ }),
166
+ /* @__PURE__ */ (0, S.jsx)("img", {
167
+ className: "photo",
168
+ src: A?.background?.key ? `${process.env.NEXT_PUBLIC_CDN}${A.background?.key}` : `${process.env.NEXT_PUBLIC_CDN}${k?.background?.key}`,
169
+ alt: ""
170
+ })
171
+ ]
172
+ }), /* @__PURE__ */ (0, S.jsxs)("div", {
173
+ className: "details-wrap",
174
+ children: [
175
+ /* @__PURE__ */ (0, S.jsxs)("div", {
176
+ className: "detail-title",
177
+ children: [/* @__PURE__ */ (0, S.jsx)("div", {
178
+ className: "detail",
179
+ children: /* @__PURE__ */ (0, S.jsx)("span", {
180
+ className: "h4",
181
+ children: A?.business || k?.business
182
+ })
183
+ }), /* @__PURE__ */ (0, S.jsxs)("div", {
184
+ className: "flex flex-column d-none",
185
+ children: [/* @__PURE__ */ (0, S.jsxs)("div", {
186
+ className: "detail",
187
+ children: [/* @__PURE__ */ (0, S.jsx)("span", {
188
+ className: "icon",
189
+ children: /* @__PURE__ */ (0, S.jsx)("i", { className: "fas fa-search-location" })
190
+ }), /* @__PURE__ */ (0, S.jsxs)("span", { children: [
191
+ k?.city,
192
+ ", ",
193
+ k?.state
194
+ ] })]
195
+ }), /* @__PURE__ */ (0, S.jsxs)("div", {
196
+ className: "detail",
197
+ children: [/* @__PURE__ */ (0, S.jsx)("span", {
198
+ className: "icon",
199
+ children: /* @__PURE__ */ (0, S.jsx)("i", { className: "fas fa-clock me-2" })
200
+ }), /* @__PURE__ */ (0, S.jsx)("span", { children: "6:30AM–8PM" })]
201
+ })]
202
+ })]
203
+ }),
204
+ k?.city && /* @__PURE__ */ (0, S.jsx)("div", { className: "details mb-3 d-none" }),
205
+ /* @__PURE__ */ (0, S.jsx)("div", {
206
+ className: "short-description",
207
+ children: A?.description || k?.description
208
+ })
209
+ ]
210
+ })]
211
+ }),
212
+ (!1)?.roles?.isDev && k?.populated_promos?.length > 0 && /* @__PURE__ */ (0, S.jsxs)("div", { children: [N && /* @__PURE__ */ (0, S.jsx)("div", {
213
+ className: "promos-wrap",
214
+ children: N && /* @__PURE__ */ (0, S.jsxs)("div", {
215
+ className: "promo-wrap d-flex justify-content-between align-items-center mx-2 p-1 px-2 border border-2 border-light mb-0",
216
+ children: [/* @__PURE__ */ (0, S.jsxs)("div", {
217
+ className: "",
218
+ children: [/* @__PURE__ */ (0, S.jsx)("div", { children: N.title }), /* @__PURE__ */ (0, S.jsx)("div", {
219
+ className: "small",
220
+ children: /* @__PURE__ */ (0, S.jsx)("div", {
221
+ className: "small",
222
+ children: N.details
223
+ })
224
+ })]
225
+ }), /* @__PURE__ */ (0, S.jsx)(r, {
226
+ className: "px-3",
227
+ small: !0,
228
+ onClick: () => {
229
+ console.log("Load Save Modal"), R(!0);
230
+ },
231
+ children: "Save"
232
+ })]
233
+ }, N._id)
234
+ }), /* @__PURE__ */ (0, S.jsxs)("div", {
235
+ className: "d-flex justify-content-between",
236
+ children: [/* @__PURE__ */ (0, S.jsxs)("div", {
237
+ className: "px-2",
238
+ children: [k?.populated_promos?.length, " Promos Active"]
239
+ }), /* @__PURE__ */ (0, S.jsxs)("div", {
240
+ className: "controls",
241
+ children: [
242
+ /* @__PURE__ */ (0, S.jsx)("i", {
243
+ className: "fad fa-arrow-circle-left",
244
+ type: "button",
245
+ onClick: () => {
246
+ I(F == 0 ? k?.populated_promos?.length - 1 : (e) => e - 1);
247
+ }
248
+ }),
249
+ k?.populated_promos?.map((e, t) => /* @__PURE__ */ (0, S.jsx)("i", { className: `fa-square ${t == F ? "fad" : "fas"}` }, e._id)),
250
+ /* @__PURE__ */ (0, S.jsx)("i", {
251
+ className: "fad fa-arrow-circle-right",
252
+ type: "button",
253
+ onClick: () => {
254
+ F == k?.populated_promos?.length - 1 ? I(0) : I((e) => e + 1);
255
+ }
256
+ })
257
+ ]
258
+ })]
259
+ })] }),
260
+ /* @__PURE__ */ (0, S.jsx)("hr", {
261
+ style: { borderColor: "white" },
262
+ className: "mt-auto mb-0"
263
+ }),
264
+ /* @__PURE__ */ (0, S.jsxs)("div", {
265
+ className: "action-wrap d-flex justify-content-lg-between px-3 py-2",
266
+ children: [
267
+ /* @__PURE__ */ (0, S.jsx)("div", {
268
+ onClick: () => {
269
+ G(), J("Details");
270
+ },
271
+ className: "action flex-grow-1 flex-shrink-0",
272
+ children: "Details"
273
+ }),
274
+ /* @__PURE__ */ (0, S.jsx)("span", { className: "px-4" }),
275
+ /* @__PURE__ */ (0, S.jsx)("a", {
276
+ className: "action flex-grow-1 flex-shrink-0",
277
+ href: k?.website,
278
+ target: "_blank",
279
+ rel: "noreferrer",
280
+ onClick: (e) => {
281
+ e.preventDefault(), H(!0), J("Confirm Exit Modal Opened");
282
+ },
283
+ children: /* @__PURE__ */ (0, S.jsx)("div", { children: "Website" })
284
+ })
285
+ ]
286
+ })
287
+ ]
288
+ }), c?.articles_membership?.status == "Active" && /* @__PURE__ */ (0, S.jsx)("div", {
289
+ className: "main-panel",
290
+ children: /* @__PURE__ */ (0, S.jsxs)("div", {
291
+ className: "content-wrap",
292
+ children: [/* @__PURE__ */ (0, S.jsxs)("div", {
293
+ className: "photo-banner",
294
+ children: [
295
+ /* @__PURE__ */ (0, S.jsx)("div", { className: "logo" }),
296
+ /* @__PURE__ */ (0, S.jsxs)("div", {
297
+ className: "splash",
298
+ children: [/* @__PURE__ */ (0, S.jsx)("i", { className: "fas fa-broadcast-tower" }), /* @__PURE__ */ (0, S.jsxs)("div", {
299
+ className: "text",
300
+ children: [/* @__PURE__ */ (0, S.jsx)("div", {
301
+ className: "count",
302
+ children: Z ? /* @__PURE__ */ (0, S.jsx)("i", { className: "fas fa-spinner fa-spin me-0" }) : Y ? o(Y) : 0
303
+ }), /* @__PURE__ */ (0, S.jsx)("div", {
304
+ className: "label",
305
+ children: "ads avoided."
306
+ })]
307
+ })]
308
+ }),
309
+ /* @__PURE__ */ (0, S.jsxs)("div", {
310
+ className: "member-since",
311
+ children: ["Member since: ", /* @__PURE__ */ (0, S.jsx)(a, {
312
+ format: "PP",
313
+ date: c?.articles_membership?.membership_started
314
+ })]
315
+ })
316
+ ]
317
+ }), /* @__PURE__ */ (0, S.jsxs)("div", {
318
+ className: "details-wrap",
319
+ children: [/* @__PURE__ */ (0, S.jsx)("div", {
320
+ className: "detail-title",
321
+ children: /* @__PURE__ */ (0, S.jsx)("div", {
322
+ className: "detail",
323
+ children: /* @__PURE__ */ (0, S.jsx)("span", {
324
+ className: "h4",
325
+ children: "Thanks for the support!"
326
+ })
327
+ })
328
+ }), /* @__PURE__ */ (0, S.jsxs)("div", {
329
+ className: "short-description",
330
+ children: [/* @__PURE__ */ (0, S.jsx)("div", {
331
+ className: "mb-2",
332
+ children: "Without support from users like you, we wouldn't be here."
333
+ }), /* @__PURE__ */ (0, S.jsxs)("div", {
334
+ className: "links-list",
335
+ children: [
336
+ /* @__PURE__ */ (0, S.jsxs)(i, {
337
+ newPage: !0,
338
+ className: "link-item",
339
+ href: "https://articles.media/messages",
340
+ children: [/* @__PURE__ */ (0, S.jsx)("i", { className: "fas fa-comments-alt" }), "0 unread messages."]
341
+ }),
342
+ /* @__PURE__ */ (0, S.jsxs)(i, {
343
+ newPage: !0,
344
+ className: "link-item",
345
+ href: "https://articles.media/settings/notifications",
346
+ onClick: () => {
347
+ $();
348
+ },
349
+ children: [/* @__PURE__ */ (0, S.jsx)("i", { className: "fas fa-bell" }), "0 notifications."]
350
+ }),
351
+ /* @__PURE__ */ (0, S.jsxs)(i, {
352
+ newPage: !0,
353
+ className: "link-item",
354
+ href: "https://articles.media/settings/account",
355
+ children: [/* @__PURE__ */ (0, S.jsx)("i", { className: "fas fa-cog" }), "Manage account settings."]
356
+ })
357
+ ]
358
+ })]
359
+ })]
360
+ })]
361
+ })
362
+ })]
363
+ }),
364
+ h && /* @__PURE__ */ (0, S.jsx)("div", {
365
+ className: "append-container",
366
+ children: h
367
+ }),
368
+ !t && /* @__PURE__ */ (0, S.jsx)("div", {
369
+ className: "advertise-with-us p-1",
370
+ style: {
371
+ backgroundColor: A.background_color || k?.background_color,
372
+ color: A.font_color || k?.font_color,
373
+ borderColor: A.border_color || k?.border_color
374
+ },
375
+ children: /* @__PURE__ */ (0, S.jsxs)(i, {
376
+ className: "small d-block w-100 text-center",
377
+ href: "https://articles.media/advertising",
378
+ newPage: !0,
379
+ children: [/* @__PURE__ */ (0, S.jsx)("i", { className: "fas fa-share me-1" }), "Advertise with Articles Media!"]
380
+ })
381
+ })
382
+ ]
383
+ });
384
+ }
385
+ var O = c(D);
386
+ //#endregion
387
+ export { O as t };