@sanity/client 8.0.0 → 8.2.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.
- package/README.md +265 -0
- package/dist/{browserUpload-CQgx9YYo.js → browserUpload-2tz6Sdqp.js} +4 -3
- package/dist/browserUpload-2tz6Sdqp.js.map +1 -0
- package/dist/{browserUpload-icWlVP15.js → browserUpload-CwpNx7Vl.js} +4 -3
- package/dist/browserUpload-CwpNx7Vl.js.map +1 -0
- package/dist/{config-a8VajuEY.js → config-3wiPP-sZ.js} +2 -2
- package/dist/config-3wiPP-sZ.js.map +1 -0
- package/dist/csm.js +2 -2
- package/dist/csm.js.map +1 -1
- package/dist/index.d.ts +17 -11
- package/dist/index.js +610 -136
- package/dist/index.js.map +1 -1
- package/dist/index.node.d.ts +918 -26
- package/dist/index.node.js +559 -66
- package/dist/index.node.js.map +1 -1
- package/dist/media-library.d.ts +1 -1
- package/dist/{request-CJxcN16k.js → request-BhMuKj0D.js} +10 -9
- package/dist/request-BhMuKj0D.js.map +1 -0
- package/dist/{request-k7VS_NnC.js → request-SnMg7nUX.js} +10 -9
- package/dist/request-SnMg7nUX.js.map +1 -0
- package/dist/{resolveEditInfo-sq7yF78q.js → resolveEditInfo-Cz-smq3a.js} +17 -3
- package/dist/resolveEditInfo-Cz-smq3a.js.map +1 -0
- package/dist/stega.js +1 -1
- package/dist/{stegaEncodeSourceMap-DkoIlutY.js → stegaEncodeSourceMap-DbM2fTN4.js} +8 -2
- package/dist/stegaEncodeSourceMap-DbM2fTN4.js.map +1 -0
- package/dist/{stegaEncodeSourceMap-B2fGArSf.js → stegaEncodeSourceMap-YR3NQ3iz.js} +2 -2
- package/dist/{stegaEncodeSourceMap-B2fGArSf.js.map → stegaEncodeSourceMap-YR3NQ3iz.js.map} +1 -1
- package/dist/{types-CUxZSgB2.d.ts → types-nJhm5Nyq.d.ts} +910 -24
- package/package.json +26 -11
- package/src/SanityClient.ts +39 -20
- package/src/assets/AssetsClient.ts +54 -5
- package/src/collaboration/CollaborationCommentsClient.ts +387 -0
- package/src/collaboration/comments.ts +313 -0
- package/src/collaboration/types.ts +252 -0
- package/src/csm/applySourceDocuments.ts +2 -4
- package/src/csm/draftUtils.ts +23 -4
- package/src/data/dataMethods.ts +9 -20
- package/src/data/eventsource.ts +71 -41
- package/src/data/listen.ts +20 -5
- package/src/data/live.ts +17 -9
- package/src/data/resolveEventSourceFetch.ts +9 -1
- package/src/defineCreateClient.ts +5 -1
- package/src/functions/FunctionsClient.ts +66 -0
- package/src/functions/invoke.ts +176 -0
- package/src/http/browserUpload.ts +1 -0
- package/src/http/errors.ts +2 -1
- package/src/http/request.ts +8 -14
- package/src/mediaLibrary/MediaLibraryVideoClient.ts +1 -1
- package/src/types.ts +420 -4
- package/src/validators.ts +1 -1
- package/src/warnings.ts +7 -1
- package/dist/browserUpload-CQgx9YYo.js.map +0 -1
- package/dist/browserUpload-icWlVP15.js.map +0 -1
- package/dist/config-a8VajuEY.js.map +0 -1
- package/dist/request-CJxcN16k.js.map +0 -1
- package/dist/request-k7VS_NnC.js.map +0 -1
- package/dist/resolveEditInfo-sq7yF78q.js.map +0 -1
- package/dist/stegaEncodeSourceMap-DkoIlutY.js.map +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"request-CJxcN16k.js","names":["headersToRecord","GetItHttpError"],"sources":["../src/util/codeFrame.ts","../src/http/errors.ts","../src/http/request.ts"],"sourcesContent":["/**\n * Inlined, modified version of the `codeFrameColumns` function from `@babel/code-frame`.\n * MIT-licensed - https://github.com/babel/babel/blob/main/LICENSE\n * Copyright (c) 2014-present Sebastian McKenzie and other contributors.\n */\ntype Location = {\n column: number\n line: number\n}\n\ntype NodeLocation = {\n start: Location\n end?: Location\n}\n\ntype GroqLocation = {\n start: number\n end?: number\n}\n\n/**\n * RegExp to test for newlines.\n */\n\nconst NEWLINE = /\\r\\n|[\\n\\r\\u2028\\u2029]/\n\n/**\n * Extract what lines should be marked and highlighted.\n */\n\ntype MarkerLines = Record<number, true | [number, number]>\n\n/**\n * Highlight a code frame with the given location and message.\n *\n * @param query - The query to be highlighted.\n * @param location - The location of the error in the code/query.\n * @param message - Message to be displayed inline (if possible) next to the highlighted\n * location in the code. If it can't be positioned inline, it will be placed above the\n * code frame.\n * @returns The highlighted code frame.\n */\nexport function codeFrame(query: string, location: GroqLocation, message?: string): string {\n const lines = query.split(NEWLINE)\n const loc = {\n start: columnToLine(location.start, lines),\n end: location.end ? columnToLine(location.end, lines) : undefined,\n }\n\n const {start, end, markerLines} = getMarkerLines(loc, lines)\n\n const numberMaxWidth = `${end}`.length\n\n return query\n .split(NEWLINE, end)\n .slice(start, end)\n .map((line, index) => {\n const number = start + 1 + index\n const paddedNumber = ` ${number}`.slice(-numberMaxWidth)\n const gutter = ` ${paddedNumber} |`\n const hasMarker = markerLines[number]\n const lastMarkerLine = !markerLines[number + 1]\n if (!hasMarker) {\n return ` ${gutter}${line.length > 0 ? ` ${line}` : ''}`\n }\n\n let markerLine = ''\n if (Array.isArray(hasMarker)) {\n const markerSpacing = line.slice(0, Math.max(hasMarker[0] - 1, 0)).replace(/[^\\t]/g, ' ')\n const numberOfMarkers = hasMarker[1] || 1\n\n markerLine = [\n '\\n ',\n gutter.replace(/\\d/g, ' '),\n ' ',\n markerSpacing,\n '^'.repeat(numberOfMarkers),\n ].join('')\n\n if (lastMarkerLine && message) {\n markerLine += ' ' + message\n }\n }\n return ['>', gutter, line.length > 0 ? ` ${line}` : '', markerLine].join('')\n })\n .join('\\n')\n}\n\nfunction getMarkerLines(\n loc: NodeLocation,\n source: Array<string>,\n): {\n start: number\n end: number\n markerLines: MarkerLines\n} {\n const startLoc: Location = {...loc.start}\n const endLoc: Location = {...startLoc, ...loc.end}\n const linesAbove = 2\n const linesBelow = 3\n const startLine = startLoc.line ?? -1\n const startColumn = startLoc.column ?? 0\n const endLine = endLoc.line\n const endColumn = endLoc.column\n\n let start = Math.max(startLine - (linesAbove + 1), 0)\n let end = Math.min(source.length, endLine + linesBelow)\n\n if (startLine === -1) {\n start = 0\n }\n\n if (endLine === -1) {\n end = source.length\n }\n\n const lineDiff = endLine - startLine\n const markerLines: MarkerLines = {}\n\n if (lineDiff) {\n for (let i = 0; i <= lineDiff; i++) {\n const lineNumber = i + startLine\n\n if (!startColumn) {\n markerLines[lineNumber] = true\n } else if (i === 0) {\n const sourceLength = source[lineNumber - 1].length\n\n markerLines[lineNumber] = [startColumn, sourceLength - startColumn + 1]\n } else if (i === lineDiff) {\n markerLines[lineNumber] = [0, endColumn]\n } else {\n const sourceLength = source[lineNumber - i].length\n\n markerLines[lineNumber] = [0, sourceLength]\n }\n }\n } else {\n if (startColumn === endColumn) {\n if (startColumn) {\n markerLines[startLine] = [startColumn, 0]\n } else {\n markerLines[startLine] = true\n }\n } else {\n markerLines[startLine] = [startColumn, endColumn - startColumn]\n }\n }\n\n return {start, end, markerLines}\n}\n\nfunction columnToLine(column: number, lines: string[]): Location {\n let offset = 0\n\n for (let i = 0; i < lines.length; i++) {\n const lineLength = lines[i].length + 1 // assume '\\n' after each line\n\n if (offset + lineLength > column) {\n return {\n line: i + 1, // 1-based line\n column: column - offset, // 0-based column\n }\n }\n\n offset += lineLength\n }\n\n // Fallback: beyond last line\n return {\n line: lines.length,\n column: lines[lines.length - 1]?.length ?? 0,\n }\n}\n","import type {ActionError, Any, ErrorProps, MutationError, QueryParseError} from '../types'\nimport {codeFrame} from '../util/codeFrame'\nimport {isRecord} from '../util/isRecord'\n\nconst MAX_ITEMS_IN_ERROR_MESSAGE = 5\n\n/**\n * Canonical HTTP response shape used internally to build {@link ClientError}\n * and {@link ServerError}. Decouples the error layer from any particular\n * transport library — adapters in the HTTP layer (e.g. `httpResponseFromGetIt`)\n * project transport-specific response shapes into this stable form before\n * constructing errors.\n *\n * Matches the public {@link HttpError.response} shape so consumers see no\n * difference in error properties when the underlying transport changes.\n *\n * @internal\n */\nexport interface CanonicalHttpResponse {\n statusCode: number\n statusMessage: string | null\n headers: Record<string, string>\n body: unknown\n url: string\n method: string\n}\n\n/**\n * Adapter for buffered responses from get-it v9 (`BufferedResponse`-shaped).\n *\n * The URL and method aren't on the response itself in v9, so the request\n * options must be passed alongside.\n *\n * @internal\n */\nexport function httpResponseFromFetch(\n res: {\n status: number\n statusText: string\n headers: Headers\n body: unknown\n },\n reqUrl: string,\n reqMethod: string,\n): CanonicalHttpResponse {\n return {\n statusCode: res.status,\n statusMessage: res.statusText || null,\n headers: headersToRecord(res.headers),\n body: res.body,\n url: reqUrl,\n method: reqMethod,\n }\n}\n\nfunction headersToRecord(headers: Headers): Record<string, string> {\n const out: Record<string, string> = {}\n headers.forEach((value, key) => {\n out[key] = value\n })\n return out\n}\n\n/**\n * Shared properties for HTTP errors (eg both ClientError and ServerError)\n * Use `isHttpError` for type narrowing and accessing response properties.\n *\n * @public\n */\nexport interface HttpError {\n statusCode: number\n message: string\n response: {\n body: unknown\n url: string\n method: string\n headers: Record<string, string>\n statusCode: number\n statusMessage: string | null\n }\n}\n\n/**\n * Checks if the provided error is an HTTP error.\n *\n * @param error - The error to check.\n * @returns `true` if the error is an HTTP error, `false` otherwise.\n * @public\n */\nexport function isHttpError(error: unknown): error is HttpError {\n if (!isRecord(error)) {\n return false\n }\n\n const response = error.response\n if (\n typeof error.statusCode !== 'number' ||\n typeof error.message !== 'string' ||\n !isRecord(response)\n ) {\n return false\n }\n\n if (\n typeof response.body === 'undefined' ||\n typeof response.url !== 'string' ||\n typeof response.method !== 'string' ||\n typeof response.headers !== 'object' ||\n typeof response.statusCode !== 'number'\n ) {\n return false\n }\n\n return true\n}\n\n/** @public */\nexport class ClientError extends Error {\n response: ErrorProps['response']\n statusCode: ErrorProps['statusCode'] = 400\n responseBody: ErrorProps['responseBody']\n traceId: ErrorProps['traceId']\n details: ErrorProps['details']\n\n constructor(res: Any, tag?: string) {\n const props = extractErrorProps(res, tag)\n super(props.message)\n Object.assign(this, props)\n }\n}\n\n/** @public */\nexport class ServerError extends Error {\n response: ErrorProps['response']\n statusCode: ErrorProps['statusCode'] = 500\n responseBody: ErrorProps['responseBody']\n traceId: ErrorProps['traceId']\n details: ErrorProps['details']\n\n constructor(res: Any) {\n const props = extractErrorProps(res)\n super(props.message)\n Object.assign(this, props)\n }\n}\n\nfunction extractErrorProps(res: Any, tag?: string): ErrorProps {\n const body = res.body\n const props = {\n response: res,\n statusCode: res.statusCode,\n responseBody: stringifyBody(body, res),\n traceId: extractTraceId(res),\n message: '',\n details: undefined as Any,\n }\n\n // Fall back early if we didn't get a JSON object returned as expected\n if (!isRecord(body)) {\n props.message = `${httpErrorMessage(res, body)}${formatTraceId(props.traceId)}`\n return props\n }\n\n const error = body.error\n\n // API/Boom style errors ({statusCode, error, message})\n if (typeof error === 'string' && typeof body.message === 'string') {\n props.message = `${error} - ${body.message}${formatTraceId(props.traceId)}`\n return props\n }\n\n // Content Lake errors with a `error` prop being an object\n if (typeof error !== 'object' || error === null) {\n if (typeof error === 'string') {\n props.message = `${error}${formatTraceId(props.traceId)}`\n } else if (typeof body.message === 'string') {\n props.message = `${body.message}${formatTraceId(props.traceId)}`\n } else {\n props.message = `${httpErrorMessage(res, body)}${formatTraceId(props.traceId)}`\n }\n return props\n }\n\n // Mutation errors (specifically)\n if (isMutationError(error) || isActionError(error)) {\n const allItems = error.items || []\n const items = allItems\n .slice(0, MAX_ITEMS_IN_ERROR_MESSAGE)\n .map((item) => item.error?.description)\n .filter(Boolean)\n let itemsStr = items.length ? `:\\n- ${items.join('\\n- ')}` : ''\n if (allItems.length > MAX_ITEMS_IN_ERROR_MESSAGE) {\n itemsStr += `\\n...and ${allItems.length - MAX_ITEMS_IN_ERROR_MESSAGE} more`\n }\n props.message = `${error.description}${formatTraceId(props.traceId)}${itemsStr}`\n props.details = body.error\n return props\n }\n\n // Query parse errors\n if (isQueryParseError(error)) {\n props.message = formatQueryParseError(error, tag, props.traceId)\n props.details = body.error\n return props\n }\n\n if ('description' in error && typeof error.description === 'string') {\n // Query/database errors ({error: {description, other, arb, props}})\n props.message = `${error.description}${formatTraceId(props.traceId)}`\n props.details = error\n return props\n }\n\n // Other, more arbitrary errors\n props.message = `${httpErrorMessage(res, body)}${formatTraceId(props.traceId)}`\n return props\n}\n\nfunction isMutationError(error: object): error is MutationError {\n return (\n 'type' in error &&\n error.type === 'mutationError' &&\n 'description' in error &&\n typeof error.description === 'string'\n )\n}\n\nfunction isActionError(error: object): error is ActionError {\n return (\n 'type' in error &&\n error.type === 'actionError' &&\n 'description' in error &&\n typeof error.description === 'string'\n )\n}\n\n/** @internal */\nexport function isQueryParseError(error: object): error is QueryParseError {\n return (\n isRecord(error) &&\n error.type === 'queryParseError' &&\n typeof error.query === 'string' &&\n typeof error.start === 'number' &&\n typeof error.end === 'number'\n )\n}\n\n/**\n * Formats a GROQ query parse error into a human-readable string.\n *\n * @param error - The error object containing details about the parse error.\n * @param tag - An optional tag to include in the error message.\n * @returns A formatted error message string.\n * @public\n */\nexport function formatQueryParseError(\n error: QueryParseError,\n tag?: string | null,\n traceId?: string,\n) {\n const {query, start, end, description} = error\n const withTraceId = traceId ? `\\n(traceId: ${traceId})` : ''\n\n if (!query || typeof start === 'undefined') {\n return `GROQ query parse error: ${description}${withTraceId}`\n }\n\n const withTag = tag ? `\\n\\nTag: ${tag}` : ''\n const framed = codeFrame(query, {start, end}, description)\n\n return `GROQ query parse error:\\n${framed}${withTag}${withTraceId}`\n}\n\nfunction httpErrorMessage(res: Any, body: unknown) {\n const details = typeof body === 'string' ? ` (${sliceWithEllipsis(body, 100)})` : ''\n const statusMessage = res.statusMessage ? ` ${res.statusMessage}` : ''\n return `${res.method}-request to ${res.url} resulted in HTTP ${res.statusCode}${statusMessage}${details}`\n}\n\n/**\n * Extract the traceId from the traceparent header on the response.\n *\n * The traceparent is on the format [version]-[traceId]-[parentId]-[traceFlags], but\n * when debugging end-user issues it's the traceId we need to be able to get hold of\n * the relevant traces.\n *\n * @see https://www.w3.org/TR/trace-context/\n * @returns The traceId for HTTP response\n */\nfunction extractTraceId(res: Any): string | undefined {\n const traceparent = res?.headers?.['traceparent']\n if (!traceparent) return\n\n return traceparent.split('-')[1]\n}\n\nfunction stringifyBody(body: Any, res: Any) {\n const contentType = (res.headers['content-type'] || '').toLowerCase()\n const isJson = contentType.indexOf('application/json') !== -1\n return isJson ? JSON.stringify(body, null, 2) : body\n}\n\nfunction formatTraceId(traceId: string | undefined): string {\n return traceId ? ` (traceId: ${traceId})` : ''\n}\n\nfunction sliceWithEllipsis(str: string, max: number) {\n return str.length > max ? `${str.slice(0, max)}…` : str\n}\n\n/** @public */\nexport class CorsOriginError extends Error {\n projectId?: string\n addOriginUrl?: URL\n\n constructor({projectId, credentials}: {projectId?: string; credentials?: boolean} = {}) {\n super('CorsOriginError')\n this.name = 'CorsOriginError'\n this.projectId = projectId\n\n // Only build a deep-link when we know which project the user needs to\n // configure - without `projectId` the management URL can't actually route\n // them anywhere useful.\n if (projectId && typeof location !== 'undefined') {\n const url = new URL(`https://sanity.io/manage/project/${projectId}/api`)\n const {origin} = location\n url.searchParams.set('cors', 'add')\n url.searchParams.set('origin', origin)\n if (credentials) {\n // Pre-selects the \"Allow credentials (token-based auth)\" toggle in\n // the Sanity management CORS form.\n url.searchParams.set('credentials', '')\n }\n this.addOriginUrl = url\n this.message = `The current origin is not allowed to connect to the Live Content API. Add it here: ${url}`\n } else if (projectId) {\n this.message = `The current origin is not allowed to connect to the Live Content API. Change your configuration here: https://sanity.io/manage/project/${projectId}/api`\n } else {\n this.message = `The current origin is not allowed to connect to the Live Content API.`\n }\n }\n}\n","import {\n createRequester,\n type FetchFunction,\n HttpError as GetItHttpError,\n type RequestOptions as FetchRequestOptions,\n type TransformMiddleware,\n type WrappingMiddleware,\n} from 'get-it'\nimport {isRetryableRequest, retry} from 'get-it/middleware'\nimport {from, Observable} from 'rxjs'\n\nimport type {Any} from '../types'\nimport {ClientError, httpResponseFromFetch, ServerError} from './errors'\n\n/**\n * Middleware accepted by the internal HTTP layer. Two flavors per get-it v9:\n * a flat-pipeline transform (`beforeRequest`/`afterResponse`) or a wrapping\n * middleware that surrounds the fetch chain.\n *\n * @internal\n */\nexport type LegacyMiddleware = TransformMiddleware | WrappingMiddleware\n\n/**\n * The shape this client's internal pipeline produces. Mirrors the historical\n * `ResponseEvent` from the get-it v8 multi-event observable, so all the existing\n * downstream code (`_requestObservable`, `_uploadObservable`,\n * `defineCreateClient`) keeps working without churn.\n *\n * @internal\n */\nexport interface ResponseEvent {\n type: 'response'\n body: unknown\n statusCode: number\n statusMessage: string | null\n headers: Record<string, string>\n url: string\n method: string\n}\n\n/**\n * Legacy \"requester\" type — the result of `defineHttpRequest`. Returns a\n * single-event Observable for compatibility with the rest of the codebase.\n *\n * @internal\n */\nexport type LegacyRequester = (options: Any) => Observable<ResponseEvent>\n\n/**\n * Promise-based sibling of {@link LegacyRequester}. Resolves directly to the\n * single `ResponseEvent` the transport produces, skipping the RxJS wrapper.\n * Used by the promise-based client surface so it never constructs an\n * Observable.\n *\n * @internal\n */\nexport type PromiseRequester = (options: Any) => Promise<ResponseEvent>\n\n/**\n * Both forms of the transport, sharing a single underlying get-it requester\n * (so retry state and the one-shot warning de-duplication are shared between\n * the observable and promise paths).\n *\n * @internal\n */\nexport interface DualRequester {\n observable: LegacyRequester\n promise: PromiseRequester\n}\n\n/**\n * Options for tuning the HTTP request pipeline per-client.\n *\n * @internal\n */\nexport interface HttpRequestConfig {\n ignoreWarnings?: string | RegExp | Array<string | RegExp>\n maxRetries?: number\n retryDelay?: (attemptNumber: number) => number\n}\n\n/**\n * Build both the observable and promise transport forms from a single get-it\n * requester. The promise form is the primitive (`executeRequest` is already\n * promise-based); the observable form wraps it lazily so each subscription\n * starts its own request (cold), and unsubscribing aborts the in-flight\n * fetch — the same contract as the get-it v8 observable adapter.\n *\n * @internal\n */\nexport function defineRequester(\n envOptions: EnvironmentOptions,\n config: HttpRequestConfig = {},\n): DualRequester {\n // Framework-patched fetch implementations read extra `RequestInit` fields\n // for caching semantics — Next.js App Router's `cache` and `next` options in\n // particular. Legacy callers pass those via an object-valued `fetch` request\n // option (see `adaptToFetchOptions`, which stashes it in `meta.fetchInit`\n // since get-it v9's own `fetch` option only accepts a function). Merge them\n // into the init of whichever fetch implementation is effective for the\n // request: per-request/test-override fetch, the environment default, or the\n // global fetch.\n const applyFetchInit: WrappingMiddleware = (opts, next) => {\n const fetchInit = opts.meta?.fetchInit\n if (typeof fetchInit !== 'object' || fetchInit === null) return next(opts)\n const baseFetch: NonNullable<FetchRequestOptions['fetch']> =\n opts.fetch ?? envOptions.fetch ?? globalThis.fetch\n const fetchWithInit: typeof baseFetch = (input, init) =>\n baseFetch(input, {...fetchInit, ...init})\n return next({...opts, fetch: fetchWithInit})\n }\n\n const requester = createRequester({\n ...(envOptions.fetch ? {fetch: envOptions.fetch} : {}),\n headers: envOptions.headers,\n // Keep get-it's built-in 4xx/5xx → HttpError so the retry middleware can\n // see them; we translate to ClientError/ServerError after the retry loop\n // has exhausted in `executeRequest`.\n httpErrors: true,\n middleware: [\n retry({\n shouldRetry: shouldRetryRequest,\n maxRetries: config.maxRetries ?? 5,\n ...(config.retryDelay ? {retryDelay: config.retryDelay} : {}),\n }),\n ...envOptions.middleware,\n applyFetchInit,\n printWarnings(config),\n ],\n })\n\n const promise: PromiseRequester = (options: Any) => {\n // Options arrive fetch-shaped from `requestOptions` — the single\n // translation boundary between public option names and the transport.\n if (typeof options.url !== 'string') {\n throw new TypeError('Request options must include a `url`')\n }\n return executeRequest(requester, options)\n }\n\n // Same per-subscription AbortController pattern as `_observe` in\n // dataMethods: a caller-supplied signal is combined in via\n // `AbortSignal.any`, so the request aborts both on the caller's signal and\n // on unsubscribe. `AbortSignal.any` (rather than `addEventListener`)\n // because the caller's signal can be long-lived and reused — a manually\n // added listener would accumulate there once per subscription, since\n // `{once: true}` only cleans up if the signal actually fires.\n const observable: LegacyRequester = (options: Any) =>\n new Observable<ResponseEvent>((subscriber) => {\n const controller = new AbortController()\n const userSignal: AbortSignal | undefined = options.signal\n const signal = userSignal\n ? AbortSignal.any([userSignal, controller.signal])\n : controller.signal\n const subscription = from(promise({...options, signal})).subscribe(subscriber)\n return () => {\n subscription.unsubscribe()\n controller.abort()\n }\n })\n\n return {promise, observable}\n}\n\n/** @internal */\nexport function defineHttpRequest(\n envOptions: EnvironmentOptions,\n config: HttpRequestConfig = {},\n): LegacyRequester {\n return defineRequester(envOptions, config).observable\n}\n\n/**\n * Options describing the environment-specific defaults (Node vs. browser).\n *\n * @internal\n */\nexport interface EnvironmentOptions {\n fetch?: FetchRequestOptions['fetch']\n headers?: Record<string, string>\n middleware: LegacyMiddleware[]\n /**\n * Resolves the environment's fetch implementation — the same transport\n * regular requests use (custom fetch variants, undici configuration,\n * env-proxy support and all), optionally configured for an explicit proxy\n * URL. Lets consumers of the resolved config (the EventSource fetch\n * resolver) avoid falling back to whatever `globalThis.fetch` happens to\n * be. The Node environment supplies get-it's undici-backed fetch; the\n * browser environment leaves it unset (the global fetch IS the\n * environment's fetch there).\n *\n * Looked up via the env rather than imported directly so that the Node-only\n * `get-it/node` (which transitively pulls in `undici`) never ends up in the\n * browser bundle, even via rollup's inlined dynamic imports.\n */\n resolveFetch?: (proxyUrl?: string) => FetchFunction\n}\n\nasync function executeRequest(\n requester: ReturnType<typeof createRequester>,\n fetchOptions: FetchRequestOptions,\n): Promise<ResponseEvent> {\n const url = fetchOptions.url\n const method = (fetchOptions.method ?? 'GET').toUpperCase()\n\n let response\n try {\n response = await requester(fetchOptions)\n } catch (err) {\n if (err instanceof GetItHttpError) {\n // `err.body` is the response body as a string (get-it v9 stores the\n // already-decoded text), regardless of which response variant\n // `err.response` is.\n const errBodyText = typeof err.body === 'string' ? err.body : ''\n const errBody = parseJsonText(errBodyText, err.headers)\n const canonical = httpResponseFromFetch(\n {\n status: err.status,\n statusText: err.statusText,\n headers: err.headers,\n body: errBody,\n },\n url,\n method,\n )\n const tag = extractRequestTag(fetchOptions.query)\n if (canonical.statusCode >= 500) {\n throw new ServerError(canonical)\n }\n throw new ClientError(canonical, tag)\n }\n throw err\n }\n\n const body = parseJsonBody(response)\n return {\n type: 'response',\n body,\n statusCode: response.status,\n statusMessage: response.statusText || null,\n headers: headersToRecord(response.headers),\n url,\n method,\n }\n}\n\n/**\n * Extract the GROQ request tag (used for error messages) from the query.\n */\nfunction extractRequestTag(query: FetchRequestOptions['query']): string | undefined {\n if (!query) return undefined\n if (query instanceof URLSearchParams) return query.get('tag') ?? undefined\n const tag = query.tag\n return typeof tag === 'string' ? tag : undefined\n}\n\nfunction parseJsonBody(response: {headers: Headers; text(): string}): unknown {\n return parseJsonText(response.text(), response.headers)\n}\n\n/**\n * Parse a response body according to its `content-type`: JSON when the header\n * says so (falling back to the raw text on malformed JSON), text otherwise.\n * Shared with the browser XHR upload path so error bodies parse identically\n * on both transports.\n *\n * @internal\n */\nexport function parseJsonText(text: string, headers: Headers): unknown {\n const contentType = (headers.get('content-type') ?? '').toLowerCase()\n if (!text) return undefined\n if (contentType.includes('application/json')) {\n try {\n return JSON.parse(text)\n } catch {\n return text\n }\n }\n return text\n}\n\nfunction headersToRecord(headers: Headers): Record<string, string> {\n const out: Record<string, string> = {}\n headers.forEach((value, key) => {\n out[key] = value\n })\n return out\n}\n\nfunction shouldRetryRequest(err: unknown, attempt: number, options: FetchRequestOptions): boolean {\n // HTTP errors aren't usually retryable, but Content Lake gives us a few\n // status codes where retrying *is* the right move.\n if (err instanceof GetItHttpError) {\n const isSafe = (options.method ?? 'GET') === 'GET' || options.method === 'HEAD'\n const isQuery = (options.url ?? '').includes('/data/query')\n const status = err.status\n const retryableStatus = status === 429 || status === 502 || status === 503\n if ((isSafe || isQuery) && retryableStatus) return true\n return false\n }\n\n return isRetryableRequest(err, attempt, options)\n}\n\nfunction printWarnings(config: HttpRequestConfig): TransformMiddleware {\n const seen: Record<string, boolean> = {}\n\n const shouldIgnore = (message: string): boolean => {\n if (config.ignoreWarnings === undefined) return false\n const patterns = Array.isArray(config.ignoreWarnings)\n ? config.ignoreWarnings\n : [config.ignoreWarnings]\n return patterns.some((pattern) =>\n typeof pattern === 'string' ? message.includes(pattern) : pattern.test(message),\n )\n }\n\n return {\n afterResponse(response) {\n const header = response.headers.get('x-sanity-warning')\n if (!header) return response\n // Multiple warnings can be comma-separated per HTTP header semantics.\n for (const msg of header.split(',').map((m) => m.trim())) {\n if (!msg || seen[msg] || shouldIgnore(msg)) continue\n seen[msg] = true\n // oxlint-disable-next-line no-console\n console.warn(msg)\n }\n return response\n },\n }\n}\n"],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"request-k7VS_NnC.js","names":["headersToRecord","GetItHttpError"],"sources":["../src/util/codeFrame.ts","../src/http/errors.ts","../src/http/request.ts"],"sourcesContent":["/**\n * Inlined, modified version of the `codeFrameColumns` function from `@babel/code-frame`.\n * MIT-licensed - https://github.com/babel/babel/blob/main/LICENSE\n * Copyright (c) 2014-present Sebastian McKenzie and other contributors.\n */\ntype Location = {\n column: number\n line: number\n}\n\ntype NodeLocation = {\n start: Location\n end?: Location\n}\n\ntype GroqLocation = {\n start: number\n end?: number\n}\n\n/**\n * RegExp to test for newlines.\n */\n\nconst NEWLINE = /\\r\\n|[\\n\\r\\u2028\\u2029]/\n\n/**\n * Extract what lines should be marked and highlighted.\n */\n\ntype MarkerLines = Record<number, true | [number, number]>\n\n/**\n * Highlight a code frame with the given location and message.\n *\n * @param query - The query to be highlighted.\n * @param location - The location of the error in the code/query.\n * @param message - Message to be displayed inline (if possible) next to the highlighted\n * location in the code. If it can't be positioned inline, it will be placed above the\n * code frame.\n * @returns The highlighted code frame.\n */\nexport function codeFrame(query: string, location: GroqLocation, message?: string): string {\n const lines = query.split(NEWLINE)\n const loc = {\n start: columnToLine(location.start, lines),\n end: location.end ? columnToLine(location.end, lines) : undefined,\n }\n\n const {start, end, markerLines} = getMarkerLines(loc, lines)\n\n const numberMaxWidth = `${end}`.length\n\n return query\n .split(NEWLINE, end)\n .slice(start, end)\n .map((line, index) => {\n const number = start + 1 + index\n const paddedNumber = ` ${number}`.slice(-numberMaxWidth)\n const gutter = ` ${paddedNumber} |`\n const hasMarker = markerLines[number]\n const lastMarkerLine = !markerLines[number + 1]\n if (!hasMarker) {\n return ` ${gutter}${line.length > 0 ? ` ${line}` : ''}`\n }\n\n let markerLine = ''\n if (Array.isArray(hasMarker)) {\n const markerSpacing = line.slice(0, Math.max(hasMarker[0] - 1, 0)).replace(/[^\\t]/g, ' ')\n const numberOfMarkers = hasMarker[1] || 1\n\n markerLine = [\n '\\n ',\n gutter.replace(/\\d/g, ' '),\n ' ',\n markerSpacing,\n '^'.repeat(numberOfMarkers),\n ].join('')\n\n if (lastMarkerLine && message) {\n markerLine += ' ' + message\n }\n }\n return ['>', gutter, line.length > 0 ? ` ${line}` : '', markerLine].join('')\n })\n .join('\\n')\n}\n\nfunction getMarkerLines(\n loc: NodeLocation,\n source: Array<string>,\n): {\n start: number\n end: number\n markerLines: MarkerLines\n} {\n const startLoc: Location = {...loc.start}\n const endLoc: Location = {...startLoc, ...loc.end}\n const linesAbove = 2\n const linesBelow = 3\n const startLine = startLoc.line ?? -1\n const startColumn = startLoc.column ?? 0\n const endLine = endLoc.line\n const endColumn = endLoc.column\n\n let start = Math.max(startLine - (linesAbove + 1), 0)\n let end = Math.min(source.length, endLine + linesBelow)\n\n if (startLine === -1) {\n start = 0\n }\n\n if (endLine === -1) {\n end = source.length\n }\n\n const lineDiff = endLine - startLine\n const markerLines: MarkerLines = {}\n\n if (lineDiff) {\n for (let i = 0; i <= lineDiff; i++) {\n const lineNumber = i + startLine\n\n if (!startColumn) {\n markerLines[lineNumber] = true\n } else if (i === 0) {\n const sourceLength = source[lineNumber - 1].length\n\n markerLines[lineNumber] = [startColumn, sourceLength - startColumn + 1]\n } else if (i === lineDiff) {\n markerLines[lineNumber] = [0, endColumn]\n } else {\n const sourceLength = source[lineNumber - i].length\n\n markerLines[lineNumber] = [0, sourceLength]\n }\n }\n } else {\n if (startColumn === endColumn) {\n if (startColumn) {\n markerLines[startLine] = [startColumn, 0]\n } else {\n markerLines[startLine] = true\n }\n } else {\n markerLines[startLine] = [startColumn, endColumn - startColumn]\n }\n }\n\n return {start, end, markerLines}\n}\n\nfunction columnToLine(column: number, lines: string[]): Location {\n let offset = 0\n\n for (let i = 0; i < lines.length; i++) {\n const lineLength = lines[i].length + 1 // assume '\\n' after each line\n\n if (offset + lineLength > column) {\n return {\n line: i + 1, // 1-based line\n column: column - offset, // 0-based column\n }\n }\n\n offset += lineLength\n }\n\n // Fallback: beyond last line\n return {\n line: lines.length,\n column: lines[lines.length - 1]?.length ?? 0,\n }\n}\n","import type {ActionError, Any, ErrorProps, MutationError, QueryParseError} from '../types'\nimport {codeFrame} from '../util/codeFrame'\nimport {isRecord} from '../util/isRecord'\n\nconst MAX_ITEMS_IN_ERROR_MESSAGE = 5\n\n/**\n * Canonical HTTP response shape used internally to build {@link ClientError}\n * and {@link ServerError}. Decouples the error layer from any particular\n * transport library — adapters in the HTTP layer (e.g. `httpResponseFromGetIt`)\n * project transport-specific response shapes into this stable form before\n * constructing errors.\n *\n * Matches the public {@link HttpError.response} shape so consumers see no\n * difference in error properties when the underlying transport changes.\n *\n * @internal\n */\nexport interface CanonicalHttpResponse {\n statusCode: number\n statusMessage: string | null\n headers: Record<string, string>\n body: unknown\n url: string\n method: string\n}\n\n/**\n * Adapter for buffered responses from get-it v9 (`BufferedResponse`-shaped).\n *\n * The URL and method aren't on the response itself in v9, so the request\n * options must be passed alongside.\n *\n * @internal\n */\nexport function httpResponseFromFetch(\n res: {\n status: number\n statusText: string\n headers: Headers\n body: unknown\n },\n reqUrl: string,\n reqMethod: string,\n): CanonicalHttpResponse {\n return {\n statusCode: res.status,\n statusMessage: res.statusText || null,\n headers: headersToRecord(res.headers),\n body: res.body,\n url: reqUrl,\n method: reqMethod,\n }\n}\n\nfunction headersToRecord(headers: Headers): Record<string, string> {\n const out: Record<string, string> = {}\n headers.forEach((value, key) => {\n out[key] = value\n })\n return out\n}\n\n/**\n * Shared properties for HTTP errors (eg both ClientError and ServerError)\n * Use `isHttpError` for type narrowing and accessing response properties.\n *\n * @public\n */\nexport interface HttpError {\n statusCode: number\n message: string\n response: {\n body: unknown\n url: string\n method: string\n headers: Record<string, string>\n statusCode: number\n statusMessage: string | null\n }\n}\n\n/**\n * Checks if the provided error is an HTTP error.\n *\n * @param error - The error to check.\n * @returns `true` if the error is an HTTP error, `false` otherwise.\n * @public\n */\nexport function isHttpError(error: unknown): error is HttpError {\n if (!isRecord(error)) {\n return false\n }\n\n const response = error.response\n if (\n typeof error.statusCode !== 'number' ||\n typeof error.message !== 'string' ||\n !isRecord(response)\n ) {\n return false\n }\n\n if (\n typeof response.body === 'undefined' ||\n typeof response.url !== 'string' ||\n typeof response.method !== 'string' ||\n typeof response.headers !== 'object' ||\n typeof response.statusCode !== 'number'\n ) {\n return false\n }\n\n return true\n}\n\n/** @public */\nexport class ClientError extends Error {\n response: ErrorProps['response']\n statusCode: ErrorProps['statusCode'] = 400\n responseBody: ErrorProps['responseBody']\n traceId: ErrorProps['traceId']\n details: ErrorProps['details']\n\n constructor(res: Any, tag?: string) {\n const props = extractErrorProps(res, tag)\n super(props.message)\n Object.assign(this, props)\n }\n}\n\n/** @public */\nexport class ServerError extends Error {\n response: ErrorProps['response']\n statusCode: ErrorProps['statusCode'] = 500\n responseBody: ErrorProps['responseBody']\n traceId: ErrorProps['traceId']\n details: ErrorProps['details']\n\n constructor(res: Any) {\n const props = extractErrorProps(res)\n super(props.message)\n Object.assign(this, props)\n }\n}\n\nfunction extractErrorProps(res: Any, tag?: string): ErrorProps {\n const body = res.body\n const props = {\n response: res,\n statusCode: res.statusCode,\n responseBody: stringifyBody(body, res),\n traceId: extractTraceId(res),\n message: '',\n details: undefined as Any,\n }\n\n // Fall back early if we didn't get a JSON object returned as expected\n if (!isRecord(body)) {\n props.message = `${httpErrorMessage(res, body)}${formatTraceId(props.traceId)}`\n return props\n }\n\n const error = body.error\n\n // API/Boom style errors ({statusCode, error, message})\n if (typeof error === 'string' && typeof body.message === 'string') {\n props.message = `${error} - ${body.message}${formatTraceId(props.traceId)}`\n return props\n }\n\n // Content Lake errors with a `error` prop being an object\n if (typeof error !== 'object' || error === null) {\n if (typeof error === 'string') {\n props.message = `${error}${formatTraceId(props.traceId)}`\n } else if (typeof body.message === 'string') {\n props.message = `${body.message}${formatTraceId(props.traceId)}`\n } else {\n props.message = `${httpErrorMessage(res, body)}${formatTraceId(props.traceId)}`\n }\n return props\n }\n\n // Mutation errors (specifically)\n if (isMutationError(error) || isActionError(error)) {\n const allItems = error.items || []\n const items = allItems\n .slice(0, MAX_ITEMS_IN_ERROR_MESSAGE)\n .map((item) => item.error?.description)\n .filter(Boolean)\n let itemsStr = items.length ? `:\\n- ${items.join('\\n- ')}` : ''\n if (allItems.length > MAX_ITEMS_IN_ERROR_MESSAGE) {\n itemsStr += `\\n...and ${allItems.length - MAX_ITEMS_IN_ERROR_MESSAGE} more`\n }\n props.message = `${error.description}${formatTraceId(props.traceId)}${itemsStr}`\n props.details = body.error\n return props\n }\n\n // Query parse errors\n if (isQueryParseError(error)) {\n props.message = formatQueryParseError(error, tag, props.traceId)\n props.details = body.error\n return props\n }\n\n if ('description' in error && typeof error.description === 'string') {\n // Query/database errors ({error: {description, other, arb, props}})\n props.message = `${error.description}${formatTraceId(props.traceId)}`\n props.details = error\n return props\n }\n\n // Other, more arbitrary errors\n props.message = `${httpErrorMessage(res, body)}${formatTraceId(props.traceId)}`\n return props\n}\n\nfunction isMutationError(error: object): error is MutationError {\n return (\n 'type' in error &&\n error.type === 'mutationError' &&\n 'description' in error &&\n typeof error.description === 'string'\n )\n}\n\nfunction isActionError(error: object): error is ActionError {\n return (\n 'type' in error &&\n error.type === 'actionError' &&\n 'description' in error &&\n typeof error.description === 'string'\n )\n}\n\n/** @internal */\nexport function isQueryParseError(error: object): error is QueryParseError {\n return (\n isRecord(error) &&\n error.type === 'queryParseError' &&\n typeof error.query === 'string' &&\n typeof error.start === 'number' &&\n typeof error.end === 'number'\n )\n}\n\n/**\n * Formats a GROQ query parse error into a human-readable string.\n *\n * @param error - The error object containing details about the parse error.\n * @param tag - An optional tag to include in the error message.\n * @returns A formatted error message string.\n * @public\n */\nexport function formatQueryParseError(\n error: QueryParseError,\n tag?: string | null,\n traceId?: string,\n) {\n const {query, start, end, description} = error\n const withTraceId = traceId ? `\\n(traceId: ${traceId})` : ''\n\n if (!query || typeof start === 'undefined') {\n return `GROQ query parse error: ${description}${withTraceId}`\n }\n\n const withTag = tag ? `\\n\\nTag: ${tag}` : ''\n const framed = codeFrame(query, {start, end}, description)\n\n return `GROQ query parse error:\\n${framed}${withTag}${withTraceId}`\n}\n\nfunction httpErrorMessage(res: Any, body: unknown) {\n const details = typeof body === 'string' ? ` (${sliceWithEllipsis(body, 100)})` : ''\n const statusMessage = res.statusMessage ? ` ${res.statusMessage}` : ''\n return `${res.method}-request to ${res.url} resulted in HTTP ${res.statusCode}${statusMessage}${details}`\n}\n\n/**\n * Extract the traceId from the traceparent header on the response.\n *\n * The traceparent is on the format [version]-[traceId]-[parentId]-[traceFlags], but\n * when debugging end-user issues it's the traceId we need to be able to get hold of\n * the relevant traces.\n *\n * @see https://www.w3.org/TR/trace-context/\n * @returns The traceId for HTTP response\n */\nfunction extractTraceId(res: Any): string | undefined {\n const traceparent = res?.headers?.['traceparent']\n if (!traceparent) return\n\n return traceparent.split('-')[1]\n}\n\nfunction stringifyBody(body: Any, res: Any) {\n const contentType = (res.headers['content-type'] || '').toLowerCase()\n const isJson = contentType.indexOf('application/json') !== -1\n return isJson ? JSON.stringify(body, null, 2) : body\n}\n\nfunction formatTraceId(traceId: string | undefined): string {\n return traceId ? ` (traceId: ${traceId})` : ''\n}\n\nfunction sliceWithEllipsis(str: string, max: number) {\n return str.length > max ? `${str.slice(0, max)}…` : str\n}\n\n/** @public */\nexport class CorsOriginError extends Error {\n projectId?: string\n addOriginUrl?: URL\n\n constructor({projectId, credentials}: {projectId?: string; credentials?: boolean} = {}) {\n super('CorsOriginError')\n this.name = 'CorsOriginError'\n this.projectId = projectId\n\n // Only build a deep-link when we know which project the user needs to\n // configure - without `projectId` the management URL can't actually route\n // them anywhere useful.\n if (projectId && typeof location !== 'undefined') {\n const url = new URL(`https://sanity.io/manage/project/${projectId}/api`)\n const {origin} = location\n url.searchParams.set('cors', 'add')\n url.searchParams.set('origin', origin)\n if (credentials) {\n // Pre-selects the \"Allow credentials (token-based auth)\" toggle in\n // the Sanity management CORS form.\n url.searchParams.set('credentials', '')\n }\n this.addOriginUrl = url\n this.message = `The current origin is not allowed to connect to the Live Content API. Add it here: ${url}`\n } else if (projectId) {\n this.message = `The current origin is not allowed to connect to the Live Content API. Change your configuration here: https://sanity.io/manage/project/${projectId}/api`\n } else {\n this.message = `The current origin is not allowed to connect to the Live Content API.`\n }\n }\n}\n","import {\n createRequester,\n type FetchFunction,\n HttpError as GetItHttpError,\n type RequestOptions as FetchRequestOptions,\n type TransformMiddleware,\n type WrappingMiddleware,\n} from 'get-it'\nimport {isRetryableRequest, retry} from 'get-it/middleware'\nimport {from, Observable} from 'rxjs'\n\nimport type {Any} from '../types'\nimport {ClientError, httpResponseFromFetch, ServerError} from './errors'\n\n/**\n * Middleware accepted by the internal HTTP layer. Two flavors per get-it v9:\n * a flat-pipeline transform (`beforeRequest`/`afterResponse`) or a wrapping\n * middleware that surrounds the fetch chain.\n *\n * @internal\n */\nexport type LegacyMiddleware = TransformMiddleware | WrappingMiddleware\n\n/**\n * The shape this client's internal pipeline produces. Mirrors the historical\n * `ResponseEvent` from the get-it v8 multi-event observable, so all the existing\n * downstream code (`_requestObservable`, `_uploadObservable`,\n * `defineCreateClient`) keeps working without churn.\n *\n * @internal\n */\nexport interface ResponseEvent {\n type: 'response'\n body: unknown\n statusCode: number\n statusMessage: string | null\n headers: Record<string, string>\n url: string\n method: string\n}\n\n/**\n * Legacy \"requester\" type — the result of `defineHttpRequest`. Returns a\n * single-event Observable for compatibility with the rest of the codebase.\n *\n * @internal\n */\nexport type LegacyRequester = (options: Any) => Observable<ResponseEvent>\n\n/**\n * Promise-based sibling of {@link LegacyRequester}. Resolves directly to the\n * single `ResponseEvent` the transport produces, skipping the RxJS wrapper.\n * Used by the promise-based client surface so it never constructs an\n * Observable.\n *\n * @internal\n */\nexport type PromiseRequester = (options: Any) => Promise<ResponseEvent>\n\n/**\n * Both forms of the transport, sharing a single underlying get-it requester\n * (so retry state and the one-shot warning de-duplication are shared between\n * the observable and promise paths).\n *\n * @internal\n */\nexport interface DualRequester {\n observable: LegacyRequester\n promise: PromiseRequester\n}\n\n/**\n * Options for tuning the HTTP request pipeline per-client.\n *\n * @internal\n */\nexport interface HttpRequestConfig {\n ignoreWarnings?: string | RegExp | Array<string | RegExp>\n maxRetries?: number\n retryDelay?: (attemptNumber: number) => number\n}\n\n/**\n * Build both the observable and promise transport forms from a single get-it\n * requester. The promise form is the primitive (`executeRequest` is already\n * promise-based); the observable form wraps it lazily so each subscription\n * starts its own request (cold), and unsubscribing aborts the in-flight\n * fetch — the same contract as the get-it v8 observable adapter.\n *\n * @internal\n */\nexport function defineRequester(\n envOptions: EnvironmentOptions,\n config: HttpRequestConfig = {},\n): DualRequester {\n // Framework-patched fetch implementations read extra `RequestInit` fields\n // for caching semantics — Next.js App Router's `cache` and `next` options in\n // particular. Legacy callers pass those via an object-valued `fetch` request\n // option (see `adaptToFetchOptions`, which stashes it in `meta.fetchInit`\n // since get-it v9's own `fetch` option only accepts a function). Merge them\n // into the init of whichever fetch implementation is effective for the\n // request: per-request/test-override fetch, the environment default, or the\n // global fetch.\n const applyFetchInit: WrappingMiddleware = (opts, next) => {\n const fetchInit = opts.meta?.fetchInit\n if (typeof fetchInit !== 'object' || fetchInit === null) return next(opts)\n const baseFetch: NonNullable<FetchRequestOptions['fetch']> =\n opts.fetch ?? envOptions.fetch ?? globalThis.fetch\n const fetchWithInit: typeof baseFetch = (input, init) =>\n baseFetch(input, {...fetchInit, ...init})\n return next({...opts, fetch: fetchWithInit})\n }\n\n const requester = createRequester({\n ...(envOptions.fetch ? {fetch: envOptions.fetch} : {}),\n headers: envOptions.headers,\n // Keep get-it's built-in 4xx/5xx → HttpError so the retry middleware can\n // see them; we translate to ClientError/ServerError after the retry loop\n // has exhausted in `executeRequest`.\n httpErrors: true,\n middleware: [\n retry({\n shouldRetry: shouldRetryRequest,\n maxRetries: config.maxRetries ?? 5,\n ...(config.retryDelay ? {retryDelay: config.retryDelay} : {}),\n }),\n ...envOptions.middleware,\n applyFetchInit,\n printWarnings(config),\n ],\n })\n\n const promise: PromiseRequester = (options: Any) => {\n // Options arrive fetch-shaped from `requestOptions` — the single\n // translation boundary between public option names and the transport.\n if (typeof options.url !== 'string') {\n throw new TypeError('Request options must include a `url`')\n }\n return executeRequest(requester, options)\n }\n\n // Same per-subscription AbortController pattern as `_observe` in\n // dataMethods: a caller-supplied signal is combined in via\n // `AbortSignal.any`, so the request aborts both on the caller's signal and\n // on unsubscribe. `AbortSignal.any` (rather than `addEventListener`)\n // because the caller's signal can be long-lived and reused — a manually\n // added listener would accumulate there once per subscription, since\n // `{once: true}` only cleans up if the signal actually fires.\n const observable: LegacyRequester = (options: Any) =>\n new Observable<ResponseEvent>((subscriber) => {\n const controller = new AbortController()\n const userSignal: AbortSignal | undefined = options.signal\n const signal = userSignal\n ? AbortSignal.any([userSignal, controller.signal])\n : controller.signal\n const subscription = from(promise({...options, signal})).subscribe(subscriber)\n return () => {\n subscription.unsubscribe()\n controller.abort()\n }\n })\n\n return {promise, observable}\n}\n\n/** @internal */\nexport function defineHttpRequest(\n envOptions: EnvironmentOptions,\n config: HttpRequestConfig = {},\n): LegacyRequester {\n return defineRequester(envOptions, config).observable\n}\n\n/**\n * Options describing the environment-specific defaults (Node vs. browser).\n *\n * @internal\n */\nexport interface EnvironmentOptions {\n fetch?: FetchRequestOptions['fetch']\n headers?: Record<string, string>\n middleware: LegacyMiddleware[]\n /**\n * Resolves the environment's fetch implementation — the same transport\n * regular requests use (custom fetch variants, undici configuration,\n * env-proxy support and all), optionally configured for an explicit proxy\n * URL. Lets consumers of the resolved config (the EventSource fetch\n * resolver) avoid falling back to whatever `globalThis.fetch` happens to\n * be. The Node environment supplies get-it's undici-backed fetch; the\n * browser environment leaves it unset (the global fetch IS the\n * environment's fetch there).\n *\n * Looked up via the env rather than imported directly so that the Node-only\n * `get-it/node` (which transitively pulls in `undici`) never ends up in the\n * browser bundle, even via rollup's inlined dynamic imports.\n */\n resolveFetch?: (proxyUrl?: string) => FetchFunction\n}\n\nasync function executeRequest(\n requester: ReturnType<typeof createRequester>,\n fetchOptions: FetchRequestOptions,\n): Promise<ResponseEvent> {\n const url = fetchOptions.url\n const method = (fetchOptions.method ?? 'GET').toUpperCase()\n\n let response\n try {\n response = await requester(fetchOptions)\n } catch (err) {\n if (err instanceof GetItHttpError) {\n // `err.body` is the response body as a string (get-it v9 stores the\n // already-decoded text), regardless of which response variant\n // `err.response` is.\n const errBodyText = typeof err.body === 'string' ? err.body : ''\n const errBody = parseJsonText(errBodyText, err.headers)\n const canonical = httpResponseFromFetch(\n {\n status: err.status,\n statusText: err.statusText,\n headers: err.headers,\n body: errBody,\n },\n url,\n method,\n )\n const tag = extractRequestTag(fetchOptions.query)\n if (canonical.statusCode >= 500) {\n throw new ServerError(canonical)\n }\n throw new ClientError(canonical, tag)\n }\n throw err\n }\n\n const body = parseJsonBody(response)\n return {\n type: 'response',\n body,\n statusCode: response.status,\n statusMessage: response.statusText || null,\n headers: headersToRecord(response.headers),\n url,\n method,\n }\n}\n\n/**\n * Extract the GROQ request tag (used for error messages) from the query.\n */\nfunction extractRequestTag(query: FetchRequestOptions['query']): string | undefined {\n if (!query) return undefined\n if (query instanceof URLSearchParams) return query.get('tag') ?? undefined\n const tag = query.tag\n return typeof tag === 'string' ? tag : undefined\n}\n\nfunction parseJsonBody(response: {headers: Headers; text(): string}): unknown {\n return parseJsonText(response.text(), response.headers)\n}\n\n/**\n * Parse a response body according to its `content-type`: JSON when the header\n * says so (falling back to the raw text on malformed JSON), text otherwise.\n * Shared with the browser XHR upload path so error bodies parse identically\n * on both transports.\n *\n * @internal\n */\nexport function parseJsonText(text: string, headers: Headers): unknown {\n const contentType = (headers.get('content-type') ?? '').toLowerCase()\n if (!text) return undefined\n if (contentType.includes('application/json')) {\n try {\n return JSON.parse(text)\n } catch {\n return text\n }\n }\n return text\n}\n\nfunction headersToRecord(headers: Headers): Record<string, string> {\n const out: Record<string, string> = {}\n headers.forEach((value, key) => {\n out[key] = value\n })\n return out\n}\n\nfunction shouldRetryRequest(err: unknown, attempt: number, options: FetchRequestOptions): boolean {\n // HTTP errors aren't usually retryable, but Content Lake gives us a few\n // status codes where retrying *is* the right move.\n if (err instanceof GetItHttpError) {\n const isSafe = (options.method ?? 'GET') === 'GET' || options.method === 'HEAD'\n const isQuery = (options.url ?? '').includes('/data/query')\n const status = err.status\n const retryableStatus = status === 429 || status === 502 || status === 503\n if ((isSafe || isQuery) && retryableStatus) return true\n return false\n }\n\n return isRetryableRequest(err, attempt, options)\n}\n\nfunction printWarnings(config: HttpRequestConfig): TransformMiddleware {\n const seen: Record<string, boolean> = {}\n\n const shouldIgnore = (message: string): boolean => {\n if (config.ignoreWarnings === undefined) return false\n const patterns = Array.isArray(config.ignoreWarnings)\n ? config.ignoreWarnings\n : [config.ignoreWarnings]\n return patterns.some((pattern) =>\n typeof pattern === 'string' ? message.includes(pattern) : pattern.test(message),\n )\n }\n\n return {\n afterResponse(response) {\n const header = response.headers.get('x-sanity-warning')\n if (!header) return response\n // Multiple warnings can be comma-separated per HTTP header semantics.\n for (const msg of header.split(',').map((m) => m.trim())) {\n if (!msg || seen[msg] || shouldIgnore(msg)) continue\n seen[msg] = true\n // oxlint-disable-next-line no-console\n console.warn(msg)\n }\n return response\n },\n }\n}\n"],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"resolveEditInfo-sq7yF78q.js","names":["studioPath.fromString","studioPath.toString"],"sources":["../src/csm/studioPath.ts","../src/csm/draftUtils.ts","../src/csm/jsonPath.ts","../src/csm/resolveMapping.ts","../src/csm/isArray.ts","../src/csm/walkMap.ts","../src/csm/createEditUrl.ts","../src/csm/resolveEditInfo.ts"],"sourcesContent":["/** @alpha */\nexport type KeyedSegment = {_key: string}\n\n/** @alpha */\nexport type IndexTuple = [number | '', number | '']\n\n/** @alpha */\nexport type PathSegment = string | number | KeyedSegment | IndexTuple\n\n/** @alpha */\nexport type Path = PathSegment[]\n\nconst rePropName =\n /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g\n/** @internal */\nexport const reKeySegment = /_key\\s*==\\s*['\"](.*)['\"]/\nconst reIndexTuple = /^\\d*:\\d*$/\n\n/** @internal */\nexport function isIndexSegment(segment: PathSegment): segment is number {\n return typeof segment === 'number' || (typeof segment === 'string' && /^\\[\\d+\\]$/.test(segment))\n}\n\n/** @internal */\nexport function isKeySegment(segment: PathSegment): segment is KeyedSegment {\n if (typeof segment === 'string') {\n return reKeySegment.test(segment.trim())\n }\n\n return typeof segment === 'object' && '_key' in segment\n}\n\n/** @internal */\nexport function isIndexTuple(segment: PathSegment): segment is IndexTuple {\n if (typeof segment === 'string' && reIndexTuple.test(segment)) {\n return true\n }\n\n if (!Array.isArray(segment) || segment.length !== 2) {\n return false\n }\n\n const [from, to] = segment\n return (typeof from === 'number' || from === '') && (typeof to === 'number' || to === '')\n}\n\n/** @internal */\n// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- caller-supplied return type; removing it breaks `get<Result>(...)` call sites\nexport function get<Result = unknown, Fallback = unknown>(\n obj: unknown,\n path: Path | string,\n defaultVal?: Fallback,\n): Result | typeof defaultVal {\n const select = typeof path === 'string' ? fromString(path) : path\n if (!Array.isArray(select)) {\n throw new Error('Path must be an array or a string')\n }\n\n let acc: unknown = obj\n for (let i = 0; i < select.length; i++) {\n const segment = select[i]\n if (isIndexSegment(segment)) {\n if (!Array.isArray(acc)) {\n return defaultVal\n }\n\n acc = acc[segment]\n }\n\n if (isKeySegment(segment)) {\n if (!Array.isArray(acc)) {\n return defaultVal\n }\n\n acc = acc.find((item) => item._key === segment._key)\n }\n\n if (typeof segment === 'string') {\n acc =\n typeof acc === 'object' && acc !== null\n ? ((acc as Record<string, unknown>)[segment] as Result)\n : undefined\n }\n\n if (typeof acc === 'undefined') {\n return defaultVal\n }\n }\n\n return acc as Result\n}\n\n/** @alpha */\nexport function toString(path: Path): string {\n if (!Array.isArray(path)) {\n throw new Error('Path is not an array')\n }\n\n return path.reduce<string>((target, segment, i) => {\n const segmentType = typeof segment\n if (segmentType === 'number') {\n return `${target}[${segment}]`\n }\n\n if (segmentType === 'string') {\n const separator = i === 0 ? '' : '.'\n return `${target}${separator}${segment}`\n }\n\n if (isKeySegment(segment) && segment._key) {\n return `${target}[_key==\"${segment._key}\"]`\n }\n\n if (Array.isArray(segment)) {\n const [from, to] = segment\n return `${target}[${from}:${to}]`\n }\n\n throw new Error(`Unsupported path segment \\`${JSON.stringify(segment)}\\``)\n }, '')\n}\n\n/** @alpha */\nexport function fromString(path: string): Path {\n if (typeof path !== 'string') {\n throw new Error('Path is not a string')\n }\n\n const segments = path.match(rePropName)\n if (!segments) {\n throw new Error('Invalid path string')\n }\n\n return segments.map(parsePathSegment)\n}\n\nfunction parsePathSegment(segment: string): PathSegment {\n if (isIndexSegment(segment)) {\n return parseIndexSegment(segment)\n }\n\n if (isKeySegment(segment)) {\n return parseKeySegment(segment)\n }\n\n if (isIndexTuple(segment)) {\n return parseIndexTupleSegment(segment)\n }\n\n return segment\n}\n\nfunction parseIndexSegment(segment: string): PathSegment {\n return Number(segment.replace(/[^\\d]/g, ''))\n}\n\nfunction parseKeySegment(segment: string): KeyedSegment {\n const segments = segment.match(reKeySegment)\n return {_key: segments![1]}\n}\n\nfunction parseIndexTupleSegment(segment: string): IndexTuple {\n const [from, to] = segment.split(':').map((seg) => (seg === '' ? seg : Number(seg)))\n return [from, to]\n}\n","// nominal/opaque type hack\ntype Opaque<T, K> = T & {__opaqueId__: K}\n\n/** @internal */\nexport type DraftId = Opaque<string, 'draftId'>\n\n/** @internal */\nexport type PublishedId = Opaque<string, 'publishedId'>\n\n/** @internal */\nexport const DRAFTS_FOLDER = 'drafts'\n\n/** @internal */\nexport const VERSION_FOLDER = 'versions'\n\nconst PATH_SEPARATOR = '.'\nconst DRAFTS_PREFIX = `${DRAFTS_FOLDER}${PATH_SEPARATOR}`\nconst VERSION_PREFIX = `${VERSION_FOLDER}${PATH_SEPARATOR}`\n\n/** @internal */\nexport function isDraftId(id: string): id is DraftId {\n return id.startsWith(DRAFTS_PREFIX)\n}\n\n/** @internal */\nexport function isVersionId(id: string): boolean {\n return id.startsWith(VERSION_PREFIX)\n}\n\n/** @internal */\nexport function isPublishedId(id: string): id is PublishedId {\n return !isDraftId(id) && !isVersionId(id)\n}\n\n/** @internal */\nexport function getDraftId(id: string): DraftId {\n if (isVersionId(id)) {\n const publishedId = getPublishedId(id)\n return (DRAFTS_PREFIX + publishedId) as DraftId\n }\n\n return isDraftId(id) ? id : ((DRAFTS_PREFIX + id) as DraftId)\n}\n\n/** @internal */\nexport function getVersionId(id: string, version: string): string {\n if (version === 'drafts' || version === 'published') {\n throw new Error('Version can not be \"published\" or \"drafts\"')\n }\n\n return `${VERSION_PREFIX}${version}${PATH_SEPARATOR}${getPublishedId(id)}`\n}\n\n/**\n * @internal\n * Given an id, returns the versionId if it exists.\n * e.g. `versions.summer-drop.foo` = `summer-drop`\n * e.g. `drafts.foo` = `undefined`\n * e.g. `foo` = `undefined`\n */\nexport function getVersionFromId(id: string): string | undefined {\n if (!isVersionId(id)) return undefined\n const [_versionPrefix, versionId, ..._publishedId] = id.split(PATH_SEPARATOR)\n\n return versionId\n}\n\n/** @internal */\nexport function getPublishedId(id: string): PublishedId {\n if (isVersionId(id)) {\n // make sure to only remove the versions prefix and the bundle name\n return id.split(PATH_SEPARATOR).slice(2).join(PATH_SEPARATOR) as PublishedId as PublishedId\n }\n\n if (isDraftId(id)) {\n return id.slice(DRAFTS_PREFIX.length) as PublishedId\n }\n\n return id as PublishedId\n}\n","import * as studioPath from './studioPath'\nimport type {\n ContentSourceMapParsedPath,\n ContentSourceMapParsedPathKeyedSegment,\n ContentSourceMapPaths,\n Path,\n} from './types'\n\nconst ESCAPE: Record<string, string> = {\n '\\f': '\\\\f',\n '\\n': '\\\\n',\n '\\r': '\\\\r',\n '\\t': '\\\\t',\n \"'\": \"\\\\'\",\n '\\\\': '\\\\\\\\',\n}\n\nconst UNESCAPE: Record<string, string> = {\n '\\\\f': '\\f',\n '\\\\n': '\\n',\n '\\\\r': '\\r',\n '\\\\t': '\\t',\n \"\\\\'\": \"'\",\n '\\\\\\\\': '\\\\',\n}\n\n/**\n * @internal\n */\nexport function jsonPath(path: ContentSourceMapParsedPath): ContentSourceMapPaths[number] {\n return `$${path\n .map((segment) => {\n if (typeof segment === 'string') {\n const escapedKey = segment.replace(/[\\f\\n\\r\\t'\\\\]/g, (match) => {\n return ESCAPE[match]\n })\n return `['${escapedKey}']`\n }\n\n if (typeof segment === 'number') {\n return `[${segment}]`\n }\n\n if (segment._key !== '') {\n const escapedKey = segment._key.replace(/['\\\\]/g, (match) => {\n return ESCAPE[match]\n })\n return `[?(@._key=='${escapedKey}')]`\n }\n\n return `[${segment._index}]`\n })\n .join('')}`\n}\n/**\n * @internal\n */\nexport function jsonPathArray(path: ContentSourceMapParsedPath): string[] {\n return path.map((segment) => {\n if (typeof segment === 'string') {\n const escapedKey = segment.replace(/[\\f\\n\\r\\t'\\\\]/g, (match) => {\n return ESCAPE[match]\n })\n return `['${escapedKey}']`\n }\n\n if (typeof segment === 'number') {\n return `[${segment}]`\n }\n\n if (segment._key !== '') {\n const escapedKey = segment._key.replace(/['\\\\]/g, (match) => {\n return ESCAPE[match]\n })\n return `[?(@._key=='${escapedKey}')]`\n }\n\n return `[${segment._index}]`\n })\n}\n\n/**\n * @internal\n */\nexport function parseJsonPath(path: ContentSourceMapPaths[number]): ContentSourceMapParsedPath {\n const parsed: ContentSourceMapParsedPath = []\n\n const parseRe = /\\['(.*?)'\\]|\\[(\\d+)\\]|\\[\\?\\(@\\._key=='(.*?)'\\)\\]/g\n let match: RegExpExecArray | null\n\n while ((match = parseRe.exec(path)) !== null) {\n if (match[1] !== undefined) {\n const key = match[1].replace(/\\\\(\\\\|f|n|r|t|')/g, (m) => {\n return UNESCAPE[m]\n })\n\n parsed.push(key)\n continue\n }\n\n if (match[2] !== undefined) {\n parsed.push(parseInt(match[2], 10))\n continue\n }\n\n if (match[3] !== undefined) {\n const _key = match[3].replace(/\\\\(\\\\')/g, (m) => {\n return UNESCAPE[m]\n })\n\n parsed.push({\n _key,\n _index: -1,\n })\n continue\n }\n }\n\n return parsed\n}\n\n/**\n * @internal\n */\nexport function jsonPathToStudioPath(path: ContentSourceMapParsedPath): Path {\n return path.map((segment) => {\n if (typeof segment === 'string') {\n return segment\n }\n\n if (typeof segment === 'number') {\n return segment\n }\n\n if (segment._key !== '') {\n return {_key: segment._key}\n }\n\n if (segment._index !== -1) {\n return segment._index\n }\n\n throw new Error(`invalid segment:${JSON.stringify(segment)}`)\n })\n}\n\n/**\n * @internal\n */\nexport function studioPathToJsonPath(path: Path | string): ContentSourceMapParsedPath {\n const parsedPath = typeof path === 'string' ? studioPath.fromString(path) : path\n\n return parsedPath.map((segment) => {\n if (typeof segment === 'string') {\n return segment\n }\n\n if (typeof segment === 'number') {\n return segment\n }\n\n if (Array.isArray(segment)) {\n throw new Error(`IndexTuple segments aren't supported:${JSON.stringify(segment)}`)\n }\n\n if (isContentSourceMapParsedPathKeyedSegment(segment)) {\n return segment\n }\n\n if (segment._key) {\n return {_key: segment._key, _index: -1}\n }\n\n throw new Error(`invalid segment:${JSON.stringify(segment)}`)\n })\n}\n\nfunction isContentSourceMapParsedPathKeyedSegment(\n segment: studioPath.PathSegment | ContentSourceMapParsedPath[number],\n): segment is ContentSourceMapParsedPathKeyedSegment {\n return typeof segment === 'object' && '_key' in segment && '_index' in segment\n}\n\n/**\n * @internal\n */\nexport function jsonPathToMappingPath(path: ContentSourceMapParsedPath): (string | number)[] {\n return path.map((segment) => {\n if (typeof segment === 'string') {\n return segment\n }\n\n if (typeof segment === 'number') {\n return segment\n }\n\n if (segment._index !== -1) {\n return segment._index\n }\n\n throw new Error(`invalid segment:${JSON.stringify(segment)}`)\n })\n}\n","import {jsonPath, jsonPathArray, jsonPathToMappingPath} from './jsonPath'\nimport type {ContentSourceMap, ContentSourceMapMapping, ContentSourceMapParsedPath} from './types'\n\n/**\n * @internal\n */\nexport function resolveMapping(\n resultPath: ContentSourceMapParsedPath,\n csm?: ContentSourceMap,\n):\n | {\n mapping: ContentSourceMapMapping\n matchedPath: string\n pathSuffix: string\n }\n | undefined {\n if (!csm?.mappings) {\n return undefined\n }\n const resultMappingPath = jsonPath(jsonPathToMappingPath(resultPath))\n\n if (csm.mappings[resultMappingPath] !== undefined) {\n return {\n mapping: csm.mappings[resultMappingPath],\n matchedPath: resultMappingPath,\n pathSuffix: '',\n }\n }\n\n const resultMappingPathArray = jsonPathArray(jsonPathToMappingPath(resultPath))\n for (let i = resultMappingPathArray.length - 1; i >= 0; i--) {\n const key = `$${resultMappingPathArray.slice(0, i).join('')}`\n const mappingFound = csm.mappings[key]\n if (mappingFound) {\n const pathSuffix = resultMappingPath.substring(key.length)\n return {mapping: mappingFound, matchedPath: key, pathSuffix}\n }\n }\n\n return undefined\n}\n","/** @internal */\nexport function isArray(value: unknown): value is Array<unknown> {\n return value !== null && Array.isArray(value)\n}\n","import {isRecord} from '../util/isRecord'\nimport {isArray} from './isArray'\nimport type {ContentSourceMapParsedPath, WalkMapFn} from './types'\n\n/**\n * generic way to walk a nested object or array and apply a mapping function to each value\n * @internal\n */\nexport function walkMap(\n value: unknown,\n mappingFn: WalkMapFn,\n path: ContentSourceMapParsedPath = [],\n): unknown {\n if (isArray(value)) {\n return value.map((v, idx) => {\n if (isRecord(v)) {\n const _key = v['_key']\n if (typeof _key === 'string') {\n return walkMap(v, mappingFn, path.concat({_key, _index: idx}))\n }\n }\n\n return walkMap(v, mappingFn, path.concat(idx))\n })\n }\n\n if (isRecord(value)) {\n // Handle Portable Text in a faster way\n if (value._type === 'block' || value._type === 'span') {\n const result = {...value}\n if (value._type === 'block') {\n result.children = walkMap(value.children, mappingFn, path.concat('children'))\n } else if (value._type === 'span') {\n result.text = walkMap(value.text, mappingFn, path.concat('text'))\n }\n return result\n }\n\n return Object.fromEntries(\n Object.entries(value).map(([k, v]) => [k, walkMap(v, mappingFn, path.concat(k))]),\n )\n }\n\n return mappingFn(value, path)\n}\n","import {getPublishedId, getVersionFromId, isPublishedId, isVersionId} from './draftUtils'\nimport {jsonPathToStudioPath} from './jsonPath'\nimport * as studioPath from './studioPath'\nimport type {CreateEditUrlOptions, EditIntentUrl, StudioBaseUrl} from './types'\n\n/** @internal */\nexport function createEditUrl(options: CreateEditUrlOptions): `${StudioBaseUrl}${EditIntentUrl}` {\n const {\n baseUrl,\n workspace: _workspace = 'default',\n tool: _tool = 'default',\n id: _id,\n type,\n path,\n projectId,\n dataset,\n } = options\n\n if (!baseUrl) {\n throw new Error('baseUrl is required')\n }\n if (!path) {\n throw new Error('path is required')\n }\n if (!_id) {\n throw new Error('id is required')\n }\n if (baseUrl !== '/' && baseUrl.endsWith('/')) {\n throw new Error('baseUrl must not end with a slash')\n }\n\n const workspace = _workspace === 'default' ? undefined : _workspace\n const tool = _tool === 'default' ? undefined : _tool\n const id = getPublishedId(_id)\n const stringifiedPath = Array.isArray(path)\n ? studioPath.toString(jsonPathToStudioPath(path))\n : path\n\n // oxlint-disable-next-line no-warning-comments\n // @TODO Using searchParams as a temporary workaround until `@sanity/overlays` can decode state from the path reliably\n const searchParams = new URLSearchParams({\n baseUrl,\n id,\n type,\n path: stringifiedPath,\n })\n if (workspace) {\n searchParams.set('workspace', workspace)\n }\n if (tool) {\n searchParams.set('tool', tool)\n }\n if (projectId) {\n searchParams.set('projectId', projectId)\n }\n if (dataset) {\n searchParams.set('dataset', dataset)\n }\n if (isPublishedId(_id)) {\n searchParams.set('perspective', 'published')\n } else if (isVersionId(_id)) {\n const versionId = getVersionFromId(_id)!\n searchParams.set('perspective', versionId)\n }\n\n const segments = [baseUrl === '/' ? '' : baseUrl]\n if (workspace) {\n segments.push(workspace)\n }\n const routerParams = [\n 'mode=presentation',\n `id=${id}`,\n `type=${type}`,\n `path=${encodeURIComponent(stringifiedPath)}`,\n ]\n if (tool) {\n routerParams.push(`tool=${tool}`)\n }\n segments.push('intent', 'edit', `${routerParams.join(';')}?${searchParams}`)\n return segments.join('/') as unknown as `${StudioBaseUrl}${EditIntentUrl}`\n}\n","import {parseJsonPath} from './jsonPath'\nimport {resolveMapping} from './resolveMapping'\nimport type {\n CreateEditUrlOptions,\n ResolveEditInfoOptions,\n StudioBaseRoute,\n StudioBaseUrl,\n StudioUrl,\n} from './types'\n\n/** @internal */\nexport function resolveEditInfo(options: ResolveEditInfoOptions): CreateEditUrlOptions | undefined {\n const {resultSourceMap: csm, resultPath} = options\n const {mapping, pathSuffix} = resolveMapping(resultPath, csm) || {}\n\n if (!mapping) {\n // console.warn('no mapping for path', { path: resultPath, sourceMap: csm })\n return undefined\n }\n\n if (mapping.source.type === 'literal') {\n return undefined\n }\n\n if (mapping.source.type === 'unknown') {\n return undefined\n }\n\n const sourceDoc = csm.documents[mapping.source.document]\n const sourcePath = csm.paths[mapping.source.path]\n\n if (sourceDoc && sourcePath) {\n const {baseUrl, workspace, tool} = resolveStudioBaseRoute(\n typeof options.studioUrl === 'function' ? options.studioUrl(sourceDoc) : options.studioUrl,\n )\n if (!baseUrl) return undefined\n const {_id, _type, _projectId, _dataset} = sourceDoc\n return {\n baseUrl,\n workspace,\n tool,\n id: _id,\n type: _type,\n path: parseJsonPath(sourcePath + pathSuffix),\n projectId: _projectId,\n dataset: _dataset,\n } satisfies CreateEditUrlOptions\n }\n\n return undefined\n}\n\n/** @internal */\nexport function resolveStudioBaseRoute(studioUrl: StudioUrl): StudioBaseRoute {\n let baseUrl: StudioBaseUrl = typeof studioUrl === 'string' ? studioUrl : studioUrl.baseUrl\n if (baseUrl !== '/') {\n baseUrl = baseUrl.replace(/\\/$/, '')\n }\n if (typeof studioUrl === 'string') {\n return {baseUrl}\n }\n return {...studioUrl, baseUrl}\n}\n"],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"stegaEncodeSourceMap-DkoIlutY.js","names":["studioPath.toString","vercelStegaCombine","studioPathToString"],"sources":["../src/csm/draftUtils.ts","../src/csm/studioPath.ts","../src/csm/jsonPath.ts","../src/csm/createEditUrl.ts","../src/csm/resolveMapping.ts","../src/csm/resolveEditInfo.ts","../src/csm/isArray.ts","../src/csm/walkMap.ts","../src/stega/encodeIntoResult.ts","../src/stega/filterDefault.ts","../src/stega/stegaEncodeSourceMap.ts"],"sourcesContent":["// nominal/opaque type hack\ntype Opaque<T, K> = T & {__opaqueId__: K}\n\n/** @internal */\nexport type DraftId = Opaque<string, 'draftId'>\n\n/** @internal */\nexport type PublishedId = Opaque<string, 'publishedId'>\n\n/** @internal */\nexport const DRAFTS_FOLDER = 'drafts'\n\n/** @internal */\nexport const VERSION_FOLDER = 'versions'\n\nconst PATH_SEPARATOR = '.'\nconst DRAFTS_PREFIX = `${DRAFTS_FOLDER}${PATH_SEPARATOR}`\nconst VERSION_PREFIX = `${VERSION_FOLDER}${PATH_SEPARATOR}`\n\n/** @internal */\nexport function isDraftId(id: string): id is DraftId {\n return id.startsWith(DRAFTS_PREFIX)\n}\n\n/** @internal */\nexport function isVersionId(id: string): boolean {\n return id.startsWith(VERSION_PREFIX)\n}\n\n/** @internal */\nexport function isPublishedId(id: string): id is PublishedId {\n return !isDraftId(id) && !isVersionId(id)\n}\n\n/** @internal */\nexport function getDraftId(id: string): DraftId {\n if (isVersionId(id)) {\n const publishedId = getPublishedId(id)\n return (DRAFTS_PREFIX + publishedId) as DraftId\n }\n\n return isDraftId(id) ? id : ((DRAFTS_PREFIX + id) as DraftId)\n}\n\n/** @internal */\nexport function getVersionId(id: string, version: string): string {\n if (version === 'drafts' || version === 'published') {\n throw new Error('Version can not be \"published\" or \"drafts\"')\n }\n\n return `${VERSION_PREFIX}${version}${PATH_SEPARATOR}${getPublishedId(id)}`\n}\n\n/**\n * @internal\n * Given an id, returns the versionId if it exists.\n * e.g. `versions.summer-drop.foo` = `summer-drop`\n * e.g. `drafts.foo` = `undefined`\n * e.g. `foo` = `undefined`\n */\nexport function getVersionFromId(id: string): string | undefined {\n if (!isVersionId(id)) return undefined\n const [_versionPrefix, versionId, ..._publishedId] = id.split(PATH_SEPARATOR)\n\n return versionId\n}\n\n/** @internal */\nexport function getPublishedId(id: string): PublishedId {\n if (isVersionId(id)) {\n // make sure to only remove the versions prefix and the bundle name\n return id.split(PATH_SEPARATOR).slice(2).join(PATH_SEPARATOR) as PublishedId as PublishedId\n }\n\n if (isDraftId(id)) {\n return id.slice(DRAFTS_PREFIX.length) as PublishedId\n }\n\n return id as PublishedId\n}\n","/** @alpha */\nexport type KeyedSegment = {_key: string}\n\n/** @alpha */\nexport type IndexTuple = [number | '', number | '']\n\n/** @alpha */\nexport type PathSegment = string | number | KeyedSegment | IndexTuple\n\n/** @alpha */\nexport type Path = PathSegment[]\n\nconst rePropName =\n /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g\n/** @internal */\nexport const reKeySegment = /_key\\s*==\\s*['\"](.*)['\"]/\nconst reIndexTuple = /^\\d*:\\d*$/\n\n/** @internal */\nexport function isIndexSegment(segment: PathSegment): segment is number {\n return typeof segment === 'number' || (typeof segment === 'string' && /^\\[\\d+\\]$/.test(segment))\n}\n\n/** @internal */\nexport function isKeySegment(segment: PathSegment): segment is KeyedSegment {\n if (typeof segment === 'string') {\n return reKeySegment.test(segment.trim())\n }\n\n return typeof segment === 'object' && '_key' in segment\n}\n\n/** @internal */\nexport function isIndexTuple(segment: PathSegment): segment is IndexTuple {\n if (typeof segment === 'string' && reIndexTuple.test(segment)) {\n return true\n }\n\n if (!Array.isArray(segment) || segment.length !== 2) {\n return false\n }\n\n const [from, to] = segment\n return (typeof from === 'number' || from === '') && (typeof to === 'number' || to === '')\n}\n\n/** @internal */\n// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- caller-supplied return type; removing it breaks `get<Result>(...)` call sites\nexport function get<Result = unknown, Fallback = unknown>(\n obj: unknown,\n path: Path | string,\n defaultVal?: Fallback,\n): Result | typeof defaultVal {\n const select = typeof path === 'string' ? fromString(path) : path\n if (!Array.isArray(select)) {\n throw new Error('Path must be an array or a string')\n }\n\n let acc: unknown = obj\n for (let i = 0; i < select.length; i++) {\n const segment = select[i]\n if (isIndexSegment(segment)) {\n if (!Array.isArray(acc)) {\n return defaultVal\n }\n\n acc = acc[segment]\n }\n\n if (isKeySegment(segment)) {\n if (!Array.isArray(acc)) {\n return defaultVal\n }\n\n acc = acc.find((item) => item._key === segment._key)\n }\n\n if (typeof segment === 'string') {\n acc =\n typeof acc === 'object' && acc !== null\n ? ((acc as Record<string, unknown>)[segment] as Result)\n : undefined\n }\n\n if (typeof acc === 'undefined') {\n return defaultVal\n }\n }\n\n return acc as Result\n}\n\n/** @alpha */\nexport function toString(path: Path): string {\n if (!Array.isArray(path)) {\n throw new Error('Path is not an array')\n }\n\n return path.reduce<string>((target, segment, i) => {\n const segmentType = typeof segment\n if (segmentType === 'number') {\n return `${target}[${segment}]`\n }\n\n if (segmentType === 'string') {\n const separator = i === 0 ? '' : '.'\n return `${target}${separator}${segment}`\n }\n\n if (isKeySegment(segment) && segment._key) {\n return `${target}[_key==\"${segment._key}\"]`\n }\n\n if (Array.isArray(segment)) {\n const [from, to] = segment\n return `${target}[${from}:${to}]`\n }\n\n throw new Error(`Unsupported path segment \\`${JSON.stringify(segment)}\\``)\n }, '')\n}\n\n/** @alpha */\nexport function fromString(path: string): Path {\n if (typeof path !== 'string') {\n throw new Error('Path is not a string')\n }\n\n const segments = path.match(rePropName)\n if (!segments) {\n throw new Error('Invalid path string')\n }\n\n return segments.map(parsePathSegment)\n}\n\nfunction parsePathSegment(segment: string): PathSegment {\n if (isIndexSegment(segment)) {\n return parseIndexSegment(segment)\n }\n\n if (isKeySegment(segment)) {\n return parseKeySegment(segment)\n }\n\n if (isIndexTuple(segment)) {\n return parseIndexTupleSegment(segment)\n }\n\n return segment\n}\n\nfunction parseIndexSegment(segment: string): PathSegment {\n return Number(segment.replace(/[^\\d]/g, ''))\n}\n\nfunction parseKeySegment(segment: string): KeyedSegment {\n const segments = segment.match(reKeySegment)\n return {_key: segments![1]}\n}\n\nfunction parseIndexTupleSegment(segment: string): IndexTuple {\n const [from, to] = segment.split(':').map((seg) => (seg === '' ? seg : Number(seg)))\n return [from, to]\n}\n","import * as studioPath from './studioPath'\nimport type {\n ContentSourceMapParsedPath,\n ContentSourceMapParsedPathKeyedSegment,\n ContentSourceMapPaths,\n Path,\n} from './types'\n\nconst ESCAPE: Record<string, string> = {\n '\\f': '\\\\f',\n '\\n': '\\\\n',\n '\\r': '\\\\r',\n '\\t': '\\\\t',\n \"'\": \"\\\\'\",\n '\\\\': '\\\\\\\\',\n}\n\nconst UNESCAPE: Record<string, string> = {\n '\\\\f': '\\f',\n '\\\\n': '\\n',\n '\\\\r': '\\r',\n '\\\\t': '\\t',\n \"\\\\'\": \"'\",\n '\\\\\\\\': '\\\\',\n}\n\n/**\n * @internal\n */\nexport function jsonPath(path: ContentSourceMapParsedPath): ContentSourceMapPaths[number] {\n return `$${path\n .map((segment) => {\n if (typeof segment === 'string') {\n const escapedKey = segment.replace(/[\\f\\n\\r\\t'\\\\]/g, (match) => {\n return ESCAPE[match]\n })\n return `['${escapedKey}']`\n }\n\n if (typeof segment === 'number') {\n return `[${segment}]`\n }\n\n if (segment._key !== '') {\n const escapedKey = segment._key.replace(/['\\\\]/g, (match) => {\n return ESCAPE[match]\n })\n return `[?(@._key=='${escapedKey}')]`\n }\n\n return `[${segment._index}]`\n })\n .join('')}`\n}\n/**\n * @internal\n */\nexport function jsonPathArray(path: ContentSourceMapParsedPath): string[] {\n return path.map((segment) => {\n if (typeof segment === 'string') {\n const escapedKey = segment.replace(/[\\f\\n\\r\\t'\\\\]/g, (match) => {\n return ESCAPE[match]\n })\n return `['${escapedKey}']`\n }\n\n if (typeof segment === 'number') {\n return `[${segment}]`\n }\n\n if (segment._key !== '') {\n const escapedKey = segment._key.replace(/['\\\\]/g, (match) => {\n return ESCAPE[match]\n })\n return `[?(@._key=='${escapedKey}')]`\n }\n\n return `[${segment._index}]`\n })\n}\n\n/**\n * @internal\n */\nexport function parseJsonPath(path: ContentSourceMapPaths[number]): ContentSourceMapParsedPath {\n const parsed: ContentSourceMapParsedPath = []\n\n const parseRe = /\\['(.*?)'\\]|\\[(\\d+)\\]|\\[\\?\\(@\\._key=='(.*?)'\\)\\]/g\n let match: RegExpExecArray | null\n\n while ((match = parseRe.exec(path)) !== null) {\n if (match[1] !== undefined) {\n const key = match[1].replace(/\\\\(\\\\|f|n|r|t|')/g, (m) => {\n return UNESCAPE[m]\n })\n\n parsed.push(key)\n continue\n }\n\n if (match[2] !== undefined) {\n parsed.push(parseInt(match[2], 10))\n continue\n }\n\n if (match[3] !== undefined) {\n const _key = match[3].replace(/\\\\(\\\\')/g, (m) => {\n return UNESCAPE[m]\n })\n\n parsed.push({\n _key,\n _index: -1,\n })\n continue\n }\n }\n\n return parsed\n}\n\n/**\n * @internal\n */\nexport function jsonPathToStudioPath(path: ContentSourceMapParsedPath): Path {\n return path.map((segment) => {\n if (typeof segment === 'string') {\n return segment\n }\n\n if (typeof segment === 'number') {\n return segment\n }\n\n if (segment._key !== '') {\n return {_key: segment._key}\n }\n\n if (segment._index !== -1) {\n return segment._index\n }\n\n throw new Error(`invalid segment:${JSON.stringify(segment)}`)\n })\n}\n\n/**\n * @internal\n */\nexport function studioPathToJsonPath(path: Path | string): ContentSourceMapParsedPath {\n const parsedPath = typeof path === 'string' ? studioPath.fromString(path) : path\n\n return parsedPath.map((segment) => {\n if (typeof segment === 'string') {\n return segment\n }\n\n if (typeof segment === 'number') {\n return segment\n }\n\n if (Array.isArray(segment)) {\n throw new Error(`IndexTuple segments aren't supported:${JSON.stringify(segment)}`)\n }\n\n if (isContentSourceMapParsedPathKeyedSegment(segment)) {\n return segment\n }\n\n if (segment._key) {\n return {_key: segment._key, _index: -1}\n }\n\n throw new Error(`invalid segment:${JSON.stringify(segment)}`)\n })\n}\n\nfunction isContentSourceMapParsedPathKeyedSegment(\n segment: studioPath.PathSegment | ContentSourceMapParsedPath[number],\n): segment is ContentSourceMapParsedPathKeyedSegment {\n return typeof segment === 'object' && '_key' in segment && '_index' in segment\n}\n\n/**\n * @internal\n */\nexport function jsonPathToMappingPath(path: ContentSourceMapParsedPath): (string | number)[] {\n return path.map((segment) => {\n if (typeof segment === 'string') {\n return segment\n }\n\n if (typeof segment === 'number') {\n return segment\n }\n\n if (segment._index !== -1) {\n return segment._index\n }\n\n throw new Error(`invalid segment:${JSON.stringify(segment)}`)\n })\n}\n","import {getPublishedId, getVersionFromId, isPublishedId, isVersionId} from './draftUtils'\nimport {jsonPathToStudioPath} from './jsonPath'\nimport * as studioPath from './studioPath'\nimport type {CreateEditUrlOptions, EditIntentUrl, StudioBaseUrl} from './types'\n\n/** @internal */\nexport function createEditUrl(options: CreateEditUrlOptions): `${StudioBaseUrl}${EditIntentUrl}` {\n const {\n baseUrl,\n workspace: _workspace = 'default',\n tool: _tool = 'default',\n id: _id,\n type,\n path,\n projectId,\n dataset,\n } = options\n\n if (!baseUrl) {\n throw new Error('baseUrl is required')\n }\n if (!path) {\n throw new Error('path is required')\n }\n if (!_id) {\n throw new Error('id is required')\n }\n if (baseUrl !== '/' && baseUrl.endsWith('/')) {\n throw new Error('baseUrl must not end with a slash')\n }\n\n const workspace = _workspace === 'default' ? undefined : _workspace\n const tool = _tool === 'default' ? undefined : _tool\n const id = getPublishedId(_id)\n const stringifiedPath = Array.isArray(path)\n ? studioPath.toString(jsonPathToStudioPath(path))\n : path\n\n // oxlint-disable-next-line no-warning-comments\n // @TODO Using searchParams as a temporary workaround until `@sanity/overlays` can decode state from the path reliably\n const searchParams = new URLSearchParams({\n baseUrl,\n id,\n type,\n path: stringifiedPath,\n })\n if (workspace) {\n searchParams.set('workspace', workspace)\n }\n if (tool) {\n searchParams.set('tool', tool)\n }\n if (projectId) {\n searchParams.set('projectId', projectId)\n }\n if (dataset) {\n searchParams.set('dataset', dataset)\n }\n if (isPublishedId(_id)) {\n searchParams.set('perspective', 'published')\n } else if (isVersionId(_id)) {\n const versionId = getVersionFromId(_id)!\n searchParams.set('perspective', versionId)\n }\n\n const segments = [baseUrl === '/' ? '' : baseUrl]\n if (workspace) {\n segments.push(workspace)\n }\n const routerParams = [\n 'mode=presentation',\n `id=${id}`,\n `type=${type}`,\n `path=${encodeURIComponent(stringifiedPath)}`,\n ]\n if (tool) {\n routerParams.push(`tool=${tool}`)\n }\n segments.push('intent', 'edit', `${routerParams.join(';')}?${searchParams}`)\n return segments.join('/') as unknown as `${StudioBaseUrl}${EditIntentUrl}`\n}\n","import {jsonPath, jsonPathArray, jsonPathToMappingPath} from './jsonPath'\nimport type {ContentSourceMap, ContentSourceMapMapping, ContentSourceMapParsedPath} from './types'\n\n/**\n * @internal\n */\nexport function resolveMapping(\n resultPath: ContentSourceMapParsedPath,\n csm?: ContentSourceMap,\n):\n | {\n mapping: ContentSourceMapMapping\n matchedPath: string\n pathSuffix: string\n }\n | undefined {\n if (!csm?.mappings) {\n return undefined\n }\n const resultMappingPath = jsonPath(jsonPathToMappingPath(resultPath))\n\n if (csm.mappings[resultMappingPath] !== undefined) {\n return {\n mapping: csm.mappings[resultMappingPath],\n matchedPath: resultMappingPath,\n pathSuffix: '',\n }\n }\n\n const resultMappingPathArray = jsonPathArray(jsonPathToMappingPath(resultPath))\n for (let i = resultMappingPathArray.length - 1; i >= 0; i--) {\n const key = `$${resultMappingPathArray.slice(0, i).join('')}`\n const mappingFound = csm.mappings[key]\n if (mappingFound) {\n const pathSuffix = resultMappingPath.substring(key.length)\n return {mapping: mappingFound, matchedPath: key, pathSuffix}\n }\n }\n\n return undefined\n}\n","import {parseJsonPath} from './jsonPath'\nimport {resolveMapping} from './resolveMapping'\nimport type {\n CreateEditUrlOptions,\n ResolveEditInfoOptions,\n StudioBaseRoute,\n StudioBaseUrl,\n StudioUrl,\n} from './types'\n\n/** @internal */\nexport function resolveEditInfo(options: ResolveEditInfoOptions): CreateEditUrlOptions | undefined {\n const {resultSourceMap: csm, resultPath} = options\n const {mapping, pathSuffix} = resolveMapping(resultPath, csm) || {}\n\n if (!mapping) {\n // console.warn('no mapping for path', { path: resultPath, sourceMap: csm })\n return undefined\n }\n\n if (mapping.source.type === 'literal') {\n return undefined\n }\n\n if (mapping.source.type === 'unknown') {\n return undefined\n }\n\n const sourceDoc = csm.documents[mapping.source.document]\n const sourcePath = csm.paths[mapping.source.path]\n\n if (sourceDoc && sourcePath) {\n const {baseUrl, workspace, tool} = resolveStudioBaseRoute(\n typeof options.studioUrl === 'function' ? options.studioUrl(sourceDoc) : options.studioUrl,\n )\n if (!baseUrl) return undefined\n const {_id, _type, _projectId, _dataset} = sourceDoc\n return {\n baseUrl,\n workspace,\n tool,\n id: _id,\n type: _type,\n path: parseJsonPath(sourcePath + pathSuffix),\n projectId: _projectId,\n dataset: _dataset,\n } satisfies CreateEditUrlOptions\n }\n\n return undefined\n}\n\n/** @internal */\nexport function resolveStudioBaseRoute(studioUrl: StudioUrl): StudioBaseRoute {\n let baseUrl: StudioBaseUrl = typeof studioUrl === 'string' ? studioUrl : studioUrl.baseUrl\n if (baseUrl !== '/') {\n baseUrl = baseUrl.replace(/\\/$/, '')\n }\n if (typeof studioUrl === 'string') {\n return {baseUrl}\n }\n return {...studioUrl, baseUrl}\n}\n","/** @internal */\nexport function isArray(value: unknown): value is Array<unknown> {\n return value !== null && Array.isArray(value)\n}\n","import {isRecord} from '../util/isRecord'\nimport {isArray} from './isArray'\nimport type {ContentSourceMapParsedPath, WalkMapFn} from './types'\n\n/**\n * generic way to walk a nested object or array and apply a mapping function to each value\n * @internal\n */\nexport function walkMap(\n value: unknown,\n mappingFn: WalkMapFn,\n path: ContentSourceMapParsedPath = [],\n): unknown {\n if (isArray(value)) {\n return value.map((v, idx) => {\n if (isRecord(v)) {\n const _key = v['_key']\n if (typeof _key === 'string') {\n return walkMap(v, mappingFn, path.concat({_key, _index: idx}))\n }\n }\n\n return walkMap(v, mappingFn, path.concat(idx))\n })\n }\n\n if (isRecord(value)) {\n // Handle Portable Text in a faster way\n if (value._type === 'block' || value._type === 'span') {\n const result = {...value}\n if (value._type === 'block') {\n result.children = walkMap(value.children, mappingFn, path.concat('children'))\n } else if (value._type === 'span') {\n result.text = walkMap(value.text, mappingFn, path.concat('text'))\n }\n return result\n }\n\n return Object.fromEntries(\n Object.entries(value).map(([k, v]) => [k, walkMap(v, mappingFn, path.concat(k))]),\n )\n }\n\n return mappingFn(value, path)\n}\n","import type {ContentSourceMap} from '@sanity/client/csm'\n\nimport {parseJsonPath} from '../csm/jsonPath'\nimport {resolveMapping} from '../csm/resolveMapping'\nimport {walkMap} from '../csm/walkMap'\nimport type {Encoder} from './types'\n\n/**\n * @internal\n */\nexport function encodeIntoResult<Result>(\n result: Result,\n csm: ContentSourceMap,\n encoder: Encoder,\n): Result {\n return walkMap(result, (value, path) => {\n // Only map strings, we could extend this in the future to support other types like integers...\n if (typeof value !== 'string') {\n return value\n }\n\n const resolveMappingResult = resolveMapping(path, csm)\n if (!resolveMappingResult) {\n return value\n }\n\n const {mapping, matchedPath} = resolveMappingResult\n if (mapping.type !== 'value') {\n return value\n }\n\n if (mapping.source.type !== 'documentValue') {\n return value\n }\n\n const sourceDocument = csm.documents[mapping.source.document!]\n const sourcePath = csm.paths[mapping.source.path]\n\n const matchPathSegments = parseJsonPath(matchedPath)\n const sourcePathSegments = parseJsonPath(sourcePath)\n const fullSourceSegments = sourcePathSegments.concat(path.slice(matchPathSegments.length))\n\n return encoder({\n sourcePath: fullSourceSegments,\n sourceDocument,\n resultPath: path,\n value,\n })\n }) as Result\n}\n","import type {ContentSourceMapParsedPath, FilterDefault} from './types'\n\nexport const filterDefault: FilterDefault = ({sourcePath, resultPath, value}) => {\n // Skips encoding on URL or Date strings, similar to the `skip: 'auto'` parameter in vercelStegaCombine()\n if (isValidDate(value) || isValidURL(value)) {\n return false\n }\n\n const endPath = sourcePath.at(-1)\n // Never encode slugs\n if (sourcePath.at(-2) === 'slug' && endPath === 'current') {\n return false\n }\n\n // Skip underscored keys, and strings that end with `Id`, needs better heuristics but it works for now\n if (typeof endPath === 'string' && (endPath.startsWith('_') || endPath.endsWith('Id'))) {\n return false\n }\n\n // Don't encode into anything that is suggested it'll render for SEO in meta tags\n if (\n sourcePath.some(\n (path) => path === 'meta' || path === 'metadata' || path === 'openGraph' || path === 'seo',\n )\n ) {\n return false\n }\n\n // If the sourcePath or resultPath contains something that sounds like a type, like iconType, we skip encoding, as it's most\n // of the time used for logic that breaks if it contains stega characters\n if (hasTypeLike(sourcePath) || hasTypeLike(resultPath)) {\n return false\n }\n\n // Finally, we ignore a bunch of paths that are typically used for page building\n if (typeof endPath === 'string' && denylist.has(endPath)) {\n return false\n }\n\n return true\n}\n\nconst denylist = new Set([\n 'color',\n 'colour',\n 'currency',\n 'email',\n 'format',\n 'gid',\n 'hex',\n 'href',\n 'hsl',\n 'hsla',\n 'icon',\n 'id',\n 'index',\n 'key',\n 'language',\n 'layout',\n 'link',\n 'linkAction',\n 'locale',\n 'lqip',\n 'page',\n 'path',\n 'ref',\n 'rgb',\n 'rgba',\n 'route',\n 'secret',\n 'slug',\n 'status',\n 'tag',\n 'template',\n 'theme',\n 'type',\n 'textTheme',\n 'unit',\n 'url',\n 'username',\n 'variant',\n 'website',\n])\n\nfunction isValidDate(dateString: string) {\n return /^\\d{4}-\\d{2}-\\d{2}/.test(dateString) ? Boolean(Date.parse(dateString)) : false\n}\n\nconst allowedProtocols = new Set([\n 'app:',\n 'data:',\n 'discord:',\n 'file:',\n 'ftp:',\n 'ftps:',\n 'geo:',\n 'http:',\n 'https:',\n 'imap:',\n 'javascript:',\n 'magnet:',\n 'mailto:',\n 'maps:',\n 'ms-excel:',\n 'ms-powerpoint:',\n 'ms-word:',\n 'slack:',\n 'sms:',\n 'spotify:',\n 'steam:',\n 'teams:',\n 'tel:',\n 'vscode:',\n 'zoom:',\n])\n\nfunction isValidURL(url: string) {\n try {\n const {protocol} = new URL(url, url.startsWith('/') ? 'https://acme.com' : undefined)\n return allowedProtocols.has(protocol) || protocol.startsWith('web+')\n } catch {\n return false\n }\n}\n\nfunction hasTypeLike(path: ContentSourceMapParsedPath): boolean {\n return path.some((segment) => typeof segment === 'string' && segment.match(/type/i) !== null)\n}\n","import {vercelStegaCombine} from '@vercel/stega'\n\nimport {createEditUrl} from '../csm/createEditUrl'\nimport {jsonPathToStudioPath} from '../csm/jsonPath'\nimport {resolveStudioBaseRoute} from '../csm/resolveEditInfo'\nimport {reKeySegment, toString as studioPathToString} from '../csm/studioPath'\nimport {encodeIntoResult} from './encodeIntoResult'\n// Re-export so `encodeIntoResult` is a genuine export of this module - which\n// forms its own output chunk via the dynamic import in `dataMethods`. Without\n// this, rolldown absorbs `encodeIntoResult` into the chunk but omits it from\n// the chunk's exports, breaking `@sanity/client/stega`'s re-export of it.\nexport {encodeIntoResult} from './encodeIntoResult'\nimport {filterDefault} from './filterDefault'\nimport {\n type ContentSourceMap,\n type ContentSourceMapParsedPath,\n type InitializedStegaConfig,\n} from './types'\n\nconst TRUNCATE_LENGTH = 20\n\n/**\n * Uses `@vercel/stega` to embed edit info JSON into strings in your query result.\n * The JSON payloads are added using invisible characters so they don't show up visually.\n * The edit info is generated from the Content Source Map (CSM) that is returned from Sanity for the query.\n * @public\n */\nexport function stegaEncodeSourceMap<Result = unknown>(\n result: Result,\n resultSourceMap: ContentSourceMap | undefined,\n config: InitializedStegaConfig,\n): Result {\n const {filter, logger, enabled} = config\n if (!enabled) {\n const msg = \"config.enabled must be true, don't call this function otherwise\"\n logger?.error?.(`[@sanity/client]: ${msg}`, {result, resultSourceMap, config})\n throw new TypeError(msg)\n }\n\n if (!resultSourceMap) {\n logger?.error?.('[@sanity/client]: Missing Content Source Map from response body', {\n result,\n resultSourceMap,\n config,\n })\n return result\n }\n\n if (!config.studioUrl) {\n const msg = 'config.studioUrl must be defined'\n logger?.error?.(`[@sanity/client]: ${msg}`, {result, resultSourceMap, config})\n throw new TypeError(msg)\n }\n\n const report: Record<'encoded' | 'skipped', {path: string; length: number; value: string}[]> = {\n encoded: [],\n skipped: [],\n }\n\n const resultWithStega = encodeIntoResult(\n result,\n resultSourceMap,\n ({sourcePath, sourceDocument, resultPath, value}) => {\n // Allow userland to control when to opt-out of encoding\n if (\n (typeof filter === 'function'\n ? filter({sourcePath, resultPath, filterDefault, sourceDocument, value})\n : filterDefault({sourcePath, resultPath, filterDefault, sourceDocument, value})) === false\n ) {\n if (logger) {\n report.skipped.push({\n path: prettyPathForLogging(sourcePath),\n value: `${value.slice(0, TRUNCATE_LENGTH)}${\n value.length > TRUNCATE_LENGTH ? '...' : ''\n }`,\n length: value.length,\n })\n }\n return value\n }\n\n if (logger) {\n report.encoded.push({\n path: prettyPathForLogging(sourcePath),\n value: `${value.slice(0, TRUNCATE_LENGTH)}${value.length > TRUNCATE_LENGTH ? '...' : ''}`,\n length: value.length,\n })\n }\n\n const {baseUrl, workspace, tool} = resolveStudioBaseRoute(\n typeof config.studioUrl === 'function'\n ? config.studioUrl(sourceDocument)\n : config.studioUrl!,\n )\n if (!baseUrl) return value\n const {_id: id, _type: type, _projectId: projectId, _dataset: dataset} = sourceDocument\n\n return vercelStegaCombine(\n value,\n {\n origin: 'sanity.io',\n href: createEditUrl({\n baseUrl,\n workspace,\n tool,\n id,\n type,\n path: sourcePath,\n ...(!config.omitCrossDatasetReferenceData && {dataset, projectId}),\n }),\n },\n // We use custom logic to determine if we should skip encoding\n false,\n )\n },\n )\n\n if (logger) {\n const isSkipping = report.skipped.length\n const isEncoding = report.encoded.length\n if (isSkipping || isEncoding) {\n ;(logger?.groupCollapsed || logger.log)?.('[@sanity/client]: Encoding source map into result')\n logger.log?.(\n `[@sanity/client]: Paths encoded: ${report.encoded.length}, skipped: ${report.skipped.length}`,\n )\n }\n if (report.encoded.length > 0) {\n logger?.log?.(`[@sanity/client]: Table of encoded paths`)\n ;(logger?.table || logger.log)?.(report.encoded)\n }\n if (report.skipped.length > 0) {\n const skipped = new Set<string>()\n for (const {path} of report.skipped) {\n skipped.add(path.replace(reKeySegment, '0').replace(/\\[\\d+\\]/g, '[]'))\n }\n logger?.log?.(`[@sanity/client]: List of skipped paths`, [...skipped.values()])\n }\n\n if (isSkipping || isEncoding) {\n logger?.groupEnd?.()\n }\n }\n\n return resultWithStega\n}\n\nfunction prettyPathForLogging(path: ContentSourceMapParsedPath): string {\n return studioPathToString(jsonPathToStudioPath(path))\n}\n"],"mappings":"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"}
|