dev-dict 0.7.4 → 0.9.0

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.
@@ -0,0 +1,80 @@
1
+ import { L } from "./index-DX_tPBsM.js";
2
+ const _ = {
3
+ TERM_INTERPOLATION_KEYS: ["name", "altName", "label", "definition"]
4
+ }, s = {
5
+ DEFAULT_LOCALE: L.EN_US,
6
+ POPULATE_EMPTY: !0
7
+ }, T = ({
8
+ obj: n,
9
+ value: e,
10
+ populateEmpty: a = s.POPULATE_EMPTY
11
+ }) => e && Object.values(L).includes(e) ? n[e] || (a ? n[L.EN_US] : "") : e || (a ? n[L.EN_US] : ""), o = ({
12
+ obj: n,
13
+ populateEmpty: e = s.POPULATE_EMPTY
14
+ }) => {
15
+ const a = Object.values(L);
16
+ return Object.fromEntries(
17
+ a.map((t) => [t, T({ obj: n, value: n[t], populateEmpty: e })])
18
+ );
19
+ }, U = ({
20
+ obj: n,
21
+ keys: e,
22
+ populateEmpty: a = s.POPULATE_EMPTY
23
+ }) => Object.fromEntries(
24
+ Object.entries(n).map(([t, r]) => {
25
+ const P = e.filter((i) => i in r && typeof r[i] == "object").map((i) => [i, o({ obj: r[i], populateEmpty: a })]);
26
+ return [t, { ...r, ...Object.fromEntries(P) }];
27
+ })
28
+ ), E = ({
29
+ obj: n,
30
+ locale: e = s.DEFAULT_LOCALE,
31
+ populateEmpty: a = s.POPULATE_EMPTY
32
+ }) => T({ obj: n, value: n[e], populateEmpty: a }), d = ({
33
+ term: n,
34
+ locale: e = s.DEFAULT_LOCALE,
35
+ populateEmpty: a = s.POPULATE_EMPTY
36
+ }) => ({
37
+ id: n.id,
38
+ name: E({ obj: n.name, locale: e, populateEmpty: a }),
39
+ ..."altName" in n && n.altName ? { altName: E({ obj: n.altName, locale: e, populateEmpty: a }) } : {},
40
+ type: n.type.map((t) => A({ type: t, locale: e, populateEmpty: a })),
41
+ label: E({ obj: n.label, locale: e, populateEmpty: a }),
42
+ definition: E({ obj: n.definition, locale: e, populateEmpty: a }),
43
+ tags: n.tags.map((t) => O({ tag: t, locale: e, populateEmpty: a })),
44
+ links: n.links,
45
+ sources: n.sources
46
+ }), O = ({
47
+ tag: n,
48
+ locale: e = s.DEFAULT_LOCALE,
49
+ populateEmpty: a = s.POPULATE_EMPTY
50
+ }) => ({
51
+ id: n.id,
52
+ name: E({ obj: n.name, locale: e, populateEmpty: a })
53
+ }), A = ({
54
+ type: n,
55
+ locale: e = s.DEFAULT_LOCALE,
56
+ populateEmpty: a = s.POPULATE_EMPTY
57
+ }) => ({
58
+ id: n.id,
59
+ name: E({ obj: n.name, locale: e, populateEmpty: a })
60
+ }), b = ({
61
+ source: n,
62
+ locale: e = s.DEFAULT_LOCALE,
63
+ populateEmpty: a = s.POPULATE_EMPTY
64
+ }) => ({
65
+ id: n.id,
66
+ name: E({ obj: n.name, locale: e, populateEmpty: a })
67
+ });
68
+ export {
69
+ s as C,
70
+ _ as M,
71
+ A as a,
72
+ O as b,
73
+ b as c,
74
+ T as d,
75
+ o as e,
76
+ E as f,
77
+ d as g,
78
+ U as i
79
+ };
80
+ //# sourceMappingURL=helpers-D13_Q8CF.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"helpers-D13_Q8CF.js","sources":["../src/common/index.ts","../src/utils/helpers.ts"],"sourcesContent":["import { LOCALES } from '@/data/locales'\n\nexport const MISC = {\n TERM_INTERPOLATION_KEYS: ['name', 'altName', 'label', 'definition'],\n}\n\nexport const CONFIG = {\n DEFAULT_LOCALE: LOCALES.EN_US,\n POPULATE_EMPTY: true,\n}\n","import type {\n TLocale,\n TLocaleRecord,\n TTerm,\n TTermLocalized,\n TTermSource,\n TTermSourceLocalized,\n TTermTag,\n TTermTagLocalized,\n TTermType,\n TTermTypeLocalized,\n} from '@/types'\nimport { CONFIG } from '@/common'\nimport { LOCALES } from '@/data/locales'\n\n/**\n * This method will convert e.g. `[LOCALES.EN_GB]: LOCALES.EN_US` to the actual value\n * of the specified locale, in this case the value of `LOCALES.EN_US`.\n */\nexport const interpolateValue = ({\n obj,\n value,\n populateEmpty = CONFIG.POPULATE_EMPTY,\n}: {\n obj: TLocaleRecord\n value: undefined | string\n populateEmpty?: boolean\n}): string => {\n if (value && Object.values<string>(LOCALES).includes(value)) {\n return obj[value as TLocale] || (populateEmpty ? obj[LOCALES.EN_US] : '')\n }\n return value || (populateEmpty ? obj[LOCALES.EN_US] : '')\n}\n\nexport const interpolateLocaleRecord = ({\n obj,\n populateEmpty = CONFIG.POPULATE_EMPTY,\n}: {\n obj: TLocaleRecord\n populateEmpty?: boolean\n}): TLocaleRecord => {\n const locales = Object.values<string>(LOCALES) as TLocale[]\n\n return Object.fromEntries(\n locales.map((locale) => [locale, interpolateValue({ obj, value: obj[locale], populateEmpty })]),\n ) as TLocaleRecord\n}\n\nexport const interpolateValues = <T extends Record<string, any>>({\n obj,\n keys,\n populateEmpty = CONFIG.POPULATE_EMPTY,\n}: {\n obj: T\n keys: string[]\n populateEmpty?: boolean\n}): T => {\n return Object.fromEntries(\n Object.entries(obj).map(([itemKey, item]) => {\n const interpolatedFields = keys\n .filter((key) => key in item && typeof item[key] === 'object')\n .map((key) => [key, interpolateLocaleRecord({ obj: item[key], populateEmpty })])\n\n return [itemKey, { ...item, ...Object.fromEntries(interpolatedFields) }]\n }),\n ) as T\n}\n\nexport const getValueLocalized = ({\n obj,\n locale = CONFIG.DEFAULT_LOCALE,\n populateEmpty = CONFIG.POPULATE_EMPTY,\n}: {\n obj: TLocaleRecord\n locale?: TLocale\n populateEmpty?: boolean\n}): string => {\n return interpolateValue({ obj, value: obj[locale], populateEmpty })\n}\n\nexport const getTerm = ({\n term,\n locale = CONFIG.DEFAULT_LOCALE,\n populateEmpty = CONFIG.POPULATE_EMPTY,\n}: {\n term: TTerm\n locale?: TLocale\n populateEmpty?: boolean\n}): TTermLocalized => {\n return {\n id: term.id,\n name: getValueLocalized({ obj: term.name, locale, populateEmpty }),\n ...('altName' in term && term.altName\n ? { altName: getValueLocalized({ obj: term.altName, locale, populateEmpty }) }\n : {}),\n type: term.type.map((value) => getType({ type: value, locale, populateEmpty })),\n label: getValueLocalized({ obj: term.label, locale, populateEmpty }),\n definition: getValueLocalized({ obj: term.definition, locale, populateEmpty }),\n tags: term.tags.map((value) => getTag({ tag: value, locale, populateEmpty })),\n links: term.links,\n sources: term.sources,\n }\n}\n\nexport const getTag = ({\n tag,\n locale = CONFIG.DEFAULT_LOCALE,\n populateEmpty = CONFIG.POPULATE_EMPTY,\n}: {\n tag: TTermTag\n locale?: TLocale\n populateEmpty?: boolean\n}): TTermTagLocalized => {\n return {\n id: tag.id,\n name: getValueLocalized({ obj: tag.name, locale, populateEmpty }),\n }\n}\n\nexport const getType = ({\n type,\n locale = CONFIG.DEFAULT_LOCALE,\n populateEmpty = CONFIG.POPULATE_EMPTY,\n}: {\n type: TTermType\n locale?: TLocale\n populateEmpty?: boolean\n}): TTermTypeLocalized => {\n return {\n id: type.id,\n name: getValueLocalized({ obj: type.name, locale, populateEmpty }),\n }\n}\n\nexport const getSource = ({\n source,\n locale = CONFIG.DEFAULT_LOCALE,\n populateEmpty = CONFIG.POPULATE_EMPTY,\n}: {\n source: TTermSource\n locale?: TLocale\n populateEmpty?: boolean\n}): TTermSourceLocalized => {\n return {\n id: source.id,\n name: getValueLocalized({ obj: source.name, locale, populateEmpty }),\n }\n}\n"],"names":["MISC","CONFIG","LOCALES","interpolateValue","obj","value","populateEmpty","interpolateLocaleRecord","locales","locale","interpolateValues","keys","itemKey","item","interpolatedFields","key","getValueLocalized","getTerm","term","getType","getTag","tag","type","getSource","source"],"mappings":"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"}
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { L as gd } from "./index-DX_tPBsM.js";
2
- import { z as a, a as s, b as i, y as d, w as e, c, d as t, e as b, f as o, g as r, h as n, i as l, j as p, v as _, k as m, l as g, m as u, n as y, o as k, t as h, p as f, q as w, r as j, s as v, u as x, x as z, A as q, B as E, C as M, D as R, E as T, F as S, G as A, H as I, I as C, J as L, K as N, L as O, M as B, N as D, O as F, P as G, Q as K, R as P, S as V, T as W, U as Y, V as H, W as J, X as Q, Y as U, Z as X, _ as Z, $, a0 as aa, a1 as sa, a2 as ia, a3 as da, a4 as ea, a5 as ca, a6 as ta, a7 as ba, a8 as oa, a9 as ra, aa as na, ab as la, ac as pa, ad as _a, ae as ma, af as ga, ag as ua, ah as ya, ai as ka, aj as ha, ak as fa, al as wa, am as ja, an as va, ao as xa, ap as za, aq as qa, ar as Ea, as as Ma, at as Ra, au as Ta, av as Sa, aw as Aa, ax as Ia, ay as Ca, az as La, aA as Na, aB as Oa, aC as Ba, aD as Da, aE as Fa, aF as Ga, aG as Ka, aH as Pa, aI as Va, aJ as Wa, aK as Ya, aL as Ha, aM as Ja, aN as Qa, aO as Ua, aP as Xa, aQ as Za, aR as $a, aS as as, aT as ss, aU as is, aV as ds, aW as es, aX as cs, aY as ts, aZ as bs, a_ as os, a$ as rs, b0 as ns, b1 as ls, b2 as ps, b3 as _s, b4 as ms, b5 as gs, b6 as us, b7 as ys, b8 as ks, b9 as hs, ba as fs, bb as ws, bc as js, bd as vs, be as xs, bf as zs, bg as qs, bh as Es, bi as Ms, bj as Rs, bk as Ts, bl as Ss, bm as As, bn as Is, bo as Cs, bp as Ls, bq as Ns, br as Os, bs as Bs, bt as Ds, bu as Fs, bv as Gs, bw as Ks, bx as Ps, by as Vs, bz as Ws, bA as Ys, bB as Hs, bC as Js, bD as Qs, bE as Us, bF as Xs, bG as Zs, bH as $s, bI as ai, bJ as si, bK as ii, bL as di, bM as ei, bN as ci, bO as ti, bP as bi, bQ as oi, bR as ri, bS as ni, bT as li, bU as pi, bV as _i, bW as mi, bX as gi, bY as ui, bZ as yi, b_ as ki, b$ as hi, c0 as fi, c1 as wi, c2 as ji, c3 as vi, c4 as xi, c5 as zi, c6 as qi, c7 as Ei, c8 as Mi, c9 as Ri, ca as Ti, cb as Si, cc as Ai, cd as Ii, ce as Ci, cf as Li, cg as Ni, ch as Oi, ci as Bi, cj as Di, ck as Fi, cl as Gi, cm as Ki, cn as Pi, co as Vi, cp as Wi, cq as Yi, cr as Hi, cs as Ji, ct as Qi, cu as Ui, cv as Xi, cw as Zi, cx as $i, cy as ad, cz as sd, cA as id, cB as dd, cC as ed, cD as cd, cE as td } from "./terms-entry-CupmUbNe.js";
3
- import { cF as yd, cG as kd } from "./terms-entry-CupmUbNe.js";
4
- import { i as bd, M as od } from "./helpers-CGZRMw3X.js";
2
+ import { z as a, a as s, b as i, y as d, w as e, c, d as t, e as b, f as o, g as r, h as n, i as l, j as p, v as _, k as m, l as g, m as u, n as y, o as k, t as h, p as f, q as w, r as j, s as v, u as x, x as z, A as q, B as E, C as M, D as R, E as T, F as S, G as A, H as I, I as C, J as L, K as N, L as O, M as B, N as D, O as F, P as G, Q as K, R as P, S as V, T as W, U as Y, V as H, W as J, X as Q, Y as U, Z as X, _ as Z, $, a0 as aa, a1 as sa, a2 as ia, a3 as da, a4 as ea, a5 as ca, a6 as ta, a7 as ba, a8 as oa, a9 as ra, aa as na, ab as la, ac as pa, ad as _a, ae as ma, af as ga, ag as ua, ah as ya, ai as ka, aj as ha, ak as fa, al as wa, am as ja, an as va, ao as xa, ap as za, aq as qa, ar as Ea, as as Ma, at as Ra, au as Ta, av as Sa, aw as Aa, ax as Ia, ay as Ca, az as La, aA as Na, aB as Oa, aC as Ba, aD as Da, aE as Fa, aF as Ga, aG as Ka, aH as Pa, aI as Va, aJ as Wa, aK as Ya, aL as Ha, aM as Ja, aN as Qa, aO as Ua, aP as Xa, aQ as Za, aR as $a, aS as as, aT as ss, aU as is, aV as ds, aW as es, aX as cs, aY as ts, aZ as bs, a_ as os, a$ as rs, b0 as ns, b1 as ls, b2 as ps, b3 as _s, b4 as ms, b5 as gs, b6 as us, b7 as ys, b8 as ks, b9 as hs, ba as fs, bb as ws, bc as js, bd as vs, be as xs, bf as zs, bg as qs, bh as Es, bi as Ms, bj as Rs, bk as Ts, bl as Ss, bm as As, bn as Is, bo as Cs, bp as Ls, bq as Ns, br as Os, bs as Bs, bt as Ds, bu as Fs, bv as Gs, bw as Ks, bx as Ps, by as Vs, bz as Ws, bA as Ys, bB as Hs, bC as Js, bD as Qs, bE as Us, bF as Xs, bG as Zs, bH as $s, bI as ai, bJ as si, bK as ii, bL as di, bM as ei, bN as ci, bO as ti, bP as bi, bQ as oi, bR as ri, bS as ni, bT as li, bU as pi, bV as _i, bW as mi, bX as gi, bY as ui, bZ as yi, b_ as ki, b$ as hi, c0 as fi, c1 as wi, c2 as ji, c3 as vi, c4 as xi, c5 as zi, c6 as qi, c7 as Ei, c8 as Mi, c9 as Ri, ca as Ti, cb as Si, cc as Ai, cd as Ii, ce as Ci, cf as Li, cg as Ni, ch as Oi, ci as Bi, cj as Di, ck as Fi, cl as Gi, cm as Ki, cn as Pi, co as Vi, cp as Wi, cq as Yi, cr as Hi, cs as Ji, ct as Qi, cu as Ui, cv as Xi, cw as Zi, cx as $i, cy as ad, cz as sd, cA as id, cB as dd, cC as ed, cD as cd, cE as td } from "./terms-entry-G_nXhgxN.js";
3
+ import { cF as yd, cG as kd } from "./terms-entry-G_nXhgxN.js";
4
+ import { i as bd, M as od } from "./helpers-D13_Q8CF.js";
5
5
  const rd = {
6
6
  [td.id]: td,
7
7
  [cd.id]: cd,
@@ -1,5 +1,5 @@
1
1
  import { L as e } from "./index-DX_tPBsM.js";
2
- import { i as n } from "./helpers-CGZRMw3X.js";
2
+ import { i as n } from "./helpers-D13_Q8CF.js";
3
3
  import { ui_library as s, testing as _, security as o, qa as E, open_source as l, javascript as S, frontend as N, e2e as U, cryptography as d, backend as c, automation as g } from "./tags-entry.js";
4
4
  import { standard as r, platform as p, runtime_environment as b, methodology as m, library as y, language as f, framework as u, concept as k, cms as h } from "./types-entry.js";
5
5
  const B = {
@@ -24,9 +24,9 @@ const B = {
24
24
  }, v = {
25
25
  id: "community",
26
26
  name: {
27
- [e.EN_US]: "Community Consensus",
27
+ [e.EN_US]: "Community",
28
28
  [e.EN_GB]: e.EN_US,
29
- [e.DE_DE]: "Gemeinschaftskonsens"
29
+ [e.DE_DE]: "Gemeinschaft"
30
30
  }
31
31
  }, D = {
32
32
  id: "official_website",
@@ -86,8 +86,8 @@ const B = {
86
86
  wikipedia: "https://en.wikipedia.org/wiki/Advanced_Encryption_Standard"
87
87
  },
88
88
  sources: {
89
- label: t.community,
90
- definition: t.ai_generated
89
+ label: [t.community],
90
+ definition: [t.ai_generated, t.wikipedia]
91
91
  }
92
92
  }, L = {
93
93
  id: "agile",
@@ -2258,8 +2258,8 @@ const B = {
2258
2258
  wikipedia: "https://en.wikipedia.org/wiki/React_(software)"
2259
2259
  },
2260
2260
  sources: {
2261
- label: t.community,
2262
- definition: t.official_website
2261
+ label: [t.community],
2262
+ definition: [t.official_website]
2263
2263
  }
2264
2264
  }, Li = {
2265
2265
  id: "react_hook_form",
@@ -2793,8 +2793,8 @@ const B = {
2793
2793
  website: "https://www.typescriptlang.org"
2794
2794
  },
2795
2795
  sources: {
2796
- label: t.community,
2797
- definition: t.official_website
2796
+ label: [t.community],
2797
+ definition: [t.official_website]
2798
2798
  }
2799
2799
  }, kt = {
2800
2800
  id: "typesense",
@@ -3286,4 +3286,4 @@ export {
3286
3286
  Wt as y,
3287
3287
  Mt as z
3288
3288
  };
3289
- //# sourceMappingURL=terms-entry-CupmUbNe.js.map
3289
+ //# sourceMappingURL=terms-entry-G_nXhgxN.js.map