123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- import {
- _,
- x
- } from "./chunk-3HCJD762.js";
- import {
- L,
- S,
- m
- } from "./chunk-TV3CFJQR.js";
- import {
- ie
- } from "./chunk-CRGY2SDS.js";
- import {
- n
- } from "./chunk-4T5ZGMEN.js";
- import "./chunk-5UVJ64RB.js";
- import "./chunk-ETGAZ7LF.js";
- import "./chunk-75U5LM2V.js";
- import "./chunk-RMDDCMKS.js";
- import "./chunk-VCH45Q2I.js";
- import "./chunk-HZRKBTHJ.js";
- import "./chunk-6T6G6LCQ.js";
- import "./chunk-YEJL5NEF.js";
- import "./chunk-PQFTYGF5.js";
- import "./chunk-2Z2TG5CU.js";
- import "./chunk-6KZ2LTDA.js";
- import "./chunk-U2XHEJM7.js";
- import "./chunk-SQOPWYIT.js";
- import "./chunk-V6P2MAQQ.js";
- import {
- s2 as s,
- s3 as s2
- } from "./chunk-E5O6P5I2.js";
- import "./chunk-SPWQ3AWG.js";
- import "./chunk-2TIUKVZN.js";
- import {
- t
- } from "./chunk-YXWMMD76.js";
- import "./chunk-S5KM4IGW.js";
- // node_modules/@arcgis/core/layers/support/labelFormatUtils.js
- var c = s.getLogger("esri.layers.support.labelFormatUtils");
- var f = { type: "simple", evaluate: () => null };
- var p = { getAttribute: (e, r) => e.field(r) };
- async function m2(r, a, n2) {
- if (!r || !r.symbol)
- return f;
- const o = r.where, i = x(r), m3 = o ? await import("./WhereClause-32BDBNIA.js") : null;
- let g;
- if ("arcade" === i.type) {
- const r2 = await n(i.expression, n2, a);
- if (t(r2))
- return f;
- g = { type: "arcade", evaluate(t2) {
- try {
- const e = r2.evaluate({ $feature: "attributes" in t2 ? r2.repurposeFeature(t2) : t2 });
- if (null != e)
- return e.toString();
- } catch (a2) {
- c.error(new s2("arcade-expression-error", "Encountered an error when evaluating label expression for feature", { feature: t2, expression: i }));
- }
- return null;
- }, needsHydrationToEvaluate: () => null == _(i.expression) };
- } else
- g = { type: "simple", evaluate: (e) => i.expression.replace(/{[^}]*}/g, (r2) => {
- const t2 = r2.slice(1, -1), n3 = a.get(t2);
- if (!n3)
- return r2;
- let o2 = null;
- if ("attributes" in e) {
- e && e.attributes && (o2 = e.attributes[n3.name]);
- } else
- o2 = e.field(n3.name);
- return null == o2 ? "" : d(o2, n3);
- }) };
- if (o) {
- let r2;
- try {
- r2 = m3.WhereClause.create(o, a);
- } catch (y) {
- return c.error(new s2("bad-where-clause", "Encountered an error when evaluating where clause, ignoring", { where: o, error: y })), f;
- }
- const t2 = g.evaluate;
- g.evaluate = (a2) => {
- const n3 = "attributes" in a2 ? void 0 : p;
- try {
- if (r2.testFeature(a2, n3))
- return t2(a2);
- } catch (y) {
- c.error(new s2("bad-where-clause", "Encountered an error when evaluating where clause for feature", { where: o, feature: a2, error: y }));
- }
- return null;
- };
- }
- return g;
- }
- function d(e, r) {
- if (null == e)
- return "";
- const t2 = r.domain;
- if (t2) {
- if ("codedValue" === t2.type || "coded-value" === t2.type) {
- const r2 = e;
- for (const e2 of t2.codedValues)
- if (e2.code === r2)
- return e2.name;
- } else if ("range" === t2.type) {
- const r2 = +e, a = "range" in t2 ? t2.range[0] : t2.minValue, n2 = "range" in t2 ? t2.range[1] : t2.maxValue;
- if (a <= r2 && r2 <= n2)
- return t2.name;
- }
- }
- let l = e;
- return "date" === r.type || "esriFieldTypeDate" === r.type ? l = L(l, S("short-date")) : ie(r) && (l = m(+l)), l || "";
- }
- export {
- m2 as createLabelFunction,
- d as formatField
- };
- //# sourceMappingURL=labelFormatUtils-QBH7I42E.js.map
|