@jrmc/adonis-attachment 6.0.0-alpha.0 → 6.0.0-alpha.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.
- package/build/commands/make/attachment_v5_migration.d.ts.map +1 -1
- package/build/commands/make/attachment_v5_migration.js +6 -3
- package/build/commands/make/attachment_v5_migration.js.map +1 -1
- package/build/commands/make/attachments_table.d.ts.map +1 -1
- package/build/commands/make/attachments_table.js +8 -2
- package/build/commands/make/attachments_table.js.map +1 -1
- package/build/index.d.ts +23 -22
- package/build/index.d.ts.map +1 -1
- package/build/index.js +15 -14
- package/build/index.js.map +1 -1
- package/build/providers/attachment_provider.d.ts.map +1 -1
- package/build/providers/attachment_provider.js +16 -0
- package/build/providers/attachment_provider.js.map +1 -1
- package/build/src/core/attachment.d.ts +37 -2
- package/build/src/core/attachment.d.ts.map +1 -1
- package/build/src/core/attachment.js +108 -5
- package/build/src/core/attachment.js.map +1 -1
- package/build/src/core/attachment_options.d.ts +32 -0
- package/build/src/core/attachment_options.d.ts.map +1 -0
- package/build/src/core/attachment_options.js +24 -0
- package/build/src/core/attachment_options.js.map +1 -0
- package/build/src/core/attachment_service.d.ts +7 -1
- package/build/src/core/attachment_service.d.ts.map +1 -1
- package/build/src/core/attachment_service.js +50 -4
- package/build/src/core/attachment_service.js.map +1 -1
- package/build/src/core/index.d.ts +2 -1
- package/build/src/core/index.d.ts.map +1 -1
- package/build/src/core/index.js +2 -1
- package/build/src/core/index.js.map +1 -1
- package/build/src/define_config.d.ts +17 -0
- package/build/src/define_config.d.ts.map +1 -1
- package/build/src/define_config.js +9 -0
- package/build/src/define_config.js.map +1 -1
- package/build/src/integrations/lucid/column/attachment_column.d.ts +18 -0
- package/build/src/integrations/lucid/column/attachment_column.d.ts.map +1 -0
- package/build/src/integrations/lucid/{attachment_column.js → column/attachment_column.js} +26 -13
- package/build/src/integrations/lucid/column/attachment_column.js.map +1 -0
- package/build/src/integrations/lucid/index.d.ts +16 -12
- package/build/src/integrations/lucid/index.d.ts.map +1 -1
- package/build/src/integrations/lucid/index.js +16 -12
- package/build/src/integrations/lucid/index.js.map +1 -1
- package/build/src/integrations/lucid/migrations/legacy/legacy_attachment_migration_stub.d.ts +20 -0
- package/build/src/integrations/lucid/migrations/legacy/legacy_attachment_migration_stub.d.ts.map +1 -0
- package/build/src/integrations/lucid/migrations/legacy/legacy_attachment_migration_stub.js +18 -0
- package/build/src/integrations/lucid/migrations/legacy/legacy_attachment_migration_stub.js.map +1 -0
- package/build/src/integrations/lucid/{migrate_legacy_attachment.d.ts → migrations/legacy/migrate_legacy_attachment.d.ts} +25 -9
- package/build/src/integrations/lucid/migrations/legacy/migrate_legacy_attachment.d.ts.map +1 -0
- package/build/src/integrations/lucid/migrations/legacy/migrate_legacy_attachment.js +94 -0
- package/build/src/integrations/lucid/migrations/legacy/migrate_legacy_attachment.js.map +1 -0
- package/build/src/integrations/lucid/{migrate_legacy_attachment_records.d.ts → migrations/legacy/migrate_legacy_attachment_records.d.ts} +3 -3
- package/build/src/integrations/lucid/migrations/legacy/migrate_legacy_attachment_records.d.ts.map +1 -0
- package/build/src/integrations/lucid/{migrate_legacy_attachment_records.js → migrations/legacy/migrate_legacy_attachment_records.js} +7 -6
- package/build/src/integrations/lucid/migrations/legacy/migrate_legacy_attachment_records.js.map +1 -0
- package/build/src/integrations/lucid/models/attachment_link_model.d.ts +30 -0
- package/build/src/integrations/lucid/models/attachment_link_model.d.ts.map +1 -0
- package/build/src/integrations/lucid/models/attachment_link_model.js +58 -0
- package/build/src/integrations/lucid/models/attachment_link_model.js.map +1 -0
- package/build/src/integrations/lucid/{attachment_model.d.ts → models/attachment_model.d.ts} +2 -6
- package/build/src/integrations/lucid/models/attachment_model.d.ts.map +1 -0
- package/build/src/integrations/lucid/{attachment_model.js → models/attachment_model.js} +1 -13
- package/build/src/integrations/lucid/models/attachment_model.js.map +1 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_lifecycle_service.d.ts +34 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_lifecycle_service.d.ts.map +1 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_lifecycle_service.js +195 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_lifecycle_service.js.map +1 -0
- package/build/src/integrations/lucid/{lucid_attachment_repository.d.ts → persistence/lucid_attachment_repository.d.ts} +3 -3
- package/build/src/integrations/lucid/persistence/lucid_attachment_repository.d.ts.map +1 -0
- package/build/src/integrations/lucid/{lucid_attachment_repository.js → persistence/lucid_attachment_repository.js} +1 -1
- package/build/src/integrations/lucid/persistence/lucid_attachment_repository.js.map +1 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_store.d.ts +48 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_store.d.ts.map +1 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_store.js +224 -0
- package/build/src/integrations/lucid/persistence/lucid_attachment_store.js.map +1 -0
- package/build/src/integrations/lucid/{lucid_variant_generation_service.d.ts → persistence/lucid_variant_generation_service.d.ts} +3 -3
- package/build/src/integrations/lucid/persistence/lucid_variant_generation_service.d.ts.map +1 -0
- package/build/src/integrations/lucid/persistence/lucid_variant_generation_service.js.map +1 -0
- package/build/src/integrations/lucid/{attachment_owner.d.ts → relations/attachment_owner.d.ts} +2 -1
- package/build/src/integrations/lucid/relations/attachment_owner.d.ts.map +1 -0
- package/build/src/integrations/lucid/relations/attachment_owner.js.map +1 -0
- package/build/src/integrations/lucid/relations/attachment_relation.d.ts +71 -0
- package/build/src/integrations/lucid/relations/attachment_relation.d.ts.map +1 -0
- package/build/src/integrations/lucid/relations/attachment_relation.js +266 -0
- package/build/src/integrations/lucid/relations/attachment_relation.js.map +1 -0
- package/build/src/integrations/lucid/schema/attachment_schema_service.d.ts +24 -0
- package/build/src/integrations/lucid/schema/attachment_schema_service.d.ts.map +1 -0
- package/build/src/integrations/lucid/schema/attachment_schema_service.js +68 -0
- package/build/src/integrations/lucid/schema/attachment_schema_service.js.map +1 -0
- package/build/src/integrations/lucid/schema/attachment_table_names.d.ts +15 -0
- package/build/src/integrations/lucid/schema/attachment_table_names.d.ts.map +1 -0
- package/build/src/integrations/lucid/schema/attachment_table_names.js +20 -0
- package/build/src/integrations/lucid/schema/attachment_table_names.js.map +1 -0
- package/build/src/integrations/lucid/schema/attachments_table_stub.d.ts.map +1 -0
- package/build/src/integrations/lucid/{attachments_table_stub.js → schema/attachments_table_stub.js} +2 -4
- package/build/src/integrations/lucid/schema/attachments_table_stub.js.map +1 -0
- package/build/src/integrations/lucid/schema/configure_lucid_attachment_tables.d.ts +12 -0
- package/build/src/integrations/lucid/schema/configure_lucid_attachment_tables.d.ts.map +1 -0
- package/build/src/integrations/lucid/schema/configure_lucid_attachment_tables.js +19 -0
- package/build/src/integrations/lucid/schema/configure_lucid_attachment_tables.js.map +1 -0
- package/build/src/sources/attachment_manager.d.ts +14 -12
- package/build/src/sources/attachment_manager.d.ts.map +1 -1
- package/build/src/sources/attachment_manager.js +14 -6
- package/build/src/sources/attachment_manager.js.map +1 -1
- package/build/stubs/migrations/attachments_table.stub +7 -24
- package/build/{src/integrations/lucid/render_legacy_attachment_migration_script.js → stubs/migrations/legacy_attachment_migration.stub} +13 -15
- package/build/tests/attachment_manager.spec.js +21 -18
- package/build/tests/attachment_manager.spec.js.map +1 -1
- package/build/tests/attachment_manager_service.spec.js +2 -2
- package/build/tests/attachment_manager_service.spec.js.map +1 -1
- package/build/tests/attachment_options.spec.d.ts +2 -0
- package/build/tests/attachment_options.spec.d.ts.map +1 -0
- package/build/tests/attachment_options.spec.js +31 -0
- package/build/tests/attachment_options.spec.js.map +1 -0
- package/build/tests/attachment_provider.spec.js +30 -1
- package/build/tests/attachment_provider.spec.js.map +1 -1
- package/build/tests/{create_legacy_attachment_migration_script.spec.d.ts → attachment_schema_service.spec.d.ts} +1 -1
- package/build/tests/attachment_schema_service.spec.d.ts.map +1 -0
- package/build/tests/attachment_schema_service.spec.js +38 -0
- package/build/tests/attachment_schema_service.spec.js.map +1 -0
- package/build/tests/attachment_service.spec.js +55 -0
- package/build/tests/attachment_service.spec.js.map +1 -1
- package/build/tests/attachment_table_names.spec.d.ts +8 -0
- package/build/tests/attachment_table_names.spec.d.ts.map +1 -0
- package/build/tests/attachment_table_names.spec.js +36 -0
- package/build/tests/attachment_table_names.spec.js.map +1 -0
- package/build/tests/attachments_table_stub.spec.js +41 -5
- package/build/tests/attachments_table_stub.spec.js.map +1 -1
- package/build/tests/define_config.spec.js +34 -0
- package/build/tests/define_config.spec.js.map +1 -1
- package/build/tests/helpers/lucid_test_database.d.ts.map +1 -1
- package/build/tests/helpers/lucid_test_database.js +16 -6
- package/build/tests/helpers/lucid_test_database.js.map +1 -1
- package/build/tests/legacy_attachment_migration_stub.spec.d.ts +8 -0
- package/build/tests/legacy_attachment_migration_stub.spec.d.ts.map +1 -0
- package/build/tests/legacy_attachment_migration_stub.spec.js +57 -0
- package/build/tests/legacy_attachment_migration_stub.spec.js.map +1 -0
- package/build/tests/lucid_attachment_collection_store.spec.d.ts +2 -0
- package/build/tests/lucid_attachment_collection_store.spec.d.ts.map +1 -0
- package/build/tests/lucid_attachment_collection_store.spec.js +53 -0
- package/build/tests/lucid_attachment_collection_store.spec.js.map +1 -0
- package/build/tests/lucid_attachment_column.spec.js +57 -1
- package/build/tests/lucid_attachment_column.spec.js.map +1 -1
- package/build/tests/lucid_attachment_lifecycle_service.spec.js +117 -111
- package/build/tests/lucid_attachment_lifecycle_service.spec.js.map +1 -1
- package/build/tests/lucid_attachment_relation.spec.d.ts +8 -0
- package/build/tests/lucid_attachment_relation.spec.d.ts.map +1 -0
- package/build/tests/lucid_attachment_relation.spec.js +295 -0
- package/build/tests/lucid_attachment_relation.spec.js.map +1 -0
- package/build/tests/lucid_attachment_repository.spec.js +1 -1
- package/build/tests/lucid_attachment_repository.spec.js.map +1 -1
- package/build/tests/lucid_attachment_store.spec.js +24 -50
- package/build/tests/lucid_attachment_store.spec.js.map +1 -1
- package/build/tests/lucid_sqlite_integration.spec.js +23 -18
- package/build/tests/lucid_sqlite_integration.spec.js.map +1 -1
- package/build/tests/lucid_variant_generation_service.spec.js +1 -1
- package/build/tests/lucid_variant_generation_service.spec.js.map +1 -1
- package/build/tests/migrate_legacy_attachment.spec.js +114 -67
- package/build/tests/migrate_legacy_attachment.spec.js.map +1 -1
- package/build/tests/migrate_legacy_attachment_records.spec.js +4 -3
- package/build/tests/migrate_legacy_attachment_records.spec.js.map +1 -1
- package/package.json +4 -2
- package/build/src/integrations/lucid/attachment_column.d.ts +0 -11
- package/build/src/integrations/lucid/attachment_column.d.ts.map +0 -1
- package/build/src/integrations/lucid/attachment_column.js.map +0 -1
- package/build/src/integrations/lucid/attachment_model.d.ts.map +0 -1
- package/build/src/integrations/lucid/attachment_model.js.map +0 -1
- package/build/src/integrations/lucid/attachment_owner.d.ts.map +0 -1
- package/build/src/integrations/lucid/attachment_owner.js.map +0 -1
- package/build/src/integrations/lucid/attachments_table_stub.d.ts.map +0 -1
- package/build/src/integrations/lucid/attachments_table_stub.js.map +0 -1
- package/build/src/integrations/lucid/create_legacy_attachment_migration_script.d.ts +0 -13
- package/build/src/integrations/lucid/create_legacy_attachment_migration_script.d.ts.map +0 -1
- package/build/src/integrations/lucid/create_legacy_attachment_migration_script.js +0 -20
- package/build/src/integrations/lucid/create_legacy_attachment_migration_script.js.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_lifecycle_service.d.ts +0 -21
- package/build/src/integrations/lucid/lucid_attachment_lifecycle_service.d.ts.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_lifecycle_service.js +0 -68
- package/build/src/integrations/lucid/lucid_attachment_lifecycle_service.js.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_repository.d.ts.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_repository.js.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_store.d.ts +0 -27
- package/build/src/integrations/lucid/lucid_attachment_store.d.ts.map +0 -1
- package/build/src/integrations/lucid/lucid_attachment_store.js +0 -84
- package/build/src/integrations/lucid/lucid_attachment_store.js.map +0 -1
- package/build/src/integrations/lucid/lucid_variant_generation_service.d.ts.map +0 -1
- package/build/src/integrations/lucid/lucid_variant_generation_service.js.map +0 -1
- package/build/src/integrations/lucid/migrate_legacy_attachment.d.ts.map +0 -1
- package/build/src/integrations/lucid/migrate_legacy_attachment.js +0 -67
- package/build/src/integrations/lucid/migrate_legacy_attachment.js.map +0 -1
- package/build/src/integrations/lucid/migrate_legacy_attachment_records.d.ts.map +0 -1
- package/build/src/integrations/lucid/migrate_legacy_attachment_records.js.map +0 -1
- package/build/src/integrations/lucid/render_legacy_attachment_migration_script.d.ts +0 -11
- package/build/src/integrations/lucid/render_legacy_attachment_migration_script.d.ts.map +0 -1
- package/build/src/integrations/lucid/render_legacy_attachment_migration_script.js.map +0 -1
- package/build/tests/create_legacy_attachment_migration_script.spec.d.ts.map +0 -1
- package/build/tests/create_legacy_attachment_migration_script.spec.js +0 -31
- package/build/tests/create_legacy_attachment_migration_script.spec.js.map +0 -1
- /package/build/src/integrations/lucid/{lucid_variant_generation_service.js → persistence/lucid_variant_generation_service.js} +0 -0
- /package/build/src/integrations/lucid/{attachment_owner.js → relations/attachment_owner.js} +0 -0
- /package/build/src/integrations/lucid/{attachments_table_stub.d.ts → schema/attachments_table_stub.d.ts} +0 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jrmc/adonis-attachment
|
|
3
|
+
*
|
|
4
|
+
* @license MIT
|
|
5
|
+
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
|
+
*/
|
|
7
|
+
import type { TransactionClientContract } from '@adonisjs/lucid/types/database';
|
|
8
|
+
import type { Attachment } from '../../../core/attachment.js';
|
|
9
|
+
import { type AttachmentOwner } from '../relations/attachment_owner.js';
|
|
10
|
+
import { AttachmentLinkModel } from '../models/attachment_link_model.js';
|
|
11
|
+
import { AttachmentModel } from '../models/attachment_model.js';
|
|
12
|
+
export type LucidAttachmentWithVariants = {
|
|
13
|
+
original: AttachmentLinkModel;
|
|
14
|
+
variants: AttachmentModel[];
|
|
15
|
+
};
|
|
16
|
+
export type LucidAttachmentStoreOptions = {
|
|
17
|
+
client?: TransactionClientContract;
|
|
18
|
+
linkModel?: typeof AttachmentLinkModel;
|
|
19
|
+
createLinkId?: () => string;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Persists immutable file blobs separately from their polymorphic owner links.
|
|
23
|
+
*/
|
|
24
|
+
export declare class LucidAttachmentStore {
|
|
25
|
+
#private;
|
|
26
|
+
constructor(blobModel?: typeof AttachmentModel, options?: LucidAttachmentStoreOptions);
|
|
27
|
+
createOriginal(owner: AttachmentOwner, attachment: Attachment): Promise<AttachmentLinkModel>;
|
|
28
|
+
createCollectionItem(owner: AttachmentOwner, attachment: Attachment, position?: number): Promise<AttachmentLinkModel>;
|
|
29
|
+
createOriginalLink(owner: AttachmentOwner, attachmentId: string): Promise<AttachmentLinkModel>;
|
|
30
|
+
createCollectionLink(owner: AttachmentOwner, attachmentId: string, position?: number): Promise<AttachmentLinkModel>;
|
|
31
|
+
createVariant(original: AttachmentModel, key: string, attachment: Attachment): Promise<AttachmentModel>;
|
|
32
|
+
releaseOwner(original: AttachmentLinkModel): Promise<void>;
|
|
33
|
+
restoreOwner(original: AttachmentLinkModel): Promise<void>;
|
|
34
|
+
findOriginal(owner: AttachmentOwner): Promise<AttachmentLinkModel | null>;
|
|
35
|
+
listCollection(owner: AttachmentOwner): Promise<AttachmentLinkModel[]>;
|
|
36
|
+
findCollectionItem(owner: AttachmentOwner, id: string): Promise<AttachmentLinkModel | null>;
|
|
37
|
+
removeCollectionItem(owner: AttachmentOwner, item: AttachmentLinkModel): Promise<AttachmentModel[]>;
|
|
38
|
+
moveCollectionItem(owner: AttachmentOwner, id: string, position: number): Promise<AttachmentLinkModel[]>;
|
|
39
|
+
findById(id: string): Promise<AttachmentModel | null>;
|
|
40
|
+
findByOwner(owner: AttachmentOwner): Promise<LucidAttachmentWithVariants | null>;
|
|
41
|
+
listVariants(originalId: string): Promise<AttachmentModel[]>;
|
|
42
|
+
/**
|
|
43
|
+
* Deletes a link and returns blobs that became unreferenced and were removed.
|
|
44
|
+
*/
|
|
45
|
+
remove(link: AttachmentLinkModel): Promise<AttachmentModel[]>;
|
|
46
|
+
listOwnerLinks(owner: AttachmentOwner): Promise<AttachmentLinkModel[]>;
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=lucid_attachment_store.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_attachment_store.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_attachment_store.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAA;AAE/E,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAA;AAE7D,OAAO,EAA4B,KAAK,eAAe,EAAE,MAAM,kCAAkC,CAAA;AACjG,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAA;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,MAAM,MAAM,2BAA2B,GAAG;IACxC,QAAQ,EAAE,mBAAmB,CAAA;IAC7B,QAAQ,EAAE,eAAe,EAAE,CAAA;CAC5B,CAAA;AAED,MAAM,MAAM,2BAA2B,GAAG;IACxC,MAAM,CAAC,EAAE,yBAAyB,CAAA;IAClC,SAAS,CAAC,EAAE,OAAO,mBAAmB,CAAA;IACtC,YAAY,CAAC,EAAE,MAAM,MAAM,CAAA;CAC5B,CAAA;AAED;;GAEG;AACH,qBAAa,oBAAoB;;gBAO7B,SAAS,GAAE,OAAO,eAAiC,EACnD,OAAO,GAAE,2BAAgC;IAQrC,cAAc,CAAC,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,UAAU,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAW5F,oBAAoB,CACxB,KAAK,EAAE,eAAe,EACtB,UAAU,EAAE,UAAU,EACtB,QAAQ,CAAC,EAAE,MAAM,GAChB,OAAO,CAAC,mBAAmB,CAAC;IAczB,kBAAkB,CAAC,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAK9F,oBAAoB,CACxB,KAAK,EAAE,eAAe,EACtB,YAAY,EAAE,MAAM,EACpB,QAAQ,CAAC,EAAE,MAAM,GAChB,OAAO,CAAC,mBAAmB,CAAC;IAS/B,aAAa,CACX,QAAQ,EAAE,eAAe,EACzB,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,UAAU,GACrB,OAAO,CAAC,eAAe,CAAC;IAIrB,YAAY,CAAC,QAAQ,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAK1D,YAAY,CAAC,QAAQ,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;IAShE,YAAY,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,mBAAmB,GAAG,IAAI,CAAC;IASzE,cAAc,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,mBAAmB,EAAE,CAAC;IAStE,kBAAkB,CAAC,KAAK,EAAE,eAAe,EAAE,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,GAAG,IAAI,CAAC;IAUrF,oBAAoB,CACxB,KAAK,EAAE,eAAe,EACtB,IAAI,EAAE,mBAAmB,GACxB,OAAO,CAAC,eAAe,EAAE,CAAC;IAMvB,kBAAkB,CACtB,KAAK,EAAE,eAAe,EACtB,EAAE,EAAE,MAAM,EACV,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,mBAAmB,EAAE,CAAC;IAqBjC,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC;IAI/C,WAAW,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,2BAA2B,GAAG,IAAI,CAAC;IAatF,YAAY,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,EAAE,CAAC;IAI5D;;OAEG;IACG,MAAM,CAAC,IAAI,EAAE,mBAAmB,GAAG,OAAO,CAAC,eAAe,EAAE,CAAC;IAcnE,cAAc,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,mBAAmB,EAAE,CAAC;CAiGvE"}
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jrmc/adonis-attachment
|
|
3
|
+
*
|
|
4
|
+
* @license MIT
|
|
5
|
+
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
|
+
*/
|
|
7
|
+
import { randomUUID } from 'node:crypto';
|
|
8
|
+
import { markAttachmentPersisted } from '../../../core/attachment_state.js';
|
|
9
|
+
import { createAttachmentOwnerKey } from '../relations/attachment_owner.js';
|
|
10
|
+
import { AttachmentLinkModel } from '../models/attachment_link_model.js';
|
|
11
|
+
import { AttachmentModel } from '../models/attachment_model.js';
|
|
12
|
+
/**
|
|
13
|
+
* Persists immutable file blobs separately from their polymorphic owner links.
|
|
14
|
+
*/
|
|
15
|
+
export class LucidAttachmentStore {
|
|
16
|
+
#blobModel;
|
|
17
|
+
#linkModel;
|
|
18
|
+
#client;
|
|
19
|
+
#createLinkId;
|
|
20
|
+
constructor(blobModel = AttachmentModel, options = {}) {
|
|
21
|
+
this.#blobModel = blobModel;
|
|
22
|
+
this.#linkModel = options.linkModel ?? AttachmentLinkModel;
|
|
23
|
+
this.#client = options.client;
|
|
24
|
+
this.#createLinkId = options.createLinkId ?? randomUUID;
|
|
25
|
+
}
|
|
26
|
+
async createOriginal(owner, attachment) {
|
|
27
|
+
const blob = await this.#createBlob(attachment);
|
|
28
|
+
try {
|
|
29
|
+
return await this.#createLink(owner, blob, { ownerKey: createAttachmentOwnerKey(owner) });
|
|
30
|
+
}
|
|
31
|
+
catch (error) {
|
|
32
|
+
await blob.delete().catch(() => undefined);
|
|
33
|
+
throw error;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
async createCollectionItem(owner, attachment, position) {
|
|
37
|
+
const items = await this.listCollection(owner);
|
|
38
|
+
const target = normalizePosition(position, items.length);
|
|
39
|
+
const blob = await this.#createBlob(attachment);
|
|
40
|
+
try {
|
|
41
|
+
await this.#shiftCollection(items, target, 1);
|
|
42
|
+
return await this.#createLink(owner, blob, { position: target });
|
|
43
|
+
}
|
|
44
|
+
catch (error) {
|
|
45
|
+
await blob.delete().catch(() => undefined);
|
|
46
|
+
throw error;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
async createOriginalLink(owner, attachmentId) {
|
|
50
|
+
const blob = await this.#findBlobOrFail(attachmentId);
|
|
51
|
+
return this.#createLink(owner, blob, { ownerKey: createAttachmentOwnerKey(owner) });
|
|
52
|
+
}
|
|
53
|
+
async createCollectionLink(owner, attachmentId, position) {
|
|
54
|
+
const items = await this.listCollection(owner);
|
|
55
|
+
const target = normalizePosition(position, items.length);
|
|
56
|
+
const blob = await this.#findBlobOrFail(attachmentId);
|
|
57
|
+
await this.#shiftCollection(items, target, 1);
|
|
58
|
+
return this.#createLink(owner, blob, { position: target });
|
|
59
|
+
}
|
|
60
|
+
createVariant(original, key, attachment) {
|
|
61
|
+
return this.#createBlob(attachment, { parentId: original.id, variantKey: key });
|
|
62
|
+
}
|
|
63
|
+
async releaseOwner(original) {
|
|
64
|
+
original.ownerKey = null;
|
|
65
|
+
await original.save();
|
|
66
|
+
}
|
|
67
|
+
async restoreOwner(original) {
|
|
68
|
+
original.ownerKey = createAttachmentOwnerKey({
|
|
69
|
+
type: original.attachableType,
|
|
70
|
+
id: original.attachableId,
|
|
71
|
+
field: original.field,
|
|
72
|
+
});
|
|
73
|
+
await original.save();
|
|
74
|
+
}
|
|
75
|
+
findOriginal(owner) {
|
|
76
|
+
return this.#linkQuery()
|
|
77
|
+
.where('attachable_type', owner.type)
|
|
78
|
+
.where('attachable_id', owner.id)
|
|
79
|
+
.where('field', owner.field)
|
|
80
|
+
.whereNotNull('owner_key')
|
|
81
|
+
.first();
|
|
82
|
+
}
|
|
83
|
+
listCollection(owner) {
|
|
84
|
+
return this.#linkQuery()
|
|
85
|
+
.where('attachable_type', owner.type)
|
|
86
|
+
.where('attachable_id', owner.id)
|
|
87
|
+
.where('field', owner.field)
|
|
88
|
+
.whereNull('owner_key')
|
|
89
|
+
.orderBy('position', 'asc');
|
|
90
|
+
}
|
|
91
|
+
findCollectionItem(owner, id) {
|
|
92
|
+
return this.#linkQuery()
|
|
93
|
+
.where('id', id)
|
|
94
|
+
.where('attachable_type', owner.type)
|
|
95
|
+
.where('attachable_id', owner.id)
|
|
96
|
+
.where('field', owner.field)
|
|
97
|
+
.whereNull('owner_key')
|
|
98
|
+
.first();
|
|
99
|
+
}
|
|
100
|
+
async removeCollectionItem(owner, item) {
|
|
101
|
+
const removed = await this.remove(item);
|
|
102
|
+
await this.#normalizeCollection(owner);
|
|
103
|
+
return removed;
|
|
104
|
+
}
|
|
105
|
+
async moveCollectionItem(owner, id, position) {
|
|
106
|
+
const items = await this.listCollection(owner);
|
|
107
|
+
const source = items.findIndex((item) => item.id === id);
|
|
108
|
+
if (source === -1) {
|
|
109
|
+
throw new Error(`Attachment link "${id}" does not belong to this collection`);
|
|
110
|
+
}
|
|
111
|
+
const target = normalizePosition(position, items.length - 1);
|
|
112
|
+
if (source === target) {
|
|
113
|
+
return items;
|
|
114
|
+
}
|
|
115
|
+
const [item] = items.splice(source, 1);
|
|
116
|
+
items.splice(target, 0, item);
|
|
117
|
+
await this.#reorderCollection(items);
|
|
118
|
+
return items;
|
|
119
|
+
}
|
|
120
|
+
findById(id) {
|
|
121
|
+
return this.#blobQuery().where('id', id).first();
|
|
122
|
+
}
|
|
123
|
+
async findByOwner(owner) {
|
|
124
|
+
const original = await this.findOriginal(owner);
|
|
125
|
+
if (!original) {
|
|
126
|
+
return null;
|
|
127
|
+
}
|
|
128
|
+
return {
|
|
129
|
+
original,
|
|
130
|
+
variants: await this.listVariants(original.attachmentId),
|
|
131
|
+
};
|
|
132
|
+
}
|
|
133
|
+
listVariants(originalId) {
|
|
134
|
+
return this.#blobQuery().where('parent_id', originalId);
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* Deletes a link and returns blobs that became unreferenced and were removed.
|
|
138
|
+
*/
|
|
139
|
+
async remove(link) {
|
|
140
|
+
const attachment = link.attachment ?? (await this.findById(link.attachmentId));
|
|
141
|
+
await link.delete();
|
|
142
|
+
if (!attachment || (await this.#linkQuery().where('attachment_id', attachment.id).first())) {
|
|
143
|
+
return [];
|
|
144
|
+
}
|
|
145
|
+
const variants = await this.listVariants(attachment.id);
|
|
146
|
+
await attachment.delete();
|
|
147
|
+
return [attachment, ...variants];
|
|
148
|
+
}
|
|
149
|
+
listOwnerLinks(owner) {
|
|
150
|
+
return this.#linkQuery()
|
|
151
|
+
.where('attachable_type', owner.type)
|
|
152
|
+
.where('attachable_id', owner.id);
|
|
153
|
+
}
|
|
154
|
+
async #createBlob(attachment, options = {}) {
|
|
155
|
+
const blob = await this.#blobModel.create({
|
|
156
|
+
...attachment,
|
|
157
|
+
parentId: options.parentId ?? null,
|
|
158
|
+
variantKey: options.variantKey ?? null,
|
|
159
|
+
metadata: attachment.metadata ?? null,
|
|
160
|
+
}, this.#client ? { client: this.#client } : undefined);
|
|
161
|
+
markAttachmentPersisted(attachment);
|
|
162
|
+
return blob;
|
|
163
|
+
}
|
|
164
|
+
async #findBlobOrFail(id) {
|
|
165
|
+
const blob = await this.findById(id);
|
|
166
|
+
if (!blob) {
|
|
167
|
+
throw new Error(`Attachment blob "${id}" does not exist`);
|
|
168
|
+
}
|
|
169
|
+
return blob;
|
|
170
|
+
}
|
|
171
|
+
async #createLink(owner, attachment, options = {}) {
|
|
172
|
+
const link = await this.#linkModel.create({
|
|
173
|
+
id: this.#createLinkId(),
|
|
174
|
+
attachableType: owner.type,
|
|
175
|
+
attachableId: owner.id,
|
|
176
|
+
field: owner.field,
|
|
177
|
+
ownerKey: options.ownerKey ?? null,
|
|
178
|
+
position: options.position ?? null,
|
|
179
|
+
attachmentId: attachment.id,
|
|
180
|
+
}, this.#client ? { client: this.#client } : undefined);
|
|
181
|
+
return this.#linkQuery().where('id', link.id).firstOrFail();
|
|
182
|
+
}
|
|
183
|
+
async #normalizeCollection(owner) {
|
|
184
|
+
await this.#reorderCollection(await this.listCollection(owner));
|
|
185
|
+
}
|
|
186
|
+
#blobQuery() {
|
|
187
|
+
return this.#blobModel.query(this.#client ? { client: this.#client } : undefined);
|
|
188
|
+
}
|
|
189
|
+
#linkQuery() {
|
|
190
|
+
return this.#linkModel
|
|
191
|
+
.query(this.#client ? { client: this.#client } : undefined)
|
|
192
|
+
.preload('attachment');
|
|
193
|
+
}
|
|
194
|
+
async #shiftCollection(items, from, amount) {
|
|
195
|
+
for (const item of [...items].reverse()) {
|
|
196
|
+
if ((item.position ?? 0) < from) {
|
|
197
|
+
continue;
|
|
198
|
+
}
|
|
199
|
+
item.position = (item.position ?? 0) + amount;
|
|
200
|
+
await item.save();
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
async #reorderCollection(items) {
|
|
204
|
+
const offset = items.length + 1;
|
|
205
|
+
for (const item of items) {
|
|
206
|
+
item.position = (item.position ?? 0) + offset;
|
|
207
|
+
await item.save();
|
|
208
|
+
}
|
|
209
|
+
for (const [position, item] of items.entries()) {
|
|
210
|
+
item.position = position;
|
|
211
|
+
await item.save();
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
function normalizePosition(position, maximum) {
|
|
216
|
+
if (position === undefined) {
|
|
217
|
+
return maximum;
|
|
218
|
+
}
|
|
219
|
+
if (!Number.isSafeInteger(position) || position < 0) {
|
|
220
|
+
throw new Error('Attachment collection positions must be non-negative integers');
|
|
221
|
+
}
|
|
222
|
+
return Math.min(position, maximum);
|
|
223
|
+
}
|
|
224
|
+
//# sourceMappingURL=lucid_attachment_store.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_attachment_store.js","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_attachment_store.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
* @license MIT
|
|
5
5
|
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
6
|
*/
|
|
7
|
-
import type { AttachmentService } from '
|
|
8
|
-
import type { VariantGenerationRequest, VariantGenerator } from '
|
|
9
|
-
import type { VariantGenerationService } from '
|
|
7
|
+
import type { AttachmentService } from '../../../core/attachment_service.js';
|
|
8
|
+
import type { VariantGenerationRequest, VariantGenerator } from '../../../core/attachment_job_processor.js';
|
|
9
|
+
import type { VariantGenerationService } from '../../../variants/variant_generation_service.js';
|
|
10
10
|
import { LucidAttachmentStore } from './lucid_attachment_store.js';
|
|
11
11
|
export type LucidVariantGenerationServiceOptions = {
|
|
12
12
|
generator: Pick<VariantGenerationService, 'generateAll'>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_variant_generation_service.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_variant_generation_service.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qCAAqC,CAAA;AAC5E,OAAO,KAAK,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAA;AAC3G,OAAO,KAAK,EAAoB,wBAAwB,EAAE,MAAM,iDAAiD,CAAA;AAEjH,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAA;AAElE,MAAM,MAAM,oCAAoC,GAAG;IACjD,SAAS,EAAE,IAAI,CAAC,wBAAwB,EAAE,aAAa,CAAC,CAAA;IACxD,WAAW,EAAE,IAAI,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAA;IAC9C,KAAK,EAAE,IAAI,CAAC,oBAAoB,EAAE,UAAU,GAAG,eAAe,CAAC,CAAA;CAChE,CAAA;AAED,qBAAa,6BAA8B,YAAW,gBAAgB;;gBAKxD,OAAO,EAAE,oCAAoC;IAMnD,QAAQ,CAAC,OAAO,EAAE,wBAAwB,GAAG,OAAO,CAAC,IAAI,CAAC;CAqBjE;AAED,qBAAa,gCAAiC,SAAQ,KAAK;gBAC7C,EAAE,EAAE,MAAM;CAIvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lucid_variant_generation_service.js","sourceRoot":"","sources":["../../../../../src/integrations/lucid/persistence/lucid_variant_generation_service.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAcH,MAAM,OAAO,6BAA6B;IAC/B,UAAU,CAA+C;IACzD,YAAY,CAAmC;IAC/C,MAAM,CAA0D;IAEzE,YAAY,OAA6C;QACvD,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,SAAS,CAAA;QACnC,IAAI,CAAC,YAAY,GAAG,OAAO,CAAC,WAAW,CAAA;QACvC,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,CAAA;IAC7B,CAAC;IAED,KAAK,CAAC,QAAQ,CAAC,OAAiC;QAC9C,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,CAAA;QAElE,IAAI,CAAC,QAAQ,EAAE,CAAC;YACd,MAAM,IAAI,gCAAgC,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,CAAA;QACnE,CAAC;QAED,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;QAC3D,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;YAC/B,MAAM,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAA;QACxC,CAAC;IACH,CAAC;IAED,KAAK,CAAC,QAAQ,CAAC,QAAyB,EAAE,OAAyB;QACjE,IAAI,CAAC;YACH,MAAM,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,QAAQ,EAAE,OAAO,CAAC,GAAG,EAAE,OAAO,CAAC,UAAU,CAAC,CAAA;QAC5E,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,MAAM,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,CAAA;YAClD,MAAM,KAAK,CAAA;QACb,CAAC;IACH,CAAC;CACF;AAED,MAAM,OAAO,gCAAiC,SAAQ,KAAK;IACzD,YAAY,EAAU;QACpB,KAAK,CAAC,yBAAyB,EAAE,iBAAiB,CAAC,CAAA;QACnD,IAAI,CAAC,IAAI,GAAG,kCAAkC,CAAA;IAChD,CAAC;CACF"}
|
package/build/src/integrations/lucid/{attachment_owner.d.ts → relations/attachment_owner.d.ts}
RENAMED
|
@@ -4,10 +4,11 @@
|
|
|
4
4
|
* @license MIT
|
|
5
5
|
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
6
|
*/
|
|
7
|
-
export type AttachmentOwner = {
|
|
7
|
+
export type AttachmentOwner<Model = unknown> = {
|
|
8
8
|
type: string;
|
|
9
9
|
id: string;
|
|
10
10
|
field: string;
|
|
11
|
+
model?: Model;
|
|
11
12
|
};
|
|
12
13
|
/**
|
|
13
14
|
* Produces the database key that enforces one original attachment per owner field.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attachment_owner.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/lucid/relations/attachment_owner.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,MAAM,MAAM,eAAe,CAAC,KAAK,GAAG,OAAO,IAAI;IAC7C,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,KAAK,CAAA;CACd,CAAA;AAED;;;GAGG;AACH,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,eAAe,GAAG,MAAM,CAEvE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attachment_owner.js","sourceRoot":"","sources":["../../../../../src/integrations/lucid/relations/attachment_owner.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AASxC;;;GAGG;AACH,MAAM,UAAU,wBAAwB,CAAC,KAAsB;IAC7D,OAAO,UAAU,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,EAAE,EAAE,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAA;AACvG,CAAC"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jrmc/adonis-attachment
|
|
3
|
+
*
|
|
4
|
+
* @license MIT
|
|
5
|
+
* @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
|
|
6
|
+
*/
|
|
7
|
+
import type { LucidRow } from "@adonisjs/lucid/types/model";
|
|
8
|
+
import type { AttachmentDraft, CreateAttachmentInput } from "../../../core/attachment.js";
|
|
9
|
+
import type { AttachmentPersistenceOptions } from "../../../core/attachment_options.js";
|
|
10
|
+
import { AttachmentLinkModel } from "../models/attachment_link_model.js";
|
|
11
|
+
import { AttachmentModel } from "../models/attachment_model.js";
|
|
12
|
+
type AttachmentRelationInput = CreateAttachmentInput | AttachmentDraft;
|
|
13
|
+
type AttachmentRelationRow = LucidRow & {
|
|
14
|
+
$isPersisted: boolean;
|
|
15
|
+
$primaryKeyValue: string | number | null | undefined;
|
|
16
|
+
constructor: {
|
|
17
|
+
table?: string;
|
|
18
|
+
name: string;
|
|
19
|
+
boot(): void;
|
|
20
|
+
prototype: AttachmentRelationRow & {
|
|
21
|
+
save(): Promise<unknown>;
|
|
22
|
+
};
|
|
23
|
+
after(event: "delete", callback: (row: AttachmentRelationRow) => void | Promise<void>): void;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
type RelationKind = "one" | "many";
|
|
27
|
+
type RelationDefinition = {
|
|
28
|
+
kind: RelationKind;
|
|
29
|
+
field: string;
|
|
30
|
+
options: AttachmentRelationOptions<any>;
|
|
31
|
+
};
|
|
32
|
+
export type AttachmentRelationOptions<Model = any> = AttachmentPersistenceOptions<Model> & {
|
|
33
|
+
type?: string;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Declares one attachment persisted in the polymorphic attachments table.
|
|
37
|
+
*/
|
|
38
|
+
export declare function attachmentRelation<Model = LucidRow>(options?: AttachmentRelationOptions<Model>): PropertyDecorator;
|
|
39
|
+
/**
|
|
40
|
+
* Declares an ordered attachment collection persisted in the polymorphic attachments table.
|
|
41
|
+
*/
|
|
42
|
+
export declare function attachmentsRelation<Model = LucidRow>(options?: AttachmentRelationOptions<Model>): PropertyDecorator;
|
|
43
|
+
export declare class AttachmentRelation {
|
|
44
|
+
#private;
|
|
45
|
+
constructor(row: AttachmentRelationRow, definition: RelationDefinition);
|
|
46
|
+
get(): Promise<AttachmentLinkModel | null>;
|
|
47
|
+
get hasPending(): boolean;
|
|
48
|
+
attach(input: AttachmentRelationInput): void;
|
|
49
|
+
attachExisting(attachmentId: string): void;
|
|
50
|
+
set(input: AttachmentRelationInput): void;
|
|
51
|
+
replace(input: AttachmentRelationInput): void;
|
|
52
|
+
detach(): void;
|
|
53
|
+
persist(): Promise<AttachmentLinkModel | null>;
|
|
54
|
+
variants(): Promise<AttachmentModel[]>;
|
|
55
|
+
regenerateVariants(variantKeys?: readonly string[]): Promise<boolean>;
|
|
56
|
+
}
|
|
57
|
+
export declare class AttachmentCollectionRelation {
|
|
58
|
+
#private;
|
|
59
|
+
constructor(row: AttachmentRelationRow, definition: RelationDefinition);
|
|
60
|
+
all(): Promise<AttachmentLinkModel[]>;
|
|
61
|
+
get hasPending(): boolean;
|
|
62
|
+
add(input: AttachmentRelationInput, position?: number): void;
|
|
63
|
+
addExisting(attachmentId: string, position?: number): void;
|
|
64
|
+
remove(id: string): void;
|
|
65
|
+
clear(): void;
|
|
66
|
+
replaceAll(inputs: readonly AttachmentRelationInput[]): void;
|
|
67
|
+
move(id: string, position: number): void;
|
|
68
|
+
persist(): Promise<AttachmentLinkModel[]>;
|
|
69
|
+
}
|
|
70
|
+
export {};
|
|
71
|
+
//# sourceMappingURL=attachment_relation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attachment_relation.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/lucid/relations/attachment_relation.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AAE5D,OAAO,KAAK,EAEV,eAAe,EACf,qBAAqB,EACtB,MAAM,6BAA6B,CAAC;AACrC,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,qCAAqC,CAAC;AAGxF,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAIhE,KAAK,uBAAuB,GAAG,qBAAqB,GAAG,eAAe,CAAC;AAEvE,KAAK,qBAAqB,GAAG,QAAQ,GAAG;IACtC,YAAY,EAAE,OAAO,CAAC;IACtB,gBAAgB,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACrD,WAAW,EAAE;QACX,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,IAAI,IAAI,CAAC;QACb,SAAS,EAAE,qBAAqB,GAAG;YACjC,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;SAC1B,CAAC;QACF,KAAK,CACH,KAAK,EAAE,QAAQ,EACf,QAAQ,EAAE,CAAC,GAAG,EAAE,qBAAqB,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,GAC7D,IAAI,CAAC;KACT,CAAC;CACH,CAAC;AAEF,KAAK,YAAY,GAAG,KAAK,GAAG,MAAM,CAAC;AAEnC,KAAK,kBAAkB,GAAG;IACxB,IAAI,EAAE,YAAY,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,yBAAyB,CAAC,GAAG,CAAC,CAAC;CACzC,CAAC;AAgBF,MAAM,MAAM,yBAAyB,CAAC,KAAK,GAAG,GAAG,IAC/C,4BAA4B,CAAC,KAAK,CAAC,GAAG;IACpC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAaJ;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,GAAG,QAAQ,EACjD,OAAO,GAAE,yBAAyB,CAAC,KAAK,CAAM,GAC7C,iBAAiB,CAEnB;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,GAAG,QAAQ,EAClD,OAAO,GAAE,yBAAyB,CAAC,KAAK,CAAM,GAC7C,iBAAiB,CAEnB;AAED,qBAAa,kBAAkB;;gBAKjB,GAAG,EAAE,qBAAqB,EAAE,UAAU,EAAE,kBAAkB;IAKhE,GAAG,IAAI,OAAO,CAAC,mBAAmB,GAAG,IAAI,CAAC;IAKhD,IAAI,UAAU,IAAI,OAAO,CAExB;IAED,MAAM,CAAC,KAAK,EAAE,uBAAuB,GAAG,IAAI;IAU5C,cAAc,CAAC,YAAY,EAAE,MAAM,GAAG,IAAI;IAU1C,GAAG,CAAC,KAAK,EAAE,uBAAuB,GAAG,IAAI;IAIzC,OAAO,CAAC,KAAK,EAAE,uBAAuB,GAAG,IAAI;IAI7C,MAAM,IAAI,IAAI;IAIR,OAAO,IAAI,OAAO,CAAC,mBAAmB,GAAG,IAAI,CAAC;IAyC9C,QAAQ,IAAI,OAAO,CAAC,eAAe,EAAE,CAAC;IAKtC,kBAAkB,CAAC,WAAW,CAAC,EAAE,SAAS,MAAM,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC;CA4B5E;AAED,qBAAa,4BAA4B;;gBAK3B,GAAG,EAAE,qBAAqB,EAAE,UAAU,EAAE,kBAAkB;IAKhE,GAAG,IAAI,OAAO,CAAC,mBAAmB,EAAE,CAAC;IAK3C,IAAI,UAAU,IAAI,OAAO,CAExB;IAED,GAAG,CACD,KAAK,EAAE,uBAAuB,EAC9B,QAAQ,CAAC,EAAE,MAAM,GAChB,IAAI;IAIP,WAAW,CACT,YAAY,EAAE,MAAM,EACpB,QAAQ,CAAC,EAAE,MAAM,GAChB,IAAI;IAQP,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI;IAIxB,KAAK,IAAI,IAAI;IAIb,UAAU,CACR,MAAM,EAAE,SAAS,uBAAuB,EAAE,GACzC,IAAI;IAIP,IAAI,CAAC,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI;IAIlC,OAAO,IAAI,OAAO,CAAC,mBAAmB,EAAE,CAAC;CAmDhD"}
|