@salesforce/ui-bundle-template-base-react-app 1.117.2

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.
Files changed (73) hide show
  1. package/.forceignore +15 -0
  2. package/.gitignore +1 -0
  3. package/CHANGELOG.md +1096 -0
  4. package/LICENSE.txt +82 -0
  5. package/README.md +17 -0
  6. package/package.json +18 -0
  7. package/src/force-app/main/default/uiBundles/base-react-app/.forceignore +15 -0
  8. package/src/force-app/main/default/uiBundles/base-react-app/.graphqlrc.yml +2 -0
  9. package/src/force-app/main/default/uiBundles/base-react-app/.prettierignore +9 -0
  10. package/src/force-app/main/default/uiBundles/base-react-app/.prettierrc +11 -0
  11. package/src/force-app/main/default/uiBundles/base-react-app/CHANGELOG.md +10 -0
  12. package/src/force-app/main/default/uiBundles/base-react-app/README.md +75 -0
  13. package/src/force-app/main/default/uiBundles/base-react-app/_uibundle.uibundle-meta.xml +7 -0
  14. package/src/force-app/main/default/uiBundles/base-react-app/codegen.yml +95 -0
  15. package/src/force-app/main/default/uiBundles/base-react-app/components.json +18 -0
  16. package/src/force-app/main/default/uiBundles/base-react-app/e2e/app.spec.ts +17 -0
  17. package/src/force-app/main/default/uiBundles/base-react-app/eslint.config.js +169 -0
  18. package/src/force-app/main/default/uiBundles/base-react-app/index.html +12 -0
  19. package/src/force-app/main/default/uiBundles/base-react-app/package.json +68 -0
  20. package/src/force-app/main/default/uiBundles/base-react-app/playwright.config.ts +24 -0
  21. package/src/force-app/main/default/uiBundles/base-react-app/scripts/get-graphql-schema.mjs +68 -0
  22. package/src/force-app/main/default/uiBundles/base-react-app/scripts/rewrite-e2e-assets.mjs +23 -0
  23. package/src/force-app/main/default/uiBundles/base-react-app/src/api/graphqlClient.ts +25 -0
  24. package/src/force-app/main/default/uiBundles/base-react-app/src/app.tsx +17 -0
  25. package/src/force-app/main/default/uiBundles/base-react-app/src/appLayout.tsx +83 -0
  26. package/src/force-app/main/default/uiBundles/base-react-app/src/assets/icons/book.svg +3 -0
  27. package/src/force-app/main/default/uiBundles/base-react-app/src/assets/icons/copy.svg +4 -0
  28. package/src/force-app/main/default/uiBundles/base-react-app/src/assets/icons/rocket.svg +3 -0
  29. package/src/force-app/main/default/uiBundles/base-react-app/src/assets/icons/star.svg +3 -0
  30. package/src/force-app/main/default/uiBundles/base-react-app/src/assets/images/codey-1.png +0 -0
  31. package/src/force-app/main/default/uiBundles/base-react-app/src/assets/images/codey-2.png +0 -0
  32. package/src/force-app/main/default/uiBundles/base-react-app/src/assets/images/codey-3.png +0 -0
  33. package/src/force-app/main/default/uiBundles/base-react-app/src/assets/images/vibe-codey.svg +194 -0
  34. package/src/force-app/main/default/uiBundles/base-react-app/src/components/alerts/status-alert.tsx +49 -0
  35. package/src/force-app/main/default/uiBundles/base-react-app/src/components/layouts/card-layout.tsx +29 -0
  36. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/alert.tsx +76 -0
  37. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/badge.tsx +48 -0
  38. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/breadcrumb.tsx +109 -0
  39. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/button.tsx +67 -0
  40. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/calendar.tsx +232 -0
  41. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/card.tsx +103 -0
  42. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/checkbox.tsx +32 -0
  43. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/collapsible.tsx +33 -0
  44. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/datePicker.tsx +127 -0
  45. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/dialog.tsx +162 -0
  46. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/field.tsx +237 -0
  47. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/index.ts +84 -0
  48. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/input.tsx +19 -0
  49. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/label.tsx +22 -0
  50. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/pagination.tsx +132 -0
  51. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/popover.tsx +89 -0
  52. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/select.tsx +193 -0
  53. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/separator.tsx +26 -0
  54. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/skeleton.tsx +14 -0
  55. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/sonner.tsx +20 -0
  56. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/spinner.tsx +16 -0
  57. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/table.tsx +114 -0
  58. package/src/force-app/main/default/uiBundles/base-react-app/src/components/ui/tabs.tsx +88 -0
  59. package/src/force-app/main/default/uiBundles/base-react-app/src/lib/utils.ts +6 -0
  60. package/src/force-app/main/default/uiBundles/base-react-app/src/navigationMenu.tsx +80 -0
  61. package/src/force-app/main/default/uiBundles/base-react-app/src/pages/Home.tsx +12 -0
  62. package/src/force-app/main/default/uiBundles/base-react-app/src/pages/NotFound.tsx +18 -0
  63. package/src/force-app/main/default/uiBundles/base-react-app/src/router-utils.tsx +35 -0
  64. package/src/force-app/main/default/uiBundles/base-react-app/src/routes.tsx +22 -0
  65. package/src/force-app/main/default/uiBundles/base-react-app/src/styles/global.css +135 -0
  66. package/src/force-app/main/default/uiBundles/base-react-app/tsconfig.json +42 -0
  67. package/src/force-app/main/default/uiBundles/base-react-app/tsconfig.node.json +13 -0
  68. package/src/force-app/main/default/uiBundles/base-react-app/ui-bundle.json +7 -0
  69. package/src/force-app/main/default/uiBundles/base-react-app/vite-env.d.ts +1 -0
  70. package/src/force-app/main/default/uiBundles/base-react-app/vite.config.ts +106 -0
  71. package/src/force-app/main/default/uiBundles/base-react-app/vitest-env.d.ts +2 -0
  72. package/src/force-app/main/default/uiBundles/base-react-app/vitest.config.ts +11 -0
  73. package/src/force-app/main/default/uiBundles/base-react-app/vitest.setup.ts +1 -0
