@idevconn/create-icore 0.1.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.
Files changed (241) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +56 -0
  3. package/dist/cli.js +300 -0
  4. package/dist/index.cjs +303 -0
  5. package/dist/index.d.cts +26 -0
  6. package/dist/index.d.ts +26 -0
  7. package/dist/index.js +265 -0
  8. package/package.json +72 -0
  9. package/templates/.husky/pre-commit +56 -0
  10. package/templates/.nvmrc +1 -0
  11. package/templates/.prettierignore +7 -0
  12. package/templates/.prettierrc +7 -0
  13. package/templates/.yarnrc.yml +7 -0
  14. package/templates/apps/api/.env.example +19 -0
  15. package/templates/apps/api/eslint.config.mjs +23 -0
  16. package/templates/apps/api/package.json +20 -0
  17. package/templates/apps/api/project.json +76 -0
  18. package/templates/apps/api/src/app/abilities/__tests__/ability.guard.unit.test.ts +49 -0
  19. package/templates/apps/api/src/app/abilities/abilities.module.ts +10 -0
  20. package/templates/apps/api/src/app/abilities/ability.factory.ts +13 -0
  21. package/templates/apps/api/src/app/abilities/ability.guard.ts +29 -0
  22. package/templates/apps/api/src/app/abilities/check-ability.decorator.ts +12 -0
  23. package/templates/apps/api/src/app/app.module.ts +19 -0
  24. package/templates/apps/api/src/app/auth/__tests__/auth.guard.unit.test.ts +66 -0
  25. package/templates/apps/api/src/app/auth/auth.controller.ts +62 -0
  26. package/templates/apps/api/src/app/auth/auth.guard.ts +42 -0
  27. package/templates/apps/api/src/app/auth/auth.module.ts +17 -0
  28. package/templates/apps/api/src/app/auth/public.decorator.ts +4 -0
  29. package/templates/apps/api/src/app/profile/profile.controller.ts +15 -0
  30. package/templates/apps/api/src/app/profile/profile.module.ts +5 -0
  31. package/templates/apps/api/src/app/storage/__tests__/assert-ownership.unit.test.ts +28 -0
  32. package/templates/apps/api/src/app/storage/assert-ownership.ts +8 -0
  33. package/templates/apps/api/src/app/storage/storage.controller.ts +108 -0
  34. package/templates/apps/api/src/app/storage/storage.module.ts +10 -0
  35. package/templates/apps/api/src/assets/.gitkeep +0 -0
  36. package/templates/apps/api/src/main.ts +43 -0
  37. package/templates/apps/api/tsconfig.app.json +13 -0
  38. package/templates/apps/api/tsconfig.json +16 -0
  39. package/templates/apps/api/tsconfig.spec.json +16 -0
  40. package/templates/apps/api/vitest.config.mts +21 -0
  41. package/templates/apps/api/webpack.config.js +25 -0
  42. package/templates/apps/microservices/auth/.env.example +38 -0
  43. package/templates/apps/microservices/auth/package.json +19 -0
  44. package/templates/apps/microservices/auth/project.json +65 -0
  45. package/templates/apps/microservices/auth/src/app/__tests__/auth.controller.firebase.integration.unit.test.ts +53 -0
  46. package/templates/apps/microservices/auth/src/app/__tests__/auth.controller.supabase.integration.unit.test.ts +47 -0
  47. package/templates/apps/microservices/auth/src/app/__tests__/auth.controller.unit.test.ts +87 -0
  48. package/templates/apps/microservices/auth/src/app/app.module.ts +66 -0
  49. package/templates/apps/microservices/auth/src/app/auth.controller.ts +60 -0
  50. package/templates/apps/microservices/auth/src/assets/.gitkeep +0 -0
  51. package/templates/apps/microservices/auth/src/main.ts +28 -0
  52. package/templates/apps/microservices/auth/tsconfig.app.json +13 -0
  53. package/templates/apps/microservices/auth/tsconfig.json +16 -0
  54. package/templates/apps/microservices/auth/tsconfig.spec.json +16 -0
  55. package/templates/apps/microservices/auth/vitest.config.mts +21 -0
  56. package/templates/apps/microservices/auth/webpack.config.js +25 -0
  57. package/templates/apps/microservices/upload/.env.example +30 -0
  58. package/templates/apps/microservices/upload/package.json +21 -0
  59. package/templates/apps/microservices/upload/project.json +65 -0
  60. package/templates/apps/microservices/upload/src/app/__tests__/storage.controller.unit.test.ts +49 -0
  61. package/templates/apps/microservices/upload/src/app/app.module.ts +117 -0
  62. package/templates/apps/microservices/upload/src/app/storage.controller.ts +51 -0
  63. package/templates/apps/microservices/upload/src/assets/.gitkeep +0 -0
  64. package/templates/apps/microservices/upload/src/main.ts +28 -0
  65. package/templates/apps/microservices/upload/tsconfig.app.json +13 -0
  66. package/templates/apps/microservices/upload/tsconfig.json +16 -0
  67. package/templates/apps/microservices/upload/tsconfig.spec.json +16 -0
  68. package/templates/apps/microservices/upload/vitest.config.mts +22 -0
  69. package/templates/apps/microservices/upload/webpack.config.js +25 -0
  70. package/templates/apps/templates/client-shadcn/.env.example +2 -0
  71. package/templates/apps/templates/client-shadcn/eslint.config.mjs +10 -0
  72. package/templates/apps/templates/client-shadcn/index.html +17 -0
  73. package/templates/apps/templates/client-shadcn/project.json +9 -0
  74. package/templates/apps/templates/client-shadcn/public/favicon.ico +0 -0
  75. package/templates/apps/templates/client-shadcn/src/app/app.module.css +1 -0
  76. package/templates/apps/templates/client-shadcn/src/app/app.spec.tsx +9 -0
  77. package/templates/apps/templates/client-shadcn/src/app/app.tsx +7 -0
  78. package/templates/apps/templates/client-shadcn/src/assets/.gitkeep +0 -0
  79. package/templates/apps/templates/client-shadcn/src/components/AccessDeniedPage.tsx +15 -0
  80. package/templates/apps/templates/client-shadcn/src/components/PageLayout.tsx +55 -0
  81. package/templates/apps/templates/client-shadcn/src/components/layout/LayoutFooter.tsx +8 -0
  82. package/templates/apps/templates/client-shadcn/src/components/layout/LayoutHeader.tsx +57 -0
  83. package/templates/apps/templates/client-shadcn/src/components/layout/LayoutSider.tsx +44 -0
  84. package/templates/apps/templates/client-shadcn/src/components/ui/button.tsx +50 -0
  85. package/templates/apps/templates/client-shadcn/src/components/ui/card.tsx +63 -0
  86. package/templates/apps/templates/client-shadcn/src/components/ui/input.tsx +23 -0
  87. package/templates/apps/templates/client-shadcn/src/components/ui/label.tsx +18 -0
  88. package/templates/apps/templates/client-shadcn/src/globals.css +27 -0
  89. package/templates/apps/templates/client-shadcn/src/layouts/MainLayout.tsx +17 -0
  90. package/templates/apps/templates/client-shadcn/src/lib/notify.ts +15 -0
  91. package/templates/apps/templates/client-shadcn/src/lib/utils.ts +6 -0
  92. package/templates/apps/templates/client-shadcn/src/main.tsx +50 -0
  93. package/templates/apps/templates/client-shadcn/src/routeTree.gen.ts +136 -0
  94. package/templates/apps/templates/client-shadcn/src/routes/__root.tsx +5 -0
  95. package/templates/apps/templates/client-shadcn/src/routes/_dashboard/dashboard.tsx +33 -0
  96. package/templates/apps/templates/client-shadcn/src/routes/_dashboard/profile.tsx +88 -0
  97. package/templates/apps/templates/client-shadcn/src/routes/_dashboard.tsx +16 -0
  98. package/templates/apps/templates/client-shadcn/src/routes/index.tsx +33 -0
  99. package/templates/apps/templates/client-shadcn/src/routes/login.tsx +93 -0
  100. package/templates/apps/templates/client-shadcn/src/styles.css +1 -0
  101. package/templates/apps/templates/client-shadcn/tsconfig.app.json +27 -0
  102. package/templates/apps/templates/client-shadcn/tsconfig.json +21 -0
  103. package/templates/apps/templates/client-shadcn/tsconfig.spec.json +30 -0
  104. package/templates/apps/templates/client-shadcn/vite.config.mts +92 -0
  105. package/templates/apps/templates/client-shadcn-e2e/eslint.config.mjs +12 -0
  106. package/templates/apps/templates/client-shadcn-e2e/playwright.config.ts +69 -0
  107. package/templates/apps/templates/client-shadcn-e2e/project.json +10 -0
  108. package/templates/apps/templates/client-shadcn-e2e/src/icore.spec.ts +27 -0
  109. package/templates/apps/templates/client-shadcn-e2e/tsconfig.json +19 -0
  110. package/templates/eslint.config.mjs +20 -0
  111. package/templates/libs/auth-client/README.md +11 -0
  112. package/templates/libs/auth-client/eslint.config.mjs +22 -0
  113. package/templates/libs/auth-client/package.json +15 -0
  114. package/templates/libs/auth-client/project.json +19 -0
  115. package/templates/libs/auth-client/src/index.ts +2 -0
  116. package/templates/libs/auth-client/src/lib/auth-client.module.ts +25 -0
  117. package/templates/libs/auth-client/src/lib/auth-client.service.ts +30 -0
  118. package/templates/libs/auth-client/tsconfig.json +24 -0
  119. package/templates/libs/auth-client/tsconfig.lib.json +26 -0
  120. package/templates/libs/auth-client/tsconfig.spec.json +22 -0
  121. package/templates/libs/auth-client/vitest.config.mts +22 -0
  122. package/templates/libs/auth-strategies/firebase/README.md +11 -0
  123. package/templates/libs/auth-strategies/firebase/eslint.config.mjs +22 -0
  124. package/templates/libs/auth-strategies/firebase/package.json +15 -0
  125. package/templates/libs/auth-strategies/firebase/project.json +19 -0
  126. package/templates/libs/auth-strategies/firebase/src/index.ts +4 -0
  127. package/templates/libs/auth-strategies/firebase/src/lib/__tests__/firebase-auth.contract.unit.test.ts +13 -0
  128. package/templates/libs/auth-strategies/firebase/src/lib/firebase-auth.strategy.ts +77 -0
  129. package/templates/libs/auth-strategies/firebase/src/lib/identity-toolkit.client.ts +72 -0
  130. package/templates/libs/auth-strategies/firebase/src/lib/testing/mock-admin-auth.ts +41 -0
  131. package/templates/libs/auth-strategies/firebase/src/lib/testing/mock-identity-toolkit.ts +76 -0
  132. package/templates/libs/auth-strategies/firebase/tsconfig.json +24 -0
  133. package/templates/libs/auth-strategies/firebase/tsconfig.lib.json +23 -0
  134. package/templates/libs/auth-strategies/firebase/tsconfig.spec.json +22 -0
  135. package/templates/libs/auth-strategies/firebase/vitest.config.mts +22 -0
  136. package/templates/libs/auth-strategies/supabase/README.md +11 -0
  137. package/templates/libs/auth-strategies/supabase/eslint.config.mjs +22 -0
  138. package/templates/libs/auth-strategies/supabase/package.json +16 -0
  139. package/templates/libs/auth-strategies/supabase/project.json +19 -0
  140. package/templates/libs/auth-strategies/supabase/src/index.ts +2 -0
  141. package/templates/libs/auth-strategies/supabase/src/lib/__tests__/supabase-auth.contract.unit.test.ts +8 -0
  142. package/templates/libs/auth-strategies/supabase/src/lib/supabase-auth.strategy.ts +79 -0
  143. package/templates/libs/auth-strategies/supabase/src/lib/testing/mock-supabase.ts +107 -0
  144. package/templates/libs/auth-strategies/supabase/tsconfig.json +24 -0
  145. package/templates/libs/auth-strategies/supabase/tsconfig.lib.json +23 -0
  146. package/templates/libs/auth-strategies/supabase/tsconfig.spec.json +22 -0
  147. package/templates/libs/auth-strategies/supabase/vitest.config.mts +22 -0
  148. package/templates/libs/shared/README.md +11 -0
  149. package/templates/libs/shared/eslint.config.mjs +24 -0
  150. package/templates/libs/shared/package.json +14 -0
  151. package/templates/libs/shared/project.json +19 -0
  152. package/templates/libs/shared/src/__tests__/transport.unit.test.ts +58 -0
  153. package/templates/libs/shared/src/abilities/__tests__/ability.unit.test.ts +28 -0
  154. package/templates/libs/shared/src/abilities/ability.ts +21 -0
  155. package/templates/libs/shared/src/abilities/index.ts +2 -0
  156. package/templates/libs/shared/src/abilities/subjects.ts +2 -0
  157. package/templates/libs/shared/src/index.ts +3 -0
  158. package/templates/libs/shared/src/strategies/__tests__/fake-auth.contract.unit.test.ts +4 -0
  159. package/templates/libs/shared/src/strategies/__tests__/fake-storage.contract.unit.test.ts +4 -0
  160. package/templates/libs/shared/src/strategies/auth.ts +21 -0
  161. package/templates/libs/shared/src/strategies/contract/auth-contract.ts +66 -0
  162. package/templates/libs/shared/src/strategies/contract/storage-contract.ts +58 -0
  163. package/templates/libs/shared/src/strategies/fakes/fake-auth.ts +73 -0
  164. package/templates/libs/shared/src/strategies/fakes/fake-storage.ts +51 -0
  165. package/templates/libs/shared/src/strategies/fakes/index.ts +2 -0
  166. package/templates/libs/shared/src/strategies/index.ts +5 -0
  167. package/templates/libs/shared/src/strategies/storage.ts +17 -0
  168. package/templates/libs/shared/src/transport.ts +55 -0
  169. package/templates/libs/shared/tsconfig.json +24 -0
  170. package/templates/libs/shared/tsconfig.lib.json +23 -0
  171. package/templates/libs/shared/tsconfig.spec.json +22 -0
  172. package/templates/libs/shared/vitest.config.mts +21 -0
  173. package/templates/libs/storage-strategies/cloudinary/README.md +11 -0
  174. package/templates/libs/storage-strategies/cloudinary/eslint.config.mjs +23 -0
  175. package/templates/libs/storage-strategies/cloudinary/package.json +15 -0
  176. package/templates/libs/storage-strategies/cloudinary/project.json +19 -0
  177. package/templates/libs/storage-strategies/cloudinary/src/index.ts +2 -0
  178. package/templates/libs/storage-strategies/cloudinary/src/lib/__tests__/cloudinary-storage.contract.unit.test.ts +8 -0
  179. package/templates/libs/storage-strategies/cloudinary/src/lib/cloudinary-storage.strategy.ts +75 -0
  180. package/templates/libs/storage-strategies/cloudinary/src/lib/testing/mock-cloudinary.ts +36 -0
  181. package/templates/libs/storage-strategies/cloudinary/tsconfig.json +24 -0
  182. package/templates/libs/storage-strategies/cloudinary/tsconfig.lib.json +23 -0
  183. package/templates/libs/storage-strategies/cloudinary/tsconfig.spec.json +22 -0
  184. package/templates/libs/storage-strategies/cloudinary/vitest.config.mts +22 -0
  185. package/templates/libs/storage-strategies/firebase/README.md +11 -0
  186. package/templates/libs/storage-strategies/firebase/eslint.config.mjs +23 -0
  187. package/templates/libs/storage-strategies/firebase/package.json +15 -0
  188. package/templates/libs/storage-strategies/firebase/project.json +19 -0
  189. package/templates/libs/storage-strategies/firebase/src/index.ts +2 -0
  190. package/templates/libs/storage-strategies/firebase/src/lib/__tests__/firebase-storage.contract.unit.test.ts +8 -0
  191. package/templates/libs/storage-strategies/firebase/src/lib/firebase-storage.strategy.ts +63 -0
  192. package/templates/libs/storage-strategies/firebase/src/lib/testing/mock-firebase-storage.ts +43 -0
  193. package/templates/libs/storage-strategies/firebase/tsconfig.json +24 -0
  194. package/templates/libs/storage-strategies/firebase/tsconfig.lib.json +23 -0
  195. package/templates/libs/storage-strategies/firebase/tsconfig.spec.json +22 -0
  196. package/templates/libs/storage-strategies/firebase/vitest.config.mts +22 -0
  197. package/templates/libs/storage-strategies/supabase/README.md +11 -0
  198. package/templates/libs/storage-strategies/supabase/eslint.config.mjs +22 -0
  199. package/templates/libs/storage-strategies/supabase/package.json +16 -0
  200. package/templates/libs/storage-strategies/supabase/project.json +19 -0
  201. package/templates/libs/storage-strategies/supabase/src/index.ts +2 -0
  202. package/templates/libs/storage-strategies/supabase/src/lib/__tests__/supabase-storage.contract.unit.test.ts +8 -0
  203. package/templates/libs/storage-strategies/supabase/src/lib/supabase-storage.strategy.ts +53 -0
  204. package/templates/libs/storage-strategies/supabase/src/lib/testing/mock-supabase-storage.ts +78 -0
  205. package/templates/libs/storage-strategies/supabase/tsconfig.json +24 -0
  206. package/templates/libs/storage-strategies/supabase/tsconfig.lib.json +23 -0
  207. package/templates/libs/storage-strategies/supabase/tsconfig.spec.json +22 -0
  208. package/templates/libs/storage-strategies/supabase/vitest.config.mts +22 -0
  209. package/templates/libs/template-shared/README.md +11 -0
  210. package/templates/libs/template-shared/eslint.config.mjs +23 -0
  211. package/templates/libs/template-shared/package.json +22 -0
  212. package/templates/libs/template-shared/project.json +19 -0
  213. package/templates/libs/template-shared/src/index.ts +9 -0
  214. package/templates/libs/template-shared/src/lib/abilities/ability-provider.tsx +19 -0
  215. package/templates/libs/template-shared/src/lib/api/create-api.ts +20 -0
  216. package/templates/libs/template-shared/src/lib/draft/index.ts +1 -0
  217. package/templates/libs/template-shared/src/lib/i18n/create-i18n.ts +42 -0
  218. package/templates/libs/template-shared/src/lib/i18n/keys.ts +30 -0
  219. package/templates/libs/template-shared/src/lib/landing/LandingPage.tsx +68 -0
  220. package/templates/libs/template-shared/src/lib/notify/use-notify.ts +26 -0
  221. package/templates/libs/template-shared/src/lib/stores/auth.store.ts +29 -0
  222. package/templates/libs/template-shared/src/lib/stores/loading.store.ts +13 -0
  223. package/templates/libs/template-shared/tsconfig.json +24 -0
  224. package/templates/libs/template-shared/tsconfig.lib.json +25 -0
  225. package/templates/libs/template-shared/tsconfig.spec.json +22 -0
  226. package/templates/libs/template-shared/vitest.config.mts +22 -0
  227. package/templates/libs/upload-client/README.md +11 -0
  228. package/templates/libs/upload-client/eslint.config.mjs +22 -0
  229. package/templates/libs/upload-client/package.json +15 -0
  230. package/templates/libs/upload-client/project.json +19 -0
  231. package/templates/libs/upload-client/src/index.ts +2 -0
  232. package/templates/libs/upload-client/src/lib/upload-client.module.ts +25 -0
  233. package/templates/libs/upload-client/src/lib/upload-client.service.ts +38 -0
  234. package/templates/libs/upload-client/tsconfig.json +24 -0
  235. package/templates/libs/upload-client/tsconfig.lib.json +26 -0
  236. package/templates/libs/upload-client/tsconfig.spec.json +22 -0
  237. package/templates/libs/upload-client/vitest.config.mts +22 -0
  238. package/templates/nx.json +113 -0
  239. package/templates/package.json +24 -0
  240. package/templates/tools/create-icore/_template-shell/package.json +24 -0
  241. package/templates/tsconfig.base.json +29 -0
