Commits
Art Lowel authored cb59c05baf5
40 40 | import { ItemType } from '../../../../core/shared/item-relationships/item-type.model'; |
41 41 | import { |
42 42 | DsDynamicLookupRelationModalComponent |
43 43 | } from '../../../../shared/form/builder/ds-dynamic-form-ui/relation-lookup-modal/dynamic-lookup-relation-modal.component'; |
44 44 | import { |
45 45 | RelationshipOptions |
46 46 | } from '../../../../shared/form/builder/models/relationship-options.model'; |
47 47 | import { |
48 48 | SelectableListService |
49 49 | } from '../../../../shared/object-list/selectable-list/selectable-list.service'; |
50 - | import { ItemSearchResult } from '../../../../shared/object-collection/shared/item-search-result.model'; |
50 + | import { |
51 + | ItemSearchResult |
52 + | } from '../../../../shared/object-collection/shared/item-search-result.model'; |
51 53 | import { FollowLinkConfig } from '../../../../shared/utils/follow-link-config.model'; |
52 54 | import { PaginatedList } from '../../../../core/data/paginated-list.model'; |
53 55 | import { RemoteData } from '../../../../core/data/remote-data'; |
54 56 | import { Collection } from '../../../../core/shared/collection.model'; |
55 57 | import { |
56 58 | PaginationComponentOptions |
57 59 | } from '../../../../shared/pagination/pagination-component-options.model'; |
58 60 | import { PaginationService } from '../../../../core/pagination/pagination.service'; |
59 61 | import { RelationshipTypeDataService } from '../../../../core/data/relationship-type-data.service'; |
60 62 | import { FieldUpdate } from '../../../../core/data/object-updates/field-update.model'; |
61 63 | import { FieldUpdates } from '../../../../core/data/object-updates/field-updates.model'; |
62 64 | import { FieldChangeType } from '../../../../core/data/object-updates/field-change-type.model'; |
63 65 | import { APP_CONFIG, AppConfig } from '../../../../../config/app-config.interface'; |
64 66 | import { itemLinksToFollow } from '../../../../shared/utils/relation-query.utils'; |
65 67 | import { EditItemRelationshipsService } from '../edit-item-relationships.service'; |
66 - | import { Identifiable } from '../../../../core/data/object-updates/identifiable.model'; |
67 68 | |
68 69 | @Component({ |
69 70 | selector: 'ds-edit-relationship-list', |
70 71 | styleUrls: ['./edit-relationship-list.component.scss'], |
71 72 | templateUrl: './edit-relationship-list.component.html', |
72 73 | }) |
73 74 | /** |
74 75 | * A component creating a list of editable relationships of a certain type |
75 76 | * The relationships are rendered as a list of related items |
76 77 | */ |