package/LICENSE.txt ADDED
@@ -0,0 +1,82 @@
1
+ Terms of Use
2
+
3
+ Copyright 2026 Salesforce, Inc. All rights reserved.
4
+
5
+ These Terms of Use govern the download, installation, and/or use of this
6
+ software provided by Salesforce, Inc. ("Salesforce") (the "Software"), were
7
+ last updated on April 15, 2025, and constitute a legally binding
8
+ agreement between you and Salesforce. If you do not agree to these Terms of
9
+ Use, do not install or use the Software.
10
+
11
+ Salesforce grants you a worldwide, non-exclusive, no-charge, royalty-free
12
+ copyright license to reproduce, prepare derivative works of, publicly
13
+ display, publicly perform, sublicense, and distribute the Software and
14
+ derivative works subject to these Terms. These Terms shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ Subject to the limited rights expressly granted hereunder, Salesforce
18
+ reserves all rights, title, and interest in and to all intellectual
19
+ property subsisting in the Software. No rights are granted to you hereunder
20
+ other than as expressly set forth herein. Users residing in countries on
21
+ the United States Office of Foreign Assets Control sanction list, or which
22
+ are otherwise subject to a US export embargo, may not use the Software.
23
+
24
+ Implementation of the Software may require development work, for which you
25
+ are responsible. The Software may contain bugs, errors and
26
+ incompatibilities and is made available on an AS IS basis without support,
27
+ updates, or service level commitments.
28
+
29
+ Salesforce reserves the right at any time to modify, suspend, or
30
+ discontinue, the Software (or any part thereof) with or without notice. You
31
+ agree that Salesforce shall not be liable to you or to any third party for
32
+ any modification, suspension, or discontinuance.
33
+
34
+ You agree to defend Salesforce against any claim, demand, suit or
35
+ proceeding made or brought against Salesforce by a third party arising out
36
+ of or accruing from (a) your use of the Software, and (b) any application
37
+ you develop with the Software that infringes any copyright, trademark,
38
+ trade secret, trade dress, patent, or other intellectual property right of
39
+ any person or defames any person or violates their rights of publicity or
40
+ privacy (each a "Claim Against Salesforce"), and will indemnify Salesforce
41
+ from any damages, attorney fees, and costs finally awarded against
42
+ Salesforce as a result of, or for any amounts paid by Salesforce under a
43
+ settlement approved by you in writing of, a Claim Against Salesforce,
44
+ provided Salesforce (x) promptly gives you written notice of the Claim
45
+ Against Salesforce, (y) gives you sole control of the defense and
46
+ settlement of the Claim Against Salesforce (except that you may not settle
47
+ any Claim Against Salesforce unless it unconditionally releases Salesforce
48
+ of all liability), and (z) gives you all reasonable assistance, at your
49
+ expense.
50
+
51
+ WITHOUT LIMITING THE GENERALITY OF THE FOREGOING, THE SOFTWARE IS NOT
52
+ SUPPORTED AND IS PROVIDED "AS IS," WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
53
+ IMPLIED. IN NO EVENT SHALL SALESFORCE HAVE ANY LIABILITY FOR ANY DAMAGES,
54
+ INCLUDING, BUT NOT LIMITED TO, DIRECT, INDIRECT, SPECIAL, INCIDENTAL,
55
+ PUNITIVE, OR CONSEQUENTIAL DAMAGES, OR DAMAGES BASED ON LOST PROFITS, DATA,
56
+ OR USE, IN CONNECTION WITH THE SOFTWARE, HOWEVER CAUSED AND WHETHER IN
57
+ CONTRACT, TORT, OR UNDER ANY OTHER THEORY OF LIABILITY, WHETHER OR NOT YOU
58
+ HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
59
+
60
+ These Terms of Use shall be governed exclusively by the internal laws of
61
+ the State of California, without regard to its conflicts of laws
62
+ rules. Each party hereby consents to the exclusive jurisdiction of the
63
+ state and federal courts located in San Francisco County, California to
64
+ adjudicate any dispute arising out of or relating to these Terms of Use and
65
+ the download, installation, and/or use of the Software. Except as expressly
66
+ stated herein, these Terms of Use constitute the entire agreement between
67
+ the parties, and supersede all prior and contemporaneous agreements,
68
+ proposals, or representations, written or oral, concerning their subject
69
+ matter. No modification, amendment, or waiver of any provision of these
70
+ Terms of Use shall be effective unless it is by an update to these Terms of
71
+ Use that Salesforce makes available, or is in writing and signed by the
72
+ party against whom the modification, amendment, or waiver is to be
73
+ asserted.
74
+
75
+ Data Privacy: Salesforce may collect, process, and store device,
76
+ system, and other information related to your use of the Software. This
77
+ information includes, but is not limited to, IP address, user metrics, and
78
+ other data ("Usage Data"). Salesforce may use Usage Data for analytics,
79
+ product development, and marketing purposes. You acknowledge that files
80
+ generated in conjunction with the Software may contain sensitive or
81
+ confidential data, and you are solely responsible for anonymizing and
82
+ protecting such data.
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # Base React App
2
+
3
+ Base React app template — a React UI Bundle with Vite, TypeScript, Tailwind/shadcn, and Salesforce UI Bundle SDK. Used as the foundation for feature apps (e.g. propertymanagementapp, reactexternalapp) when applying patches.
4
+
5
+ ## In this monorepo
6
+
7
+ This package is a **base app** in the ui-bundle monorepo. It is not built to a local `dist/`; instead, the source tree under `src/force-app/main/default/uiBundles/base-react-app/` is copied into feature app build output when you run apply-patches for a template app.
8
+
9
+ ### Test
10
+
11
+ ```bash
12
+ npm run test
13
+ ```
14
+
15
+ This runs the test:build (install + build in the UI Bundle folder) and test:e2e (Playwright) steps.
16
+
17
+ To work on the UI Bundle locally (install, build, dev server, lint, unit tests), run commands from the UI Bundle directory. See the nested README: `src/force-app/main/default/uiBundles/base-react-app/README.md`.
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@salesforce/ui-bundle-template-base-react-app",
3
+ "version": "1.117.2",
4
+ "license": "SEE LICENSE IN LICENSE.txt",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "type": "module",
9
+ "files": [
10
+ "*"
11
+ ],
12
+ "scripts": {
13
+ "test": "npm run test:build && npm run test:e2e",
14
+ "test:build": "cd src/force-app/main/default/uiBundles/base-react-app && npm install && npm run build",
15
+ "test:coverage": "npm run test",
16
+ "test:e2e": "cd src/force-app/main/default/uiBundles/base-react-app && rm -rf node_modules && npm install && npx playwright install chromium && npm run build:e2e && npx playwright test"
17
+ }
18
+ }
@@ -0,0 +1,15 @@
1
+ # List files or directories below to ignore them when running force:source:push, force:source:pull, and force:source:status
2
+ # More information: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_exclude_source.htm
3
+ #
4
+
5
+ package.xml
6
+
7
+ # LWC configuration files
8
+ **/jsconfig.json
9
+ **/.eslintrc.json
10
+
11
+ # LWC Jest
12
+ **/__tests__/**
13
+
14
+ node_modules/
15
+ .DS_Store
@@ -0,0 +1,2 @@
1
+ schema: '../../../../../schema.graphql'
2
+ documents: 'src/**/*.{graphql,js,ts,jsx,tsx}'
@@ -0,0 +1,9 @@
1
+ node_modules
2
+ dist
3
+ build
4
+ .vite
5
+ coverage
6
+ *.min.js
7
+ *.min.css
8
+ *.map
9
+ package-lock.json
@@ -0,0 +1,11 @@
1
+ {
2
+ "semi": true,
3
+ "trailingComma": "es5",
4
+ "singleQuote": true,
5
+ "printWidth": 80,
6
+ "tabWidth": 2,
7
+ "useTabs": false,
8
+ "bracketSpacing": true,
9
+ "arrowParens": "avoid",
10
+ "endOfLine": "lf"
11
+ }
@@ -0,0 +1,10 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [1.59.0](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.58.2...v1.59.0) (2026-02-27)
7
+
8
+ ### Features
9
+
10
+ - auto bump base react app versions and fix issue with base ui-bundle json ([#175](https://github.com/salesforce-experience-platform-emu/webapps/issues/175)) ([048b5a8](https://github.com/salesforce-experience-platform-emu/webapps/commit/048b5a8449c899fc923aeebc3c76bc5bf1c5e0d4))
@@ -0,0 +1,75 @@
1
+ # Base React App
2
+
3
+ Base React App is a template application that demonstrates how to build a React UI Bundle on the Salesforce platform with Vite, TypeScript, Tailwind, shadcn/ui, and the Salesforce UI Bundle SDK. It provides a minimal shell (home, 404), routing, and GraphQL codegen support so feature apps can extend it via the patches pipeline.
4
+
5
+ This UI Bundle lives inside an SFDX project. The project root is the directory that contains `force-app/` and `sfdx-project.json`. Run the commands in the sections below from the paths indicated.
6
+
7
+ ## Table of contents
8
+
9
+ - [Run (development)](#run-development)
10
+ - [Build](#build)
11
+ - [Deploy](#deploy)
12
+ - [Test](#test)
13
+
14
+ ## Run (development)
15
+
16
+ From the UI Bundle directory (`force-app/main/default/uiBundles/base-react-app`):
17
+
18
+ ```bash
19
+ npm install
20
+ npm run dev
21
+ ```
22
+
23
+ This starts the Vite dev server (e.g. http://localhost:5173). Use `npm run dev:design` to run in design mode.
24
+
25
+ ## Build
26
+
27
+ From the UI Bundle directory:
28
+
29
+ ```bash
30
+ npm install
31
+ npm run build
32
+ ```
33
+
34
+ The production build is written to `dist/` inside the UI Bundle folder. Deploy using the steps in [Deploy](#deploy).
35
+
36
+ ## Deploy
37
+
38
+ From the **SFDX project root** (the directory that contains `force-app/`):
39
+
40
+ 1. Build the UI Bundle:
41
+
42
+ ```bash
43
+ cd force-app/main/default/uiBundles/base-react-app && npm install && npm run build && cd -
44
+ ```
45
+
46
+ 2. Deploy the UI Bundle only:
47
+
48
+ ```bash
49
+ sf project deploy start --source-dir force-app/main/default/ui-bundles --target-org <alias>
50
+ ```
51
+
52
+ Or deploy all metadata:
53
+
54
+ ```bash
55
+ sf project deploy start --source-dir force-app --target-org <alias>
56
+ ```
57
+
58
+ Replace `<alias>` with your target org alias.
59
+
60
+ ## Test
61
+
62
+ From the UI Bundle directory:
63
+
64
+ ```bash
65
+ npm install
66
+ npm run test
67
+ ```
68
+
69
+ This runs the unit test suite (Vitest). For end-to-end tests from the **base-react-app package root**:
70
+
71
+ ```bash
72
+ npm run test:e2e
73
+ ```
74
+
75
+ This installs dependencies, builds with E2E asset rewrites, and runs Playwright. Ensure Chromium is installed (`npx playwright install chromium` if needed).
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <UIBundle xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <masterLabel><%= masterLabel %></masterLabel>
4
+ <description>A Salesforce UI Bundle.</description>
5
+ <isActive>true</isActive>
6
+ <version>1</version>
7
+ </UIBundle>
@@ -0,0 +1,95 @@
1
+ schema: '../../../../../schema.graphql'
2
+ documents: 'src/**/*.{graphql,ts,tsx}'
3
+ generates:
4
+ src/api/graphql-operations-types.ts:
5
+ plugins:
6
+ - 'graphql-codegen-typescript-operation-types'
7
+ - 'typescript-operations'
8
+ config:
9
+ onlyOperationTypes: true
10
+ skipTypename: true
11
+ preResolveTypes: true
12
+ scalars:
13
+ # String-serialized scalars
14
+ JSON:
15
+ input: 'string'
16
+ output: 'string'
17
+ Date:
18
+ input: 'string'
19
+ output: 'string'
20
+ DateTime:
21
+ input: 'string'
22
+ output: 'string'
23
+ Time:
24
+ input: 'string'
25
+ output: 'string'
26
+ Email:
27
+ input: 'string'
28
+ output: 'string'
29
+ Url:
30
+ input: 'string'
31
+ output: 'string'
32
+ PhoneNumber:
33
+ input: 'string'
34
+ output: 'string'
35
+ Picklist:
36
+ input: 'string'
37
+ output: 'string'
38
+ MultiPicklist:
39
+ input: 'string'
40
+ output: 'string'
41
+ TextArea:
42
+ input: 'string'
43
+ output: 'string'
44
+ LongTextArea:
45
+ input: 'string'
46
+ output: 'string'
47
+ RichTextArea:
48
+ input: 'string'
49
+ output: 'string'
50
+ EncryptedString:
51
+ input: 'string'
52
+ output: 'string'
53
+ Base64:
54
+ input: 'string'
55
+ output: 'string'
56
+ IdOrRef:
57
+ input: 'string'
58
+ output: 'string'
59
+ # BigDecimal-serialized scalars (accepts number or string, returns number)
60
+ Currency:
61
+ input: 'number | string'
62
+ output: 'number'
63
+ BigDecimal:
64
+ input: 'number | string'
65
+ output: 'number'
66
+ Double:
67
+ input: 'number | string'
68
+ output: 'number'
69
+ Percent:
70
+ input: 'number | string'
71
+ output: 'number'
72
+ Longitude:
73
+ input: 'number | string'
74
+ output: 'number'
75
+ Latitude:
76
+ input: 'number | string'
77
+ output: 'number'
78
+ # Integer-like scalars
79
+ Long:
80
+ input: 'number'
81
+ output: 'number'
82
+ BigInteger:
83
+ input: 'number'
84
+ output: 'number'
85
+ Short:
86
+ input: 'number'
87
+ output: 'number'
88
+ Byte:
89
+ input: 'number'
90
+ output: 'number'
91
+ Char:
92
+ input: 'number'
93
+ output: 'number'
94
+ overwrite: true
95
+ ignoreNoDocuments: true
@@ -0,0 +1,18 @@
1
+ {
2
+ "style": "new-york",
3
+ "rsc": true,
4
+ "tailwind": {
5
+ "config": "",
6
+ "css": "styles/global.css",
7
+ "baseColor": "neutral",
8
+ "cssVariables": true
9
+ },
10
+ "iconLibrary": "lucide",
11
+ "aliases": {
12
+ "components": "@/components",
13
+ "utils": "@/lib/utils",
14
+ "ui": "@/components/ui",
15
+ "lib": "@/lib",
16
+ "hooks": "@/hooks"
17
+ }
18
+ }
@@ -0,0 +1,17 @@
1
+ import { test, expect } from '@playwright/test';
2
+
3
+ test.describe('base-react-app', () => {
4
+ test('home page loads and shows welcome content', async ({ page }) => {
5
+ await page.goto('/');
6
+ await expect(page.getByRole('heading', { name: 'Home' })).toBeVisible();
7
+ await expect(
8
+ page.getByText('Welcome to your React application.')
9
+ ).toBeVisible();
10
+ });
11
+
12
+ test('not found route shows 404', async ({ page }) => {
13
+ await page.goto('/non-existent-route');
14
+ await expect(page.getByRole('heading', { name: '404' })).toBeVisible();
15
+ await expect(page.getByText('Page not found')).toBeVisible();
16
+ });
17
+ });
@@ -0,0 +1,169 @@
1
+ import { existsSync } from 'node:fs';
2
+ import { resolve } from 'node:path';
3
+ import { fileURLToPath } from 'node:url';
4
+ import { dirname } from 'node:path';
5
+ import js from '@eslint/js';
6
+ import tseslint from '@typescript-eslint/eslint-plugin';
7
+ import tsparser from '@typescript-eslint/parser';
8
+ import react from 'eslint-plugin-react';
9
+ import reactHooks from 'eslint-plugin-react-hooks';
10
+ import reactRefresh from 'eslint-plugin-react-refresh';
11
+ import globals from 'globals';
12
+ import graphqlPlugin from '@graphql-eslint/eslint-plugin';
13
+
14
+ const __dirname = dirname(fileURLToPath(import.meta.url));
15
+ const schemaPath = resolve(__dirname, '../../../../../schema.graphql');
16
+ const schemaExists = existsSync(schemaPath);
17
+
18
+ const config = [
19
+ // Global ignores
20
+ {
21
+ ignores: [
22
+ 'build/**/*',
23
+ 'dist/**/*',
24
+ 'coverage/**/*',
25
+ 'src/api/graphql-operations-types.ts',
26
+ ],
27
+ },
28
+ // Config files and build tools (first to avoid inheritance)
29
+ {
30
+ files: ['*.config.{js,ts}', 'vite.config.ts'],
31
+ languageOptions: {
32
+ parser: tsparser,
33
+ parserOptions: {
34
+ ecmaVersion: 'latest',
35
+ sourceType: 'module',
36
+ },
37
+ globals: {
38
+ ...globals.node,
39
+ __dirname: 'readonly',
40
+ process: 'readonly',
41
+ },
42
+ },
43
+ plugins: {
44
+ '@typescript-eslint': tseslint,
45
+ },
46
+ rules: {
47
+ '@typescript-eslint/no-var-requires': 'off',
48
+ },
49
+ },
50
+ // Main TypeScript/React files
51
+ {
52
+ files: ['**/*.{ts,tsx}'],
53
+ ignores: [
54
+ 'coverage',
55
+ 'dist',
56
+ 'node_modules',
57
+ 'build',
58
+ '*.config.{js,ts}',
59
+ 'vite.config.ts',
60
+ ],
61
+ languageOptions: {
62
+ ecmaVersion: 2020,
63
+ sourceType: 'module',
64
+ parser: tsparser,
65
+ parserOptions: {
66
+ ecmaFeatures: {
67
+ jsx: true,
68
+ },
69
+ ecmaVersion: 'latest',
70
+ sourceType: 'module',
71
+ project: './tsconfig.json',
72
+ },
73
+ globals: {
74
+ ...globals.browser,
75
+ JSX: 'readonly',
76
+ React: 'readonly',
77
+ process: 'readonly',
78
+ },
79
+ },
80
+ plugins: {
81
+ react,
82
+ 'react-hooks': reactHooks,
83
+ 'react-refresh': reactRefresh,
84
+ '@typescript-eslint': tseslint,
85
+ },
86
+ rules: {
87
+ ...js.configs.recommended.rules,
88
+ ...tseslint.configs.recommended.rules,
89
+ ...react.configs.recommended.rules,
90
+ ...reactHooks.configs.recommended.rules,
91
+ 'react/react-in-jsx-scope': 'off',
92
+ 'react/prop-types': 'off',
93
+ 'react/jsx-no-comment-textnodes': 'off',
94
+ 'react/no-unescaped-entities': 'off',
95
+ '@typescript-eslint/no-unused-vars': [
96
+ 'error',
97
+ {
98
+ argsIgnorePattern: '^_',
99
+ varsIgnorePattern: '^_',
100
+ caughtErrorsIgnorePattern: '^_',
101
+ ignoreRestSiblings: true,
102
+ },
103
+ ],
104
+ '@typescript-eslint/explicit-function-return-type': 'off',
105
+ '@typescript-eslint/explicit-module-boundary-types': 'off',
106
+ '@typescript-eslint/no-explicit-any': 'off',
107
+ 'react-hooks/set-state-in-effect': 'warn',
108
+ },
109
+ settings: {
110
+ react: {
111
+ version: 'detect',
112
+ },
113
+ },
114
+ },
115
+ // Test files
116
+ {
117
+ files: [
118
+ '**/*.test.{ts,tsx}',
119
+ '**/test/**/*.{ts,tsx}',
120
+ 'src/test/**/*.{ts,tsx}',
121
+ ],
122
+ languageOptions: {
123
+ parser: tsparser,
124
+ globals: {
125
+ ...globals.browser,
126
+ ...globals.node,
127
+ global: 'writable',
128
+ JSX: 'readonly',
129
+ },
130
+ },
131
+ rules: {
132
+ '@typescript-eslint/no-explicit-any': 'off',
133
+ },
134
+ },
135
+ ];
136
+
137
+ // Only add GraphQL rules when schema exists (e.g. after graphql:schema).
138
+ // In CI or when schema is not checked in, skip so lint succeeds.
139
+ if (schemaExists) {
140
+ config.push(
141
+ {
142
+ files: ['**/*.{ts,tsx}'],
143
+ processor: graphqlPlugin.processor,
144
+ },
145
+ {
146
+ files: ['**/*.graphql'],
147
+ languageOptions: {
148
+ parser: graphqlPlugin.parser,
149
+ parserOptions: {
150
+ graphQLConfig: {
151
+ schema: '../../../../../schema.graphql',
152
+ },
153
+ },
154
+ },
155
+ plugins: {
156
+ '@graphql-eslint': graphqlPlugin,
157
+ },
158
+ rules: {
159
+ '@graphql-eslint/no-anonymous-operations': 'error',
160
+ '@graphql-eslint/no-duplicate-fields': 'error',
161
+ '@graphql-eslint/known-fragment-names': 'error',
162
+ '@graphql-eslint/no-undefined-variables': 'error',
163
+ '@graphql-eslint/no-unused-variables': 'error',
164
+ },
165
+ }
166
+ );
167
+ }
168
+
169
+ export default config;
@@ -0,0 +1,12 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Welcome to React App</title>
7
+ </head>
8
+ <body>
9
+ <div id="root"></div>
10
+ <script type="module" src="src/app.tsx"></script>
11
+ </body>
12
+ </html>
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "base-react-app",
3
+ "private": true,
4
+ "version": "1.59.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "dev:design": "vite --mode design",
9
+ "build": "tsc -b && vite build",
10
+ "build:e2e": "npm run build && node scripts/rewrite-e2e-assets.mjs",
11
+ "lint": "eslint .",
12
+ "preview": "vite preview",
13
+ "test": "vitest",
14
+ "graphql:codegen": "graphql-codegen",
15
+ "graphql:schema": "node scripts/get-graphql-schema.mjs"
16
+ },
17
+ "dependencies": {
18
+ "@salesforce/sdk-data": "^1.117.2",
19
+ "@salesforce/ui-bundle": "^1.117.2",
20
+ "@tailwindcss/vite": "^4.1.17",
21
+ "class-variance-authority": "^0.7.1",
22
+ "clsx": "^2.1.1",
23
+ "date-fns": "^4.1.0",
24
+ "lucide-react": "^0.562.0",
25
+ "radix-ui": "^1.4.3",
26
+ "react": "^19.2.0",
27
+ "react-day-picker": "^9.14.0",
28
+ "react-dom": "^19.2.0",
29
+ "react-router": "^7.10.1",
30
+ "shadcn": "^3.8.5",
31
+ "sonner": "^1.7.0",
32
+ "tailwind-merge": "^3.5.0",
33
+ "tailwindcss": "^4.1.17",
34
+ "tw-animate-css": "^1.4.0"
35
+ },
36
+ "devDependencies": {
37
+ "@eslint/js": "^9.39.1",
38
+ "@graphql-codegen/cli": "^6.1.0",
39
+ "@graphql-codegen/typescript": "^5.0.6",
40
+ "@graphql-codegen/typescript-operations": "^5.0.6",
41
+ "@graphql-eslint/eslint-plugin": "^4.1.0",
42
+ "@graphql-tools/utils": "^11.0.0",
43
+ "@playwright/test": "^1.49.0",
44
+ "@salesforce/vite-plugin-ui-bundle": "^1.117.2",
45
+ "@testing-library/jest-dom": "^6.6.3",
46
+ "@testing-library/react": "^16.1.0",
47
+ "@testing-library/user-event": "^14.5.2",
48
+ "@types/node": "^24.10.1",
49
+ "@types/react": "^19.2.5",
50
+ "@types/react-dom": "^19.2.3",
51
+ "@vitejs/plugin-react": "^5.1.1",
52
+ "@vitest/ui": "^4.0.17",
53
+ "eslint": "^9.39.1",
54
+ "eslint-plugin-react": "^7.37.2",
55
+ "eslint-plugin-react-hooks": "^7.0.1",
56
+ "eslint-plugin-react-refresh": "^0.4.24",
57
+ "globals": "^16.5.0",
58
+ "graphql": "^16.11.0",
59
+ "graphql-codegen-typescript-operation-types": "^2.0.2",
60
+ "jsdom": "^25.0.1",
61
+ "serve": "^14.2.5",
62
+ "typescript": "~5.9.3",
63
+ "typescript-eslint": "^8.46.4",
64
+ "vite": "^7.2.4",
65
+ "vite-plugin-graphql-codegen": "^3.6.3",
66
+ "vitest": "^4.0.17"
67
+ }
68
+ }
@@ -0,0 +1,24 @@
1
+ import { defineConfig, devices } from '@playwright/test';
2
+
3
+ const E2E_PORT = 5175;
4
+
5
+ export default defineConfig({
6
+ testDir: './e2e',
7
+ fullyParallel: true,
8
+ forbidOnly: !!process.env.CI,
9
+ retries: process.env.CI ? 2 : 0,
10
+ workers: process.env.CI ? 1 : undefined,
11
+ reporter: 'html',
12
+ use: {
13
+ baseURL: `http://localhost:${E2E_PORT}`,
14
+ trace: 'on-first-retry',
15
+ },
16
+ projects: [{ name: 'chromium', use: { ...devices['Desktop Chrome'] } }],
17
+ webServer: {
18
+ // Serve built dist/ with static server so e2e works in CI without SF org (vite preview runs plugin and can fail)
19
+ command: `npx serve dist -l ${E2E_PORT}`,
20
+ url: `http://localhost:${E2E_PORT}`,
21
+ reuseExistingServer: !process.env.CI,
22
+ timeout: process.env.CI ? 120_000 : 60_000,
23
+ },
24
+ });