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

Ensure record type metadata is initialized correctly #1212

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions libs/connected/connected-ui/src/lib/useListMetadata.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ async function fetchListMetadata(
});
}
} catch (ex) {
// IsPersonType is only available in orgs where this feature is enabled - so if it fails we don't need to monkey-patch
logger.error('Error monkey-patching PersonAccount record types', ex);
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { logger } from '@jetstream/shared/client-logger';
import { xmlUtils } from '@jetstream/shared/ui-utils';
import { ensureArray } from '@jetstream/shared/utils';
import {
ListItem,
ListMetadataResult,
ReadMetadataRecordType,
ReadMetadataRecordTypeExtended,
ReadMetadataRecordTypePicklistEntryExtended,
} from '@jetstream/types';
import { Query, composeQuery, getField } from '@jetstreamapp/soql-parser-js';
import JSZip from 'jszip';
import groupBy from 'lodash/groupBy';
import { RecordTypePicklistSummary } from '../types/record-types.types';
Expand All @@ -17,14 +16,16 @@ const XML_NS = xmlUtils.SOAP_XML_NAMESPACE;
/**
* Some fullName have invalid objects vs reality
* Some picklist field names are different from metadadata API vs reality
* Ensure array data types are consistent
* @param record
* @returns
*/
export function repairAndEnrichMetadata(record: ReadMetadataRecordType): ReadMetadataRecordTypeExtended {
const [sobject, recordType] = getValidSobjectNameFromFullName(record.fullName);
const picklistValues = record.picklistValues.map((picklistValues): ReadMetadataRecordTypePicklistEntryExtended => {
const picklistValues = ensureArray(record.picklistValues).map((picklistValues): ReadMetadataRecordTypePicklistEntryExtended => {
const fieldName = getValidFieldNameName(decodeURIComponent(picklistValues.picklist));

picklistValues.values = ensureArray(picklistValues.values);
picklistValues.values.forEach((value) => {
value.fullName = decodeURIComponent(value.fullName);
});
Expand Down Expand Up @@ -94,73 +95,6 @@ function setOriginalMetadataSobjectName(modifiedValues: RecordTypePicklistSummar
});
}

export function getRecordTypeSoql(): string {
const query: Query = {
fields: [
getField('Id'),
getField('Name'),
getField('Description'),
getField('DeveloperName'),
getField('IsActive'),
getField('IsPersonType'),
getField('NamespacePrefix'),
getField('SobjectType'),
],
sObject: 'RecordType',
orderBy: [
{
field: 'SobjectType',
order: 'ASC',
},
{
field: 'Name',
order: 'ASC',
},
],
};

const soql = composeQuery(query);
logger.log('getRecordTypeQuery()', soql);
return soql;
}

export function getRecordTypeMetadataSoql(id: string): string {
const query: Query = {
fields: [
getField('Id'),
getField('Name'),
getField('FullName'),
getField('IsPersonType'),
getField('Metadata'),
getField('SobjectType'),
],
sObject: 'RecordType',
where: {
left: {
field: 'Id',
operator: '=',
value: id,
literalType: 'STRING',
},
},
limit: 1,
orderBy: [
{
field: 'SobjectType',
order: 'ASC',
},
{
field: 'Name',
order: 'ASC',
},
],
};

const soql = composeQuery(query);
logger.log('getRecordTypeMetadata()', soql);
return soql;
}

function getRecordTypeModifiedData(
recordType: ReadMetadataRecordTypeExtended,
modifiedValues: RecordTypePicklistSummary[]
Expand Down
2 changes: 0 additions & 2 deletions libs/types/src/lib/salesforce/record.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,6 @@ export interface RecordTypeRecord {
Description: string | null;
DeveloperName: string;
IsActive: boolean;
IsPersonType: boolean;
NamespacePrefix: string | null;
SobjectType: string;
}
Expand All @@ -449,7 +448,6 @@ export interface RecordTypeMetadataRecord {
Id: string;
Name: string;
FullName: string;
IsPersonType: boolean;
Metadata: RecordTypeMetadataTooling;
SobjectType: string;
}
Expand Down