|
25 | 25 | </SharingEntrySimple>
|
26 | 26 | </ul>
|
27 | 27 |
|
| 28 | + <h3>Internal shares</h3> |
28 | 29 | <!-- add new share input -->
|
29 | 30 | <SharingInput v-if="!loading"
|
30 | 31 | :can-reshare="canReshare"
|
|
34 | 35 | :shares="shares"
|
35 | 36 | @open-sharing-details="toggleShareDetailsView" />
|
36 | 37 |
|
37 |
| - <!-- link shares list --> |
38 |
| - <SharingLinkList v-if="!loading" |
39 |
| - ref="linkShareList" |
40 |
| - :can-reshare="canReshare" |
41 |
| - :file-info="fileInfo" |
42 |
| - :shares="linkShares" |
43 |
| - @open-sharing-details="toggleShareDetailsView" /> |
| 38 | + <!-- will move _into_ the dropdown component --> |
| 39 | + <div style="border-top: 1px dotted grey;"></div> |
| 40 | + |
| 41 | + <!-- internal link copy --> |
| 42 | + <SharingEntryInternal :file-info="fileInfo" /> |
| 43 | + |
| 44 | + <div style="border-top: 1px dotted grey;"></div> |
| 45 | + <!-- will move _into_ the dropdown component --> |
44 | 46 |
|
45 | 47 | <!-- other shares list -->
|
46 | 48 | <SharingList v-if="!loading"
|
|
52 | 54 | <!-- inherited shares -->
|
53 | 55 | <SharingInherited v-if="canReshare && !loading" :file-info="fileInfo" />
|
54 | 56 |
|
55 |
| - <!-- internal link copy --> |
56 |
| - <SharingEntryInternal :file-info="fileInfo" /> |
| 57 | + <hr> |
| 58 | + <h3>External shares</h3> |
| 59 | + |
| 60 | + <!-- link shares list --> |
| 61 | + <SharingLinkList v-if="!loading" |
| 62 | + ref="linkShareList" |
| 63 | + :can-reshare="canReshare" |
| 64 | + :file-info="fileInfo" |
| 65 | + :shares="linkShares" |
| 66 | + @open-sharing-details="toggleShareDetailsView" /> |
57 | 67 | </div>
|
58 | 68 |
|
59 | 69 | <!-- additional entries, use it with cautious -->
|
|
67 | 77 |
|
68 | 78 | <!-- projects (deprecated as of NC25 (replaced by related_resources) - see instance config "projects.enabled" ; ignore this / remove it / move into own section) -->
|
69 | 79 | <div v-show="!showSharingDetailsView && projectsEnabled && fileInfo"
|
70 |
| - class="sharingTab__additionalContent"> |
71 |
| - <CollectionList |
72 |
| - :id="`${fileInfo.id}`" |
| 80 | + class="sharingTab__additionalContent"> |
| 81 | + <CollectionList :id="`${fileInfo.id}`" |
73 | 82 | type="file"
|
74 | 83 | :name="fileInfo.name" />
|
75 | 84 | </div>
|
@@ -432,4 +441,8 @@ export default {
|
432 | 441 | margin: 44px 0;
|
433 | 442 | }
|
434 | 443 | }
|
| 444 | +
|
| 445 | +h3 { |
| 446 | + font-weight: bold; |
| 447 | +} |
435 | 448 | </style>
|
0 commit comments