@salesforce/webapp-template-app-react-template-b2e-experimental 1.91.0 → 1.92.1
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/dist/AGENT.md +17 -13
- package/dist/CHANGELOG.md +19 -0
- package/dist/force-app/main/default/webapplications/appreacttemplateb2e/package.json +9 -4
- package/dist/force-app/main/default/webapplications/appreacttemplateb2e/tsconfig.tsbuildinfo +1 -0
- package/dist/package.json +1 -1
- package/dist/scripts/prepare-import-unique-fields.js +17 -3
- package/dist/scripts/setup-cli.mjs +318 -67
- package/package.json +1 -1
package/dist/AGENT.md
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
# Agent guide: SFDX project with React web app
|
|
2
2
|
|
|
3
|
-
This project is a **Salesforce DX (SFDX) project** containing a **React web application**. The
|
|
3
|
+
This project is a **Salesforce DX (SFDX) project** containing a **React web application**. The SFDX source path is defined in `sfdx-project.json` (`packageDirectories[].path`); the web app lives under `<sfdx-source>/webapplications/<appName>/`. Use this file when working in this directory.
|
|
4
|
+
|
|
5
|
+
## SFDX Source Path
|
|
6
|
+
|
|
7
|
+
The source path prefix is **not** always `force-app`. Read `sfdx-project.json` at the project root, take the first `packageDirectories[].path` value, and append `/main/default` to get `<sfdx-source>`. All paths below use this placeholder.
|
|
4
8
|
|
|
5
9
|
## Project layout
|
|
6
10
|
|
|
7
|
-
- **Project root**: this directory — SFDX project root. Contains `sfdx-project.json`,
|
|
8
|
-
- **React web app**:
|
|
11
|
+
- **Project root**: this directory — SFDX project root. Contains `sfdx-project.json`, the SFDX source directory, and (optionally) LWC/Aura.
|
|
12
|
+
- **React web app**: `<sfdx-source>/webapplications/<appName>/`
|
|
9
13
|
- Replace `<appName>` with the actual app folder name (e.g. `base-react-app`, or the name chosen when the app was generated).
|
|
10
14
|
- Entry: `src/App.tsx`
|
|
11
15
|
- Routes: `src/routes.tsx`
|
|
@@ -35,7 +39,7 @@ Root **does not** run the React app. The root `npm run build` is a no-op for the
|
|
|
35
39
|
**Always `cd` into the web app directory for dev/build/lint/test:**
|
|
36
40
|
|
|
37
41
|
```bash
|
|
38
|
-
cd
|
|
42
|
+
cd <sfdx-source>/webapplications/<appName>
|
|
39
43
|
```
|
|
40
44
|
|
|
41
45
|
| Command | Purpose |
|
|
@@ -54,24 +58,24 @@ cd force-app/main/default/webapplications/<appName>
|
|
|
54
58
|
|
|
55
59
|
This project includes **.a4drules/** at the project root. Follow them when generating or editing code.
|
|
56
60
|
|
|
57
|
-
When rules refer to
|
|
61
|
+
When rules refer to "web app directory" or `<sfdx-source>/webapplications/<appName>/`, resolve `<sfdx-source>` from `sfdx-project.json` and use the **actual app folder name** for this project.
|
|
58
62
|
|
|
59
63
|
## Deploying
|
|
60
64
|
|
|
61
|
-
From **this project root
|
|
65
|
+
From **this project root** (resolve the actual SFDX source path from `sfdx-project.json`):
|
|
62
66
|
|
|
63
67
|
```bash
|
|
64
|
-
# Build the React app first (replace <appName> with
|
|
65
|
-
cd
|
|
68
|
+
# Build the React app first (replace <sfdx-source> and <appName> with actual values)
|
|
69
|
+
cd <sfdx-source>/webapplications/<appName> && npm i && npm run build && cd -
|
|
66
70
|
|
|
67
|
-
# Deploy web app only
|
|
68
|
-
sf project deploy start --source-dir
|
|
71
|
+
# Deploy web app only (replace <sfdx-source> with actual path, e.g. force-app/main/default)
|
|
72
|
+
sf project deploy start --source-dir <sfdx-source>/webapplications --target-org <alias>
|
|
69
73
|
|
|
70
|
-
# Deploy all metadata
|
|
71
|
-
sf project deploy start --source-dir
|
|
74
|
+
# Deploy all metadata (use the top-level package directory, e.g. force-app)
|
|
75
|
+
sf project deploy start --source-dir <packageDir> --target-org <alias>
|
|
72
76
|
```
|
|
73
77
|
|
|
74
78
|
## Conventions (quick reference)
|
|
75
79
|
|
|
76
80
|
- **UI**: shadcn/ui + Tailwind. Import from `@/components/ui/...`.
|
|
77
|
-
- **Entry**: Keep `App.tsx` and routes in `src/`; add features as new routes or sections, don
|
|
81
|
+
- **Entry**: Keep `App.tsx` and routes in `src/`; add features as new routes or sections, don't replace the app shell but you may modify it to match the requested design.
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.92.1](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.92.0...v1.92.1) (2026-03-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **template:** make setup-cli data import idempotent with Apex-based insert ([#254](https://github.com/salesforce-experience-platform-emu/webapps/issues/254)) ([76ee673](https://github.com/salesforce-experience-platform-emu/webapps/commit/76ee673f1f13c117f33550dfbb2fff6870a038dc))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [1.92.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.91.0...v1.92.0) (2026-03-11)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [1.91.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.90.4...v1.91.0) (2026-03-11)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @salesforce/webapp-template-base-sfdx-project-experimental
|
|
@@ -15,9 +15,14 @@
|
|
|
15
15
|
"graphql:schema": "node scripts/get-graphql-schema.mjs"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@salesforce/agentforce-conversation-client": "
|
|
19
|
-
"@salesforce/
|
|
20
|
-
"@salesforce/
|
|
18
|
+
"@salesforce/agentforce-conversation-client": "file:../../../../../../../../../agentforceConversationClient",
|
|
19
|
+
"@salesforce/micro-frontends-experimental": "file:../../../../../../../../../micro-frontends",
|
|
20
|
+
"@salesforce/sdk-chat": "file:../../../../../../../../../sdk/sdk-chat",
|
|
21
|
+
"@salesforce/sdk-core": "file:../../../../../../../../../sdk/sdk-core",
|
|
22
|
+
"@salesforce/sdk-data": "file:../../../../../../../../../sdk/sdk-data",
|
|
23
|
+
"@salesforce/sdk-lightning": "file:../../../../../../../../../sdk/sdk-lightning",
|
|
24
|
+
"@salesforce/sdk-view": "file:../../../../../../../../../sdk/sdk-view",
|
|
25
|
+
"@salesforce/webapp-experimental": "file:../../../../../../../../../webapps",
|
|
21
26
|
"@tailwindcss/vite": "^4.1.17",
|
|
22
27
|
"@tanstack/react-form": "^1.28.4",
|
|
23
28
|
"class-variance-authority": "^0.7.1",
|
|
@@ -41,7 +46,7 @@
|
|
|
41
46
|
"@graphql-eslint/eslint-plugin": "^4.1.0",
|
|
42
47
|
"@graphql-tools/utils": "^11.0.0",
|
|
43
48
|
"@playwright/test": "^1.49.0",
|
|
44
|
-
"@salesforce/vite-plugin-webapp-experimental": "
|
|
49
|
+
"@salesforce/vite-plugin-webapp-experimental": "file:../../../../../../../../../vite-plugin-webapps",
|
|
45
50
|
"@testing-library/jest-dom": "^6.6.3",
|
|
46
51
|
"@testing-library/react": "^16.1.0",
|
|
47
52
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"root":["./src/app.tsx","./src/appLayout.tsx","./src/index.ts","./src/navigationMenu.tsx","./src/router-utils.tsx","./src/routes.tsx","./src/components/AgentforceConversationClient.tsx","./src/components/__inherit_AgentforceConversationClient.tsx","./src/components/alerts/status-alert.tsx","./src/components/layouts/card-layout.tsx","./src/components/ui/alert.tsx","./src/components/ui/button.tsx","./src/components/ui/card.tsx","./src/components/ui/dialog.tsx","./src/components/ui/field.tsx","./src/components/ui/index.ts","./src/components/ui/input.tsx","./src/components/ui/label.tsx","./src/components/ui/pagination.tsx","./src/components/ui/select.tsx","./src/components/ui/separator.tsx","./src/components/ui/skeleton.tsx","./src/components/ui/spinner.tsx","./src/components/ui/table.tsx","./src/components/ui/tabs.tsx","./src/features/global-search/constants.ts","./src/features/global-search/api/objectDetailService.ts","./src/features/global-search/api/objectInfoGraphQLService.ts","./src/features/global-search/api/objectInfoService.ts","./src/features/global-search/api/recordListGraphQLService.ts","./src/features/global-search/components/detail/DetailFields.tsx","./src/features/global-search/components/detail/DetailForm.tsx","./src/features/global-search/components/detail/DetailHeader.tsx","./src/features/global-search/components/detail/DetailLayoutSections.tsx","./src/features/global-search/components/detail/Section.tsx","./src/features/global-search/components/detail/SectionRow.tsx","./src/features/global-search/components/detail/UiApiDetailForm.tsx","./src/features/global-search/components/detail/formatted/FieldValueDisplay.tsx","./src/features/global-search/components/detail/formatted/FormattedAddress.tsx","./src/features/global-search/components/detail/formatted/FormattedEmail.tsx","./src/features/global-search/components/detail/formatted/FormattedPhone.tsx","./src/features/global-search/components/detail/formatted/FormattedText.tsx","./src/features/global-search/components/detail/formatted/FormattedUrl.tsx","./src/features/global-search/components/filters/FilterField.tsx","./src/features/global-search/components/filters/FilterInput.tsx","./src/features/global-search/components/filters/FilterSelect.tsx","./src/features/global-search/components/filters/FiltersPanel.tsx","./src/features/global-search/components/forms/filters-form.tsx","./src/features/global-search/components/forms/submit-button.tsx","./src/features/global-search/components/search/GlobalSearchInput.tsx","./src/features/global-search/components/search/ResultCardFields.tsx","./src/features/global-search/components/search/SearchHeader.tsx","./src/features/global-search/components/search/SearchPagination.tsx","./src/features/global-search/components/search/SearchResultCard.tsx","./src/features/global-search/components/search/SearchResultsPanel.tsx","./src/features/global-search/components/shared/LoadingFallback.tsx","./src/features/global-search/filters/FilterInput.tsx","./src/features/global-search/filters/FilterSelect.tsx","./src/features/global-search/hooks/form.tsx","./src/features/global-search/hooks/useObjectInfoBatch.ts","./src/features/global-search/hooks/useObjectSearchData.ts","./src/features/global-search/hooks/useRecordDetailLayout.ts","./src/features/global-search/hooks/useRecordListGraphQL.ts","./src/features/global-search/pages/DetailPage.tsx","./src/features/global-search/pages/GlobalSearch.tsx","./src/features/global-search/types/schema.d.ts","./src/features/global-search/types/filters/filters.ts","./src/features/global-search/types/filters/picklist.ts","./src/features/global-search/types/objectInfo/objectInfo.ts","./src/features/global-search/types/recordDetail/recordDetail.ts","./src/features/global-search/types/search/searchResults.ts","./src/features/global-search/utils/apiUtils.ts","./src/features/global-search/utils/cacheUtils.ts","./src/features/global-search/utils/debounce.ts","./src/features/global-search/utils/fieldUtils.ts","./src/features/global-search/utils/fieldValueExtractor.ts","./src/features/global-search/utils/filterUtils.ts","./src/features/global-search/utils/formDataTransformUtils.ts","./src/features/global-search/utils/formUtils.ts","./src/features/global-search/utils/graphQLNodeFieldUtils.ts","./src/features/global-search/utils/graphQLObjectInfoAdapter.ts","./src/features/global-search/utils/graphQLRecordAdapter.ts","./src/features/global-search/utils/layoutTransformUtils.ts","./src/features/global-search/utils/linkUtils.ts","./src/features/global-search/utils/paginationUtils.ts","./src/features/global-search/utils/recordUtils.ts","./src/features/global-search/utils/sanitizationUtils.ts","./src/lib/utils.ts","./src/pages/Home.tsx","./src/pages/NotFound.tsx","./src/pages/TestAccPage.tsx","./src/types/conversation.ts","./vite-env.d.ts","./vitest-env.d.ts"],"version":"5.9.3"}
|
package/dist/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Usage:
|
|
7
7
|
* node scripts/prepare-import-unique-fields.js
|
|
8
|
-
* node scripts/prepare-import-unique-fields.js --data-dir /path/to
|
|
8
|
+
* node scripts/prepare-import-unique-fields.js --data-dir /path/to/<sfdx-source>/data
|
|
9
9
|
*
|
|
10
10
|
* Expects data dir to contain (optional) JSON files:
|
|
11
11
|
* Contact.json (Email with unique domain per run, LastName, FirstName, Phone — standard Contact)
|
|
@@ -18,8 +18,22 @@
|
|
|
18
18
|
const fs = require('fs');
|
|
19
19
|
const path = require('path');
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
const
|
|
21
|
+
function resolveSfdxSource() {
|
|
22
|
+
const sfdxPath = path.resolve(__dirname, '..', 'sfdx-project.json');
|
|
23
|
+
if (!fs.existsSync(sfdxPath)) {
|
|
24
|
+
console.error('Error: sfdx-project.json not found at project root.');
|
|
25
|
+
process.exit(1);
|
|
26
|
+
}
|
|
27
|
+
const sfdxProject = JSON.parse(fs.readFileSync(sfdxPath, 'utf8'));
|
|
28
|
+
const pkgDir = sfdxProject?.packageDirectories?.[0]?.path;
|
|
29
|
+
if (!pkgDir) {
|
|
30
|
+
console.error('Error: No packageDirectories[].path found in sfdx-project.json.');
|
|
31
|
+
process.exit(1);
|
|
32
|
+
}
|
|
33
|
+
return path.resolve(__dirname, '..', pkgDir, 'main', 'default');
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const DEFAULT_DATA_DIR = path.resolve(resolveSfdxSource(), 'data');
|
|
23
37
|
|
|
24
38
|
function parseArgs() {
|
|
25
39
|
const args = process.argv.slice(2);
|
|
@@ -4,37 +4,56 @@
|
|
|
4
4
|
* Use this script to make setup easier for each app generated from this template.
|
|
5
5
|
*
|
|
6
6
|
* Usage:
|
|
7
|
-
* node scripts/setup-cli.mjs --target-org <alias>
|
|
7
|
+
* node scripts/setup-cli.mjs --target-org <alias> # interactive step picker (all selected)
|
|
8
|
+
* node scripts/setup-cli.mjs --target-org <alias> --yes # skip picker, run all steps
|
|
8
9
|
* node scripts/setup-cli.mjs --target-org afv5 --skip-login
|
|
9
10
|
* node scripts/setup-cli.mjs --target-org afv5 --skip-data --skip-webapp-build
|
|
10
11
|
* node scripts/setup-cli.mjs --target-org myorg --webapp-name my-app
|
|
11
12
|
*
|
|
12
13
|
* Steps (in order):
|
|
13
14
|
* 1. login — sf org login web only if org not already connected (skip with --skip-login)
|
|
14
|
-
* 2.
|
|
15
|
-
* 3.
|
|
16
|
-
* 4.
|
|
17
|
-
* 5.
|
|
18
|
-
* 6.
|
|
15
|
+
* 2. webapp — (all web apps) npm install && npm run build so dist exists for deploy (skip with --skip-webapp-build)
|
|
16
|
+
* 3. deploy — sf project deploy start --target-org <alias> (requires dist for entity deployment)
|
|
17
|
+
* 4. permset — sf org assign permset (skip with --skip-permset; name via --permset-name)
|
|
18
|
+
* 5. data — prepare unique fields + sf data import tree (skipped if no data dir/plan)
|
|
19
|
+
* 6. graphql — (in webapp) npm run graphql:schema then npm run graphql:codegen
|
|
19
20
|
* 7. dev — (in webapp) npm run dev — launch dev server (skip with --skip-dev)
|
|
20
21
|
*/
|
|
21
22
|
|
|
22
23
|
import { spawnSync } from 'node:child_process';
|
|
23
24
|
import { resolve, dirname } from 'node:path';
|
|
24
25
|
import { fileURLToPath } from 'node:url';
|
|
25
|
-
import { readdirSync, existsSync } from 'node:fs';
|
|
26
|
+
import { readdirSync, existsSync, readFileSync, writeFileSync, unlinkSync } from 'node:fs';
|
|
26
27
|
|
|
27
28
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
28
29
|
const ROOT = resolve(__dirname, '..');
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
const
|
|
30
|
+
|
|
31
|
+
function resolveSfdxSource() {
|
|
32
|
+
const sfdxPath = resolve(ROOT, 'sfdx-project.json');
|
|
33
|
+
if (!existsSync(sfdxPath)) {
|
|
34
|
+
console.error('Error: sfdx-project.json not found at project root.');
|
|
35
|
+
process.exit(1);
|
|
36
|
+
}
|
|
37
|
+
const sfdxProject = JSON.parse(readFileSync(sfdxPath, 'utf8'));
|
|
38
|
+
const pkgDir = sfdxProject?.packageDirectories?.[0]?.path;
|
|
39
|
+
if (!pkgDir) {
|
|
40
|
+
console.error('Error: No packageDirectories[].path found in sfdx-project.json.');
|
|
41
|
+
process.exit(1);
|
|
42
|
+
}
|
|
43
|
+
return resolve(ROOT, pkgDir, 'main', 'default');
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const SFDX_SOURCE = resolveSfdxSource();
|
|
47
|
+
const WEBAPPLICATIONS_DIR = resolve(SFDX_SOURCE, 'webapplications');
|
|
48
|
+
const DATA_DIR = resolve(SFDX_SOURCE, 'data');
|
|
49
|
+
const DATA_PLAN = resolve(SFDX_SOURCE, 'data/data-plan.json');
|
|
32
50
|
|
|
33
51
|
function parseArgs() {
|
|
34
52
|
const args = process.argv.slice(2);
|
|
35
53
|
let targetOrg = null;
|
|
36
54
|
let webappName = null;
|
|
37
55
|
let permsetName = 'Property_Management_Access';
|
|
56
|
+
let yes = false;
|
|
38
57
|
const flags = {
|
|
39
58
|
skipLogin: false,
|
|
40
59
|
skipDeploy: false,
|
|
@@ -58,6 +77,7 @@ function parseArgs() {
|
|
|
58
77
|
else if (args[i] === '--skip-graphql') flags.skipGraphql = true;
|
|
59
78
|
else if (args[i] === '--skip-webapp-build') flags.skipWebappBuild = true;
|
|
60
79
|
else if (args[i] === '--skip-dev') flags.skipDev = true;
|
|
80
|
+
else if (args[i] === '--yes' || args[i] === '-y') yes = true;
|
|
61
81
|
else if (args[i] === '--help' || args[i] === '-h') {
|
|
62
82
|
console.log(`
|
|
63
83
|
Setup CLI — one-command setup for apps in this project
|
|
@@ -78,6 +98,7 @@ Options:
|
|
|
78
98
|
--skip-graphql Do not fetch schema or run GraphQL codegen
|
|
79
99
|
--skip-webapp-build Do not npm install / build the web application
|
|
80
100
|
--skip-dev Do not launch the dev server at the end
|
|
101
|
+
-y, --yes Skip interactive step picker; run all enabled steps immediately
|
|
81
102
|
-h, --help Show this help
|
|
82
103
|
`);
|
|
83
104
|
process.exit(0);
|
|
@@ -87,18 +108,10 @@ Options:
|
|
|
87
108
|
console.error('Error: --target-org <alias> is required.');
|
|
88
109
|
process.exit(1);
|
|
89
110
|
}
|
|
90
|
-
return { targetOrg, webappName, permsetName, ...flags };
|
|
111
|
+
return { targetOrg, webappName, permsetName, yes, ...flags };
|
|
91
112
|
}
|
|
92
113
|
|
|
93
|
-
function
|
|
94
|
-
if (webappName) {
|
|
95
|
-
const dir = resolve(WEBAPPLICATIONS_DIR, webappName);
|
|
96
|
-
if (!existsSync(dir)) {
|
|
97
|
-
console.error(`Error: Web app directory not found: ${dir}`);
|
|
98
|
-
process.exit(1);
|
|
99
|
-
}
|
|
100
|
-
return dir;
|
|
101
|
-
}
|
|
114
|
+
function discoverAllWebappDirs(webappName) {
|
|
102
115
|
if (!existsSync(WEBAPPLICATIONS_DIR)) {
|
|
103
116
|
console.error(`Error: webapplications directory not found: ${WEBAPPLICATIONS_DIR}`);
|
|
104
117
|
process.exit(1);
|
|
@@ -109,10 +122,23 @@ function discoverWebappDir(webappName) {
|
|
|
109
122
|
console.error(`Error: No web app folder found under ${WEBAPPLICATIONS_DIR}`);
|
|
110
123
|
process.exit(1);
|
|
111
124
|
}
|
|
112
|
-
if (
|
|
113
|
-
|
|
125
|
+
if (webappName) {
|
|
126
|
+
const requested = dirs.find((d) => d.name === webappName);
|
|
127
|
+
if (!requested) {
|
|
128
|
+
console.error(`Error: Web app directory not found: ${webappName}`);
|
|
129
|
+
process.exit(1);
|
|
130
|
+
}
|
|
131
|
+
return [resolve(WEBAPPLICATIONS_DIR, requested.name)];
|
|
132
|
+
}
|
|
133
|
+
return dirs.map((d) => resolve(WEBAPPLICATIONS_DIR, d.name));
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
function discoverWebappDir(webappName) {
|
|
137
|
+
const all = discoverAllWebappDirs(webappName);
|
|
138
|
+
if (all.length > 1 && !webappName) {
|
|
139
|
+
console.log(`Multiple web apps found; using first: ${all[0].split(/[/\\]/).pop()}`);
|
|
114
140
|
}
|
|
115
|
-
return
|
|
141
|
+
return all[0];
|
|
116
142
|
}
|
|
117
143
|
|
|
118
144
|
function isOrgConnected(targetOrg) {
|
|
@@ -124,6 +150,117 @@ function isOrgConnected(targetOrg) {
|
|
|
124
150
|
return result.status === 0;
|
|
125
151
|
}
|
|
126
152
|
|
|
153
|
+
function apexLiteral(value) {
|
|
154
|
+
if (value === null || value === undefined) return 'null';
|
|
155
|
+
if (typeof value === 'boolean') return String(value);
|
|
156
|
+
if (typeof value === 'number') return String(value);
|
|
157
|
+
const s = String(value);
|
|
158
|
+
if (/^\d{4}-\d{2}-\d{2}$/.test(s)) return `Date.valueOf('${s}')`;
|
|
159
|
+
if (/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}/.test(s)) {
|
|
160
|
+
const dt = s.replace('T', ' ').replace(/\.\d+/, '').replace('Z', '');
|
|
161
|
+
return `DateTime.valueOf('${dt}')`;
|
|
162
|
+
}
|
|
163
|
+
return "'" + s.replace(/\\/g, '\\\\').replace(/'/g, "\\'") + "'";
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
function buildApexInsert(sobject, records, refIds) {
|
|
167
|
+
const lines = [
|
|
168
|
+
'Database.DMLOptions dmlOpts = new Database.DMLOptions();',
|
|
169
|
+
'dmlOpts.DuplicateRuleHeader.allowSave = true;',
|
|
170
|
+
`List<${sobject}> recs = new List<${sobject}>();`,
|
|
171
|
+
];
|
|
172
|
+
for (const rec of records) {
|
|
173
|
+
lines.push(`{ ${sobject} r = new ${sobject}();`);
|
|
174
|
+
for (const [key, val] of Object.entries(rec)) {
|
|
175
|
+
if (key === 'attributes') continue;
|
|
176
|
+
lines.push(`r.put('${key}', ${apexLiteral(val)});`);
|
|
177
|
+
}
|
|
178
|
+
lines.push('recs.add(r); }');
|
|
179
|
+
}
|
|
180
|
+
lines.push('Database.SaveResult[] results = Database.insert(recs, dmlOpts);');
|
|
181
|
+
const refArray = refIds.map((r) => `'${r}'`).join(',');
|
|
182
|
+
lines.push(`String[] refs = new String[]{${refArray}};`);
|
|
183
|
+
lines.push('for (Integer i = 0; i < results.size(); i++) {');
|
|
184
|
+
lines.push(" if (results[i].isSuccess()) System.debug('REF:' + refs[i] + ':' + results[i].getId());");
|
|
185
|
+
lines.push(" else System.debug('ERR:' + refs[i] + ':' + results[i].getErrors()[0].getMessage());");
|
|
186
|
+
lines.push('}');
|
|
187
|
+
return lines.join('\n');
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* Interactive multi-select: arrow keys navigate, space toggles, 'a' toggles all, enter confirms.
|
|
192
|
+
* Returns a boolean[] matching the input order. Falls through immediately when stdin is not a TTY.
|
|
193
|
+
*/
|
|
194
|
+
async function promptSteps(steps) {
|
|
195
|
+
if (!process.stdin.isTTY) return steps.map((s) => s.enabled);
|
|
196
|
+
|
|
197
|
+
const selected = steps.map((s) => s.enabled);
|
|
198
|
+
let cursor = 0;
|
|
199
|
+
const DIM = '\x1B[2m';
|
|
200
|
+
const RST = '\x1B[0m';
|
|
201
|
+
const CYAN = '\x1B[36m';
|
|
202
|
+
const GREEN = '\x1B[32m';
|
|
203
|
+
|
|
204
|
+
function render() {
|
|
205
|
+
return steps.map((s, i) => {
|
|
206
|
+
const ptr = i === cursor ? `${CYAN}❯${RST}` : ' ';
|
|
207
|
+
if (!s.available) return `${ptr} ${DIM}○ ${s.label} (n/a)${RST}`;
|
|
208
|
+
const chk = selected[i] ? `${GREEN}●${RST}` : '○';
|
|
209
|
+
return `${ptr} ${chk} ${s.label}`;
|
|
210
|
+
});
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
return new Promise((resolve) => {
|
|
214
|
+
process.stdin.setRawMode(true);
|
|
215
|
+
process.stdin.resume();
|
|
216
|
+
process.stdin.setEncoding('utf8');
|
|
217
|
+
process.stdout.write('\x1B[?25l');
|
|
218
|
+
console.log('\nSelect steps (↑↓ move, space toggle, a all, enter confirm):\n');
|
|
219
|
+
process.stdout.write(render().join('\n') + '\n');
|
|
220
|
+
|
|
221
|
+
function redraw() {
|
|
222
|
+
process.stdout.write(`\x1B[${steps.length}A`);
|
|
223
|
+
for (const line of render()) process.stdout.write(`\x1B[2K${line}\n`);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
process.stdin.on('data', (key) => {
|
|
227
|
+
if (key === '\x03') {
|
|
228
|
+
process.stdout.write('\x1B[?25h\n');
|
|
229
|
+
process.exit(0);
|
|
230
|
+
}
|
|
231
|
+
if (key === '\r' || key === '\n') {
|
|
232
|
+
process.stdout.write('\x1B[?25h');
|
|
233
|
+
process.stdin.setRawMode(false);
|
|
234
|
+
process.stdin.pause();
|
|
235
|
+
process.stdin.removeAllListeners('data');
|
|
236
|
+
console.log();
|
|
237
|
+
resolve(selected);
|
|
238
|
+
return;
|
|
239
|
+
}
|
|
240
|
+
if (key === ' ') {
|
|
241
|
+
if (steps[cursor].available) selected[cursor] = !selected[cursor];
|
|
242
|
+
redraw();
|
|
243
|
+
return;
|
|
244
|
+
}
|
|
245
|
+
if (key === 'a') {
|
|
246
|
+
const allOn = steps.every((s, i) => !s.available || selected[i]);
|
|
247
|
+
for (let i = 0; i < steps.length; i++) {
|
|
248
|
+
if (steps[i].available) selected[i] = !allOn;
|
|
249
|
+
}
|
|
250
|
+
redraw();
|
|
251
|
+
return;
|
|
252
|
+
}
|
|
253
|
+
if (key === '\x1B[A' || key === 'k') {
|
|
254
|
+
cursor = Math.max(0, cursor - 1);
|
|
255
|
+
redraw();
|
|
256
|
+
} else if (key === '\x1B[B' || key === 'j') {
|
|
257
|
+
cursor = Math.min(steps.length - 1, cursor + 1);
|
|
258
|
+
redraw();
|
|
259
|
+
}
|
|
260
|
+
});
|
|
261
|
+
});
|
|
262
|
+
}
|
|
263
|
+
|
|
127
264
|
function run(name, cmd, args, opts = {}) {
|
|
128
265
|
const { cwd = ROOT, optional = false } = opts;
|
|
129
266
|
console.log('\n---', name, '---');
|
|
@@ -140,25 +277,52 @@ function run(name, cmd, args, opts = {}) {
|
|
|
140
277
|
return result;
|
|
141
278
|
}
|
|
142
279
|
|
|
143
|
-
function main() {
|
|
280
|
+
async function main() {
|
|
144
281
|
const {
|
|
145
282
|
targetOrg,
|
|
146
283
|
webappName,
|
|
147
284
|
permsetName,
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
285
|
+
yes,
|
|
286
|
+
skipLogin: argSkipLogin,
|
|
287
|
+
skipDeploy: argSkipDeploy,
|
|
288
|
+
skipPermset: argSkipPermset,
|
|
289
|
+
skipData: argSkipData,
|
|
290
|
+
skipGraphql: argSkipGraphql,
|
|
291
|
+
skipWebappBuild: argSkipWebappBuild,
|
|
292
|
+
skipDev: argSkipDev,
|
|
155
293
|
} = parseArgs();
|
|
156
294
|
|
|
157
|
-
const webappDir = discoverWebappDir(webappName);
|
|
158
295
|
const hasDataPlan = existsSync(DATA_PLAN) && existsSync(DATA_DIR);
|
|
159
|
-
const doData = !skipData && hasDataPlan;
|
|
160
296
|
|
|
161
|
-
|
|
297
|
+
const stepDefs = [
|
|
298
|
+
{ key: 'login', label: 'Login — org authentication', enabled: !argSkipLogin, available: true },
|
|
299
|
+
{ key: 'webappBuild', label: 'Webapp Build — npm install + build (pre-deploy)', enabled: !argSkipWebappBuild, available: true },
|
|
300
|
+
{ key: 'deploy', label: 'Deploy — sf project deploy start', enabled: !argSkipDeploy, available: true },
|
|
301
|
+
{ key: 'permset', label: `Permset — assign ${permsetName}`, enabled: !argSkipPermset, available: true },
|
|
302
|
+
{ key: 'data', label: 'Data — delete + import records via Apex', enabled: !argSkipData && hasDataPlan, available: hasDataPlan },
|
|
303
|
+
{ key: 'graphql', label: 'GraphQL — schema introspect + codegen', enabled: !argSkipGraphql, available: true },
|
|
304
|
+
{ key: 'dev', label: 'Dev — launch dev server', enabled: !argSkipDev, available: true },
|
|
305
|
+
];
|
|
306
|
+
|
|
307
|
+
const selections = yes ? stepDefs.map((s) => s.enabled) : await promptSteps(stepDefs);
|
|
308
|
+
const on = {};
|
|
309
|
+
stepDefs.forEach((s, i) => {
|
|
310
|
+
on[s.key] = selections[i];
|
|
311
|
+
});
|
|
312
|
+
|
|
313
|
+
const skipLogin = !on.login;
|
|
314
|
+
const skipWebappBuild = !on.webappBuild;
|
|
315
|
+
const skipDeploy = !on.deploy;
|
|
316
|
+
const skipPermset = !on.permset;
|
|
317
|
+
const skipData = !on.data;
|
|
318
|
+
const skipGraphql = !on.graphql;
|
|
319
|
+
const skipDev = !on.dev;
|
|
320
|
+
|
|
321
|
+
const needsWebapp = !skipWebappBuild || !skipGraphql || !skipDev;
|
|
322
|
+
const webappDir = needsWebapp ? discoverWebappDir(webappName) : null;
|
|
323
|
+
const doData = !skipData;
|
|
324
|
+
|
|
325
|
+
console.log('Setup — target org:', targetOrg, '| web app:', webappDir ?? '(none)');
|
|
162
326
|
console.log(
|
|
163
327
|
'Steps: login=%s deploy=%s permset=%s data=%s graphql=%s webapp=%s dev=%s',
|
|
164
328
|
!skipLogin,
|
|
@@ -169,11 +333,6 @@ function main() {
|
|
|
169
333
|
!skipWebappBuild,
|
|
170
334
|
!skipDev
|
|
171
335
|
);
|
|
172
|
-
if (skipData && hasDataPlan) {
|
|
173
|
-
console.log('(Data dir present; use without --skip-data to run data import.)');
|
|
174
|
-
} else if (!hasDataPlan && !skipData) {
|
|
175
|
-
console.log('(No data plan found; skipping data step.)');
|
|
176
|
-
}
|
|
177
336
|
|
|
178
337
|
if (!skipLogin) {
|
|
179
338
|
if (isOrgConnected(targetOrg)) {
|
|
@@ -184,6 +343,16 @@ function main() {
|
|
|
184
343
|
}
|
|
185
344
|
}
|
|
186
345
|
|
|
346
|
+
// Build all web apps before deploy so dist exists for entity deployment
|
|
347
|
+
if (!skipDeploy && !skipWebappBuild) {
|
|
348
|
+
const allWebappDirs = discoverAllWebappDirs(webappName);
|
|
349
|
+
for (const dir of allWebappDirs) {
|
|
350
|
+
const name = dir.split(/[/\\]/).pop();
|
|
351
|
+
run(`Web app install (${name})`, 'npm', ['install'], { cwd: dir });
|
|
352
|
+
run(`Web app build (${name})`, 'npm', ['run', 'build'], { cwd: dir });
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
|
|
187
356
|
if (!skipDeploy) {
|
|
188
357
|
run('Deploy metadata', 'sf', ['project', 'deploy', 'start', '--target-org', targetOrg], {
|
|
189
358
|
timeout: 180000,
|
|
@@ -225,36 +394,115 @@ function main() {
|
|
|
225
394
|
run('Prepare data (unique fields)', 'node', [prepareScript, '--data-dir', DATA_DIR], {
|
|
226
395
|
cwd: ROOT,
|
|
227
396
|
});
|
|
228
|
-
//
|
|
397
|
+
// Normalize Lease__c Tenant refs to 1–15 so all refs resolve (Tenant__c.json has 15 records)
|
|
398
|
+
const leasePath = resolve(DATA_DIR, 'Lease__c.json');
|
|
399
|
+
if (existsSync(leasePath)) {
|
|
400
|
+
let leaseContent = readFileSync(leasePath, 'utf8');
|
|
401
|
+
leaseContent = leaseContent.replace(/@TenantRef(\d+)/g, (_m, n) => {
|
|
402
|
+
const k = ((parseInt(n, 10) - 1) % 15) + 1;
|
|
403
|
+
return `@TenantRef${k}`;
|
|
404
|
+
});
|
|
405
|
+
writeFileSync(leasePath, leaseContent);
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
// Delete existing records so every run inserts the full dataset without duplicate conflicts.
|
|
409
|
+
// Reverse plan order ensures children are removed before parents (FK safety).
|
|
410
|
+
console.log('\n--- Clean existing data for fresh import ---');
|
|
411
|
+
const planEntries = JSON.parse(readFileSync(DATA_PLAN, 'utf8'));
|
|
412
|
+
const sobjectsReversed = [...planEntries.map((e) => e.sobject)].reverse();
|
|
413
|
+
const tmpApex = resolve(ROOT, '.tmp-setup-delete.apex');
|
|
414
|
+
for (const sobject of sobjectsReversed) {
|
|
415
|
+
const apexCode = [
|
|
416
|
+
'try {',
|
|
417
|
+
` List<SObject> recs = Database.query('SELECT Id FROM ${sobject} LIMIT 10000');`,
|
|
418
|
+
' if (!recs.isEmpty()) {',
|
|
419
|
+
' Database.delete(recs, false);',
|
|
420
|
+
' Database.emptyRecycleBin(recs);',
|
|
421
|
+
' }',
|
|
422
|
+
'} catch (Exception e) {',
|
|
423
|
+
' // non-deletable records (e.g. Contact linked to Case) are skipped via allOrNone=false',
|
|
424
|
+
'}',
|
|
425
|
+
].join('\n');
|
|
426
|
+
writeFileSync(tmpApex, apexCode);
|
|
427
|
+
spawnSync('sf', ['apex', 'run', '--target-org', targetOrg, '--file', tmpApex], {
|
|
428
|
+
cwd: ROOT,
|
|
429
|
+
stdio: 'pipe',
|
|
430
|
+
shell: true,
|
|
431
|
+
timeout: 60000,
|
|
432
|
+
});
|
|
433
|
+
console.log(` ${sobject}: cleaned`);
|
|
434
|
+
}
|
|
435
|
+
if (existsSync(tmpApex)) unlinkSync(tmpApex);
|
|
436
|
+
|
|
437
|
+
// Import via Anonymous Apex with Database.DMLOptions.duplicateRuleHeader.allowSave = true.
|
|
438
|
+
// This bypasses both duplicate-rule blocks AND matching-service timeouts that the REST
|
|
439
|
+
// API headers (Sforce-Duplicate-Rule-Action) cannot override.
|
|
229
440
|
console.log('\n--- Data import tree ---');
|
|
230
|
-
const
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
)
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
const
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
441
|
+
const refMap = new Map();
|
|
442
|
+
const APEX_CHAR_LIMIT = 25000;
|
|
443
|
+
const APEX_MAX_BATCH = 200;
|
|
444
|
+
|
|
445
|
+
for (const entry of planEntries) {
|
|
446
|
+
for (const file of entry.files) {
|
|
447
|
+
const data = JSON.parse(readFileSync(resolve(DATA_DIR, file), 'utf8'));
|
|
448
|
+
const records = data.records || [];
|
|
449
|
+
|
|
450
|
+
for (const rec of records) {
|
|
451
|
+
for (const key of Object.keys(rec)) {
|
|
452
|
+
if (key === 'attributes') continue;
|
|
453
|
+
const val = rec[key];
|
|
454
|
+
if (typeof val === 'string' && val.startsWith('@')) {
|
|
455
|
+
const actual = refMap.get(val.slice(1));
|
|
456
|
+
if (actual) {
|
|
457
|
+
rec[key] = actual;
|
|
458
|
+
} else if (refMap.size > 0) {
|
|
459
|
+
console.warn(` Warning: unresolved ref ${val} in ${file}`);
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
let imported = 0;
|
|
466
|
+
const sampleRec = records[0] || {};
|
|
467
|
+
const fieldsPerRec = Object.keys(sampleRec).filter((k) => k !== 'attributes').length;
|
|
468
|
+
const estCharsPerRec = 40 + fieldsPerRec * 55;
|
|
469
|
+
const batchSize = Math.min(APEX_MAX_BATCH, Math.max(5, Math.floor(APEX_CHAR_LIMIT / estCharsPerRec)));
|
|
470
|
+
for (let i = 0; i < records.length; i += batchSize) {
|
|
471
|
+
const batch = records.slice(i, i + batchSize);
|
|
472
|
+
const refIds = batch.map((r) => r.attributes?.referenceId || `_idx${i}`);
|
|
473
|
+
const apex = buildApexInsert(entry.sobject, batch, refIds);
|
|
474
|
+
writeFileSync(tmpApex, apex);
|
|
475
|
+
const apexResult = spawnSync(
|
|
476
|
+
'sf',
|
|
477
|
+
['apex', 'run', '--target-org', targetOrg, '--file', tmpApex],
|
|
478
|
+
{ cwd: ROOT, stdio: 'pipe', shell: true, timeout: 120000 }
|
|
479
|
+
);
|
|
480
|
+
const apexOut = apexResult.stdout?.toString() || '';
|
|
481
|
+
const apexErr = apexResult.stderr?.toString() || '';
|
|
482
|
+
if (apexResult.status !== 0 && !apexOut.includes('Compiled successfully')) {
|
|
483
|
+
console.error(` ${entry.sobject}: apex execution failed`);
|
|
484
|
+
process.stderr.write(apexErr || apexOut);
|
|
485
|
+
process.exit(1);
|
|
486
|
+
}
|
|
487
|
+
const okMatches = [...apexOut.matchAll(/\|DEBUG\|REF:([^:\n]+):(\w+)/g)];
|
|
488
|
+
const errMatches = [...apexOut.matchAll(/\|DEBUG\|ERR:([^:\n]+):([^\n]+)/g)];
|
|
489
|
+
if (errMatches.length) {
|
|
490
|
+
for (const m of errMatches.slice(0, 5)) {
|
|
491
|
+
console.error(` ${m[1]}: ${m[2].trim()}`);
|
|
492
|
+
}
|
|
493
|
+
if (errMatches.length > 5) console.error(` ... and ${errMatches.length - 5} more`);
|
|
494
|
+
console.error(`\nSetup failed at step: Data import tree (${entry.sobject})`);
|
|
495
|
+
process.exit(1);
|
|
496
|
+
}
|
|
497
|
+
if (entry.saveRefs) {
|
|
498
|
+
for (const m of okMatches) refMap.set(m[1], m[2]);
|
|
499
|
+
}
|
|
500
|
+
imported += okMatches.length;
|
|
501
|
+
}
|
|
502
|
+
console.log(` ${entry.sobject}: imported ${imported} records`);
|
|
256
503
|
}
|
|
257
504
|
}
|
|
505
|
+
if (existsSync(tmpApex)) unlinkSync(tmpApex);
|
|
258
506
|
}
|
|
259
507
|
|
|
260
508
|
if (!skipGraphql || !skipWebappBuild) {
|
|
@@ -279,4 +527,7 @@ function main() {
|
|
|
279
527
|
}
|
|
280
528
|
}
|
|
281
529
|
|
|
282
|
-
main()
|
|
530
|
+
main().catch((err) => {
|
|
531
|
+
console.error(err);
|
|
532
|
+
process.exit(1);
|
|
533
|
+
});
|