Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: crash on envelopItems.filter #6662

Merged
merged 3 commits into from
May 24, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 25 additions & 18 deletions src/utils/env/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { $TSFixMe } from '../../commands/types.js'
import { error } from '../command-helpers.js'

export const AVAILABLE_CONTEXTS = ['all', 'production', 'deploy-preview', 'branch-deploy', 'dev']
Expand Down Expand Up @@ -57,18 +58,20 @@ export const filterEnvBySource = (env, source) =>
// @ts-expect-error TS(2571) FIXME: Object is of type 'unknown'.
Object.fromEntries(Object.entries(env).filter(([, variable]) => variable.sources[0] === source))

/**
* Fetches data from Envelope
* @param {string} accountId - The account id
* @param {object} api - The api singleton object
* @param {string} key - If present, fetch a single key (case-sensitive)
* @param {string} siteId - The site id
* @returns {Array<object>} An array of environment variables from the Envelope service
*/
// @ts-expect-error TS(7031) FIXME: Binding element 'accountId' implicitly has an 'any... Remove this comment to see the full error message
const fetchEnvelopeItems = async function ({ accountId, api, key, siteId }) {
// Fetches data from Envelope
const fetchEnvelopeItems = async function ({
accountId,
api,
key,
siteId,
}: {
accountId: string
api: $TSFixMe
key: string
siteId: string
}): Promise<$TSFixMe[]> {
if (accountId === undefined) {
return {}
return []
}
try {
// if a single key is passed, fetch that single env var
Expand Down Expand Up @@ -109,28 +112,32 @@ const fetchEnvelopeItems = async function ({ accountId, api, key, siteId }) {
* },
* }
*/
// @ts-expect-error TS(7031) FIXME: Binding element 'source' implicitly has an 'any' t... Remove this comment to see the full error message
export const formatEnvelopeData = ({ context = 'dev', envelopeItems = [], scope = 'any', source }) =>
export const formatEnvelopeData = ({
context = 'dev',
envelopeItems = [],
scope = 'any',
source,
}: {
context?: string
envelopeItems: $TSFixMe[]
scope?: string
source: string
}) =>
envelopeItems
// filter by context
.filter(({ values }) => Boolean(findValueInValues(values, context)))
// filter by scope
// @ts-expect-error TS(2339) FIXME: Property 'includes' does not exist on type 'never'... Remove this comment to see the full error message
.filter(({ scopes }) => (scope === 'any' ? true : scopes.includes(scope)))
// sort alphabetically, case insensitive
// @ts-expect-error TS(2339) FIXME: Property 'key' does not exist on type 'never'.
.sort((left, right) => (left.key.toLowerCase() < right.key.toLowerCase() ? -1 : 1))
// format the data
.reduce((acc, cur) => {
// @ts-expect-error TS(2339) FIXME: Property 'values' does not exist on type 'never'.
const { context: ctx, context_parameter: branch, value } = findValueInValues(cur.values, context)
return {
...acc,
// @ts-expect-error TS(2339) FIXME: Property 'key' does not exist on type 'never'.
[cur.key]: {
context: ctx,
branch,
// @ts-expect-error TS(2339) FIXME: Property 'scopes' does not exist on type 'never'.
scopes: cur.scopes,
sources: [source],
value,
Expand Down
Loading