@@ -0,0 +1,23 @@
1
+ import baseConfig from '../../../eslint.config.mjs';
2
+
3
+ export default [
4
+ ...baseConfig,
5
+ {
6
+ files: ['**/*.json'],
7
+ rules: {
8
+ '@nx/dependency-checks': [
9
+ 'error',
10
+ {
11
+ ignoredFiles: [
12
+ '{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}',
13
+ '{projectRoot}/vitest.config.{js,ts,mjs,mts}',
14
+ ],
15
+ ignoredDependencies: ['@icore/shared'],
16
+ },
17
+ ],
18
+ },
19
+ languageOptions: {
20
+ parser: await import('jsonc-eslint-parser'),
21
+ },
22
+ },
23
+ ];
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@icore/storage-firebase",
3
+ "version": "0.0.1",
4
+ "private": true,
5
+ "type": "commonjs",
6
+ "main": "./src/index.js",
7
+ "types": "./src/index.d.ts",
8
+ "dependencies": {
9
+ "@icore/shared": "*",
10
+ "tslib": "^2.3.0"
11
+ },
12
+ "devDependencies": {
13
+ "vitest": "^4.0.0"
14
+ }
15
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "storage-firebase",
3
+ "$schema": "../../../node_modules/nx/schemas/project-schema.json",
4
+ "sourceRoot": "libs/storage-strategies/firebase/src",
5
+ "projectType": "library",
6
+ "tags": [],
7
+ "targets": {
8
+ "build": {
9
+ "executor": "@nx/js:tsc",
10
+ "outputs": ["{options.outputPath}"],
11
+ "options": {
12
+ "outputPath": "dist/libs/storage-strategies/firebase",
13
+ "main": "libs/storage-strategies/firebase/src/index.ts",
14
+ "tsConfig": "libs/storage-strategies/firebase/tsconfig.lib.json",
15
+ "assets": ["libs/storage-strategies/firebase/*.md"]
16
+ }
17
+ }
18
+ }
19
+ }
@@ -0,0 +1,2 @@
1
+ export * from './lib/firebase-storage.strategy.js';
2
+ export * from './lib/testing/mock-firebase-storage.js';
@@ -0,0 +1,8 @@
1
+ import { runStorageContract } from '@icore/shared';
2
+ import { FirebaseStorageStrategy } from '../firebase-storage.strategy.js';
3
+ import { createMockFirebaseBucket } from '../testing/mock-firebase-storage.js';
4
+
5
+ runStorageContract('FirebaseStorageStrategy', () => {
6
+ const bucket = createMockFirebaseBucket('icore-uploads');
7
+ return new FirebaseStorageStrategy({ bucket });
8
+ });
@@ -0,0 +1,63 @@
1
+ import { randomUUID } from 'node:crypto';
2
+ import type { FileInput, StorageRef, StorageStrategy } from '@icore/shared';
3
+
4
+ // Narrowed surfaces of firebase-admin's storage Bucket + File. The upload MS
5
+ // wires the real admin.storage().bucket(name); we only need these methods.
6
+
7
+ export interface FirebaseStorageFileLike {
8
+ save(body: Buffer, opts?: { metadata?: { contentType?: string } }): Promise<void>;
9
+ delete(): Promise<void>;
10
+ getSignedUrl(opts: { action?: 'read'; expires: number }): Promise<[string]>;
11
+ }
12
+
13
+ export interface FirebaseStorageBucketLike {
14
+ name: string;
15
+ file(path: string): FirebaseStorageFileLike;
16
+ getFiles(opts?: { prefix?: string }): Promise<[Array<{ name: string }>]>;
17
+ }
18
+
19
+ export interface FirebaseStorageStrategyOptions {
20
+ bucket: FirebaseStorageBucketLike;
21
+ }
22
+
23
+ export class FirebaseStorageStrategy implements StorageStrategy {
24
+ private readonly bucket: FirebaseStorageBucketLike;
25
+
26
+ constructor(opts: FirebaseStorageStrategyOptions) {
27
+ this.bucket = opts.bucket;
28
+ }
29
+
30
+ async upload(userId: string, file: FileInput): Promise<StorageRef> {
31
+ const path = `${userId}/${randomUUID()}-${file.filename}`;
32
+ await this.bucket.file(path).save(file.buffer, {
33
+ metadata: { contentType: file.mimeType },
34
+ });
35
+ return { bucket: this.bucket.name, path };
36
+ }
37
+
38
+ async remove(userId: string, ref: StorageRef): Promise<void> {
39
+ this.assertOwner(userId, ref);
40
+ await this.bucket.file(ref.path).delete();
41
+ }
42
+
43
+ async getSignedUrl(userId: string, ref: StorageRef, ttlSec = 900): Promise<string> {
44
+ this.assertOwner(userId, ref);
45
+ const [url] = await this.bucket.file(ref.path).getSignedUrl({
46
+ action: 'read',
47
+ expires: Date.now() + ttlSec * 1000,
48
+ });
49
+ return url;
50
+ }
51
+
52
+ async list(userId: string, prefix?: string): Promise<StorageRef[]> {
53
+ const folder = prefix ? `${userId}/${prefix}` : userId;
54
+ const [files] = await this.bucket.getFiles({ prefix: `${folder}/` });
55
+ return files
56
+ .filter((f) => f.name !== folder + '/')
57
+ .map((f) => ({ bucket: this.bucket.name, path: f.name }));
58
+ }
59
+
60
+ private assertOwner(userId: string, ref: StorageRef): void {
61
+ if (!ref.path.startsWith(`${userId}/`)) throw new Error('forbidden');
62
+ }
63
+ }
@@ -0,0 +1,43 @@
1
+ import type {
2
+ FirebaseStorageBucketLike,
3
+ FirebaseStorageFileLike,
4
+ } from '../firebase-storage.strategy.js';
5
+
6
+ interface StoredObject {
7
+ bytes: Buffer;
8
+ contentType: string;
9
+ }
10
+
11
+ export function createMockFirebaseBucket(name = 'icore-uploads'): FirebaseStorageBucketLike {
12
+ const objects = new Map<string, StoredObject>();
13
+
14
+ function fileHandle(path: string): FirebaseStorageFileLike {
15
+ return {
16
+ async save(body, opts) {
17
+ objects.set(path, {
18
+ bytes: Buffer.from(body),
19
+ contentType: opts?.metadata?.contentType ?? 'application/octet-stream',
20
+ });
21
+ },
22
+ async delete() {
23
+ if (!objects.has(path)) throw new Error('not_found');
24
+ objects.delete(path);
25
+ },
26
+ async getSignedUrl(opts) {
27
+ if (!objects.has(path)) throw new Error('not_found');
28
+ return [`https://mock.firebasestorage/${name}/${path}?ttl=${opts.expires}`];
29
+ },
30
+ };
31
+ }
32
+
33
+ return {
34
+ name,
35
+ file: (path: string) => fileHandle(path),
36
+ async getFiles(opts) {
37
+ const matches = [...objects.keys()].filter((p) =>
38
+ opts?.prefix ? p.startsWith(opts.prefix) : true,
39
+ );
40
+ return [matches.map((p) => ({ name: p }))];
41
+ },
42
+ };
43
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "extends": "../../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "module": "node16",
5
+ "moduleResolution": "node16",
6
+ "forceConsistentCasingInFileNames": true,
7
+ "strict": true,
8
+ "importHelpers": true,
9
+ "noImplicitOverride": true,
10
+ "noImplicitReturns": true,
11
+ "noFallthroughCasesInSwitch": true,
12
+ "noPropertyAccessFromIndexSignature": true
13
+ },
14
+ "files": [],
15
+ "include": [],
16
+ "references": [
17
+ {
18
+ "path": "./tsconfig.lib.json"
19
+ },
20
+ {
21
+ "path": "./tsconfig.spec.json"
22
+ }
23
+ ]
24
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../../dist/out-tsc",
5
+ "declaration": true,
6
+ "types": ["node"]
7
+ },
8
+ "include": ["src/**/*.ts"],
9
+ "exclude": [
10
+ "vite.config.ts",
11
+ "vite.config.mts",
12
+ "vitest.config.ts",
13
+ "vitest.config.mts",
14
+ "src/**/*.test.ts",
15
+ "src/**/*.spec.ts",
16
+ "src/**/*.test.tsx",
17
+ "src/**/*.spec.tsx",
18
+ "src/**/*.test.js",
19
+ "src/**/*.spec.js",
20
+ "src/**/*.test.jsx",
21
+ "src/**/*.spec.jsx"
22
+ ]
23
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../../dist/out-tsc",
5
+ "types": ["vitest/globals", "vitest/importMeta", "vite/client", "node", "vitest"]
6
+ },
7
+ "include": [
8
+ "vite.config.ts",
9
+ "vite.config.mts",
10
+ "vitest.config.ts",
11
+ "vitest.config.mts",
12
+ "src/**/*.test.ts",
13
+ "src/**/*.spec.ts",
14
+ "src/**/*.test.tsx",
15
+ "src/**/*.spec.tsx",
16
+ "src/**/*.test.js",
17
+ "src/**/*.spec.js",
18
+ "src/**/*.test.jsx",
19
+ "src/**/*.spec.jsx",
20
+ "src/**/*.d.ts"
21
+ ]
22
+ }
@@ -0,0 +1,22 @@
1
+ import { defineConfig } from 'vitest/config';
2
+ import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
3
+ import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin';
4
+
5
+ export default defineConfig(() => ({
6
+ root: __dirname,
7
+ cacheDir: '../../../node_modules/.vite/libs/storage-strategies/firebase',
8
+ plugins: [nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])],
9
+ test: {
10
+ name: 'storage-firebase',
11
+ watch: false,
12
+ globals: true,
13
+ environment: 'node',
14
+ include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
15
+ passWithNoTests: true,
16
+ reporters: ['default'],
17
+ coverage: {
18
+ reportsDirectory: '../../../coverage/libs/storage-strategies/firebase',
19
+ provider: 'v8' as const,
20
+ },
21
+ },
22
+ }));
@@ -0,0 +1,11 @@
1
+ # storage-supabase
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Building
6
+
7
+ Run `nx build storage-supabase` to build the library.
8
+
9
+ ## Running unit tests
10
+
11
+ Run `nx test storage-supabase` to execute the unit tests via [Vitest](https://vitest.dev/).
@@ -0,0 +1,22 @@
1
+ import baseConfig from '../../../eslint.config.mjs';
2
+
3
+ export default [
4
+ ...baseConfig,
5
+ {
6
+ files: ['**/*.json'],
7
+ rules: {
8
+ '@nx/dependency-checks': [
9
+ 'error',
10
+ {
11
+ ignoredFiles: [
12
+ '{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}',
13
+ '{projectRoot}/vitest.config.{js,ts,mjs,mts}',
14
+ ],
15
+ },
16
+ ],
17
+ },
18
+ languageOptions: {
19
+ parser: await import('jsonc-eslint-parser'),
20
+ },
21
+ },
22
+ ];
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@icore/storage-supabase",
3
+ "version": "0.0.1",
4
+ "private": true,
5
+ "type": "commonjs",
6
+ "main": "./src/index.js",
7
+ "types": "./src/index.d.ts",
8
+ "dependencies": {
9
+ "@icore/shared": "*",
10
+ "@supabase/supabase-js": "^2.0.0",
11
+ "tslib": "^2.3.0"
12
+ },
13
+ "devDependencies": {
14
+ "vitest": "^4.0.0"
15
+ }
16
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "storage-supabase",
3
+ "$schema": "../../../node_modules/nx/schemas/project-schema.json",
4
+ "sourceRoot": "libs/storage-strategies/supabase/src",
5
+ "projectType": "library",
6
+ "tags": [],
7
+ "targets": {
8
+ "build": {
9
+ "executor": "@nx/js:tsc",
10
+ "outputs": ["{options.outputPath}"],
11
+ "options": {
12
+ "outputPath": "dist/libs/storage-strategies/supabase",
13
+ "main": "libs/storage-strategies/supabase/src/index.ts",
14
+ "tsConfig": "libs/storage-strategies/supabase/tsconfig.lib.json",
15
+ "assets": ["libs/storage-strategies/supabase/*.md"]
16
+ }
17
+ }
18
+ }
19
+ }
@@ -0,0 +1,2 @@
1
+ export * from './lib/supabase-storage.strategy';
2
+ export * from './lib/testing/mock-supabase-storage';
@@ -0,0 +1,8 @@
1
+ import { runStorageContract } from '@icore/shared';
2
+ import { SupabaseStorageStrategy } from '../supabase-storage.strategy';
3
+ import { createMockSupabaseStorageClient } from '../testing/mock-supabase-storage';
4
+
5
+ runStorageContract('SupabaseStorageStrategy', () => {
6
+ const client = createMockSupabaseStorageClient('icore-uploads');
7
+ return new SupabaseStorageStrategy({ client, bucket: 'icore-uploads' });
8
+ });
@@ -0,0 +1,53 @@
1
+ import { randomUUID } from 'node:crypto';
2
+ import type { SupabaseClient } from '@supabase/supabase-js';
3
+ import type { FileInput, StorageRef, StorageStrategy } from '@icore/shared';
4
+
5
+ export interface SupabaseStorageStrategyOptions {
6
+ client: SupabaseClient;
7
+ bucket: string;
8
+ }
9
+
10
+ export class SupabaseStorageStrategy implements StorageStrategy {
11
+ private readonly client: SupabaseClient;
12
+ private readonly bucket: string;
13
+
14
+ constructor(opts: SupabaseStorageStrategyOptions) {
15
+ this.client = opts.client;
16
+ this.bucket = opts.bucket;
17
+ }
18
+
19
+ async upload(userId: string, file: FileInput): Promise<StorageRef> {
20
+ const path = `${userId}/${randomUUID()}-${file.filename}`;
21
+ const { error } = await this.client.storage
22
+ .from(this.bucket)
23
+ .upload(path, file.buffer, { contentType: file.mimeType });
24
+ if (error) throw new Error(error.message);
25
+ return { bucket: this.bucket, path };
26
+ }
27
+
28
+ async remove(userId: string, ref: StorageRef): Promise<void> {
29
+ this.assertOwner(userId, ref);
30
+ const { error } = await this.client.storage.from(ref.bucket).remove([ref.path]);
31
+ if (error) throw new Error(error.message);
32
+ }
33
+
34
+ async getSignedUrl(userId: string, ref: StorageRef, ttlSec = 900): Promise<string> {
35
+ this.assertOwner(userId, ref);
36
+ const { data, error } = await this.client.storage
37
+ .from(ref.bucket)
38
+ .createSignedUrl(ref.path, ttlSec);
39
+ if (error || !data) throw new Error(error?.message ?? 'signed_url_failed');
40
+ return data.signedUrl;
41
+ }
42
+
43
+ async list(userId: string, prefix?: string): Promise<StorageRef[]> {
44
+ const folder = prefix ? `${userId}/${prefix}` : userId;
45
+ const { data, error } = await this.client.storage.from(this.bucket).list(folder);
46
+ if (error || !data) return [];
47
+ return data.map((row) => ({ bucket: this.bucket, path: `${folder}/${row.name}` }));
48
+ }
49
+
50
+ private assertOwner(userId: string, ref: StorageRef): void {
51
+ if (!ref.path.startsWith(`${userId}/`)) throw new Error('forbidden');
52
+ }
53
+ }
@@ -0,0 +1,78 @@
1
+ import type { SupabaseClient } from '@supabase/supabase-js';
2
+
3
+ interface StoredObject {
4
+ bytes: Buffer;
5
+ mimeType: string;
6
+ }
7
+
8
+ interface MockBucketHandle {
9
+ upload(
10
+ path: string,
11
+ body: Buffer,
12
+ opts?: { contentType?: string },
13
+ ): Promise<{ data: { path: string } | null; error: { message: string } | null }>;
14
+ remove(paths: string[]): Promise<{ data: unknown; error: { message: string } | null }>;
15
+ createSignedUrl(
16
+ path: string,
17
+ ttlSec: number,
18
+ ): Promise<{ data: { signedUrl: string } | null; error: { message: string } | null }>;
19
+ list(
20
+ prefix?: string,
21
+ ): Promise<{ data: Array<{ name: string }> | null; error: { message: string } | null }>;
22
+ }
23
+
24
+ export function createMockSupabaseStorageClient(bucket = 'icore-uploads'): SupabaseClient {
25
+ const objects = new Map<string, StoredObject>();
26
+
27
+ function bucketHandle(name: string): MockBucketHandle {
28
+ if (name !== bucket) {
29
+ return {
30
+ async upload() {
31
+ return { data: null, error: { message: `unknown_bucket:${name}` } };
32
+ },
33
+ async remove() {
34
+ return { data: null, error: { message: `unknown_bucket:${name}` } };
35
+ },
36
+ async createSignedUrl() {
37
+ return { data: null, error: { message: `unknown_bucket:${name}` } };
38
+ },
39
+ async list() {
40
+ return { data: null, error: { message: `unknown_bucket:${name}` } };
41
+ },
42
+ };
43
+ }
44
+ return {
45
+ async upload(path, body, opts) {
46
+ if (objects.has(path)) return { data: null, error: { message: 'duplicate' } };
47
+ objects.set(path, {
48
+ bytes: body,
49
+ mimeType: opts?.contentType ?? 'application/octet-stream',
50
+ });
51
+ return { data: { path }, error: null };
52
+ },
53
+ async remove(paths) {
54
+ for (const p of paths) objects.delete(p);
55
+ return { data: null, error: null };
56
+ },
57
+ async createSignedUrl(path, ttlSec) {
58
+ if (!objects.has(path)) return { data: null, error: { message: 'not_found' } };
59
+ return {
60
+ data: { signedUrl: `https://mock.supabase/${path}?ttl=${ttlSec}` },
61
+ error: null,
62
+ };
63
+ },
64
+ async list(prefix) {
65
+ const matches = [...objects.keys()]
66
+ .filter((p) => (prefix ? p.startsWith(prefix) : true))
67
+ .map((name) => ({ name: name.split('/').pop() ?? name }));
68
+ return { data: matches, error: null };
69
+ },
70
+ };
71
+ }
72
+
73
+ const storage = {
74
+ from: (name: string) => bucketHandle(name),
75
+ };
76
+
77
+ return { storage } as unknown as SupabaseClient;
78
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "extends": "../../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "module": "node16",
5
+ "moduleResolution": "node16",
6
+ "forceConsistentCasingInFileNames": true,
7
+ "strict": true,
8
+ "importHelpers": true,
9
+ "noImplicitOverride": true,
10
+ "noImplicitReturns": true,
11
+ "noFallthroughCasesInSwitch": true,
12
+ "noPropertyAccessFromIndexSignature": true
13
+ },
14
+ "files": [],
15
+ "include": [],
16
+ "references": [
17
+ {
18
+ "path": "./tsconfig.lib.json"
19
+ },
20
+ {
21
+ "path": "./tsconfig.spec.json"
22
+ }
23
+ ]
24
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../../dist/out-tsc",
5
+ "declaration": true,
6
+ "types": ["node"]
7
+ },
8
+ "include": ["src/**/*.ts"],
9
+ "exclude": [
10
+ "vite.config.ts",
11
+ "vite.config.mts",
12
+ "vitest.config.ts",
13
+ "vitest.config.mts",
14
+ "src/**/*.test.ts",
15
+ "src/**/*.spec.ts",
16
+ "src/**/*.test.tsx",
17
+ "src/**/*.spec.tsx",
18
+ "src/**/*.test.js",
19
+ "src/**/*.spec.js",
20
+ "src/**/*.test.jsx",
21
+ "src/**/*.spec.jsx"
22
+ ]
23
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../../dist/out-tsc",
5
+ "types": ["vitest/globals", "vitest/importMeta", "vite/client", "node", "vitest"]
6
+ },
7
+ "include": [
8
+ "vite.config.ts",
9
+ "vite.config.mts",
10
+ "vitest.config.ts",
11
+ "vitest.config.mts",
12
+ "src/**/*.test.ts",
13
+ "src/**/*.spec.ts",
14
+ "src/**/*.test.tsx",
15
+ "src/**/*.spec.tsx",
16
+ "src/**/*.test.js",
17
+ "src/**/*.spec.js",
18
+ "src/**/*.test.jsx",
19
+ "src/**/*.spec.jsx",
20
+ "src/**/*.d.ts"
21
+ ]
22
+ }
@@ -0,0 +1,22 @@
1
+ import { defineConfig } from 'vitest/config';
2
+ import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
3
+ import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin';
4
+
5
+ export default defineConfig(() => ({
6
+ root: __dirname,
7
+ cacheDir: '../../../node_modules/.vite/libs/storage-strategies/supabase',
8
+ plugins: [nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])],
9
+ test: {
10
+ name: 'storage-supabase',
11
+ watch: false,
12
+ globals: true,
13
+ environment: 'node',
14
+ include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
15
+ passWithNoTests: true,
16
+ reporters: ['default'],
17
+ coverage: {
18
+ reportsDirectory: '../../../coverage/libs/storage-strategies/supabase',
19
+ provider: 'v8' as const,
20
+ },
21
+ },
22
+ }));
@@ -0,0 +1,11 @@
1
+ # template-shared
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Building
6
+
7
+ Run `nx build template-shared` to build the library.
8
+
9
+ ## Running unit tests
10
+
11
+ Run `nx test template-shared` to execute the unit tests via [Vitest](https://vitest.dev/).
@@ -0,0 +1,23 @@
1
+ import baseConfig from '../../eslint.config.mjs';
2
+
3
+ export default [
4
+ ...baseConfig,
5
+ {
6
+ files: ['**/*.json'],
7
+ rules: {
8
+ '@nx/dependency-checks': [
9
+ 'error',
10
+ {
11
+ ignoredFiles: [
12
+ '{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}',
13
+ '{projectRoot}/vitest.config.{js,ts,mjs,mts}',
14
+ ],
15
+ ignoredDependencies: ['react', 'react-dom'],
16
+ },
17
+ ],
18
+ },
19
+ languageOptions: {
20
+ parser: await import('jsonc-eslint-parser'),
21
+ },
22
+ },
23
+ ];
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@icore/template-shared",
3
+ "version": "0.0.1",
4
+ "private": true,
5
+ "type": "module",
6
+ "main": "./src/index.js",
7
+ "types": "./src/index.d.ts",
8
+ "dependencies": {
9
+ "@casl/react": "^7.0.0",
10
+ "@icore/shared": "*",
11
+ "@idevconn/api-client": "*",
12
+ "@idevconn/use-draft": "*",
13
+ "i18next": "^26.0.0",
14
+ "react-i18next": "^17.0.0",
15
+ "tslib": "^2.3.0",
16
+ "zustand": "^5.0.0"
17
+ },
18
+ "peerDependencies": {
19
+ "react": "^19.0.0",
20
+ "react-dom": "^19.0.0"
21
+ }
22
+ }