--- /dev/null
+<div class="modal-header">
+ <h4 class="modal-title">{{ title }}</h4>
+ <button type="button" class="btn-close" aria-label="Close" (click)="close()"></button>
+</div>
+
+<div class="modal-body">
+ @if (loading) {
+ <div class="d-flex align-items-center gap-2">
+ <div class="spinner-border spinner-border-sm" role="status"></div>
+ <span i18n>Loading bulk share links…</span>
+ </div>
+ }
+ @if (!loading && error) {
+ <div class="alert alert-danger mb-0" role="alert">
+ {{ error }}
+ </div>
+ }
+ @if (!loading && !error) {
+ @if (bundles.length === 0) {
+ <p class="mb-0 text-muted fst-italic" i18n>No bulk share links currently exist.</p>
+ }
+ @if (bundles.length > 0) {
+ <div class="table-responsive">
+ <table class="table table-sm align-middle mb-0">
+ <thead>
+ <tr>
+ <th scope="col" i18n>Created</th>
+ <th scope="col" i18n>Status</th>
+ <th scope="col" i18n>Expires</th>
+ <th scope="col" i18n>Documents</th>
+ <th scope="col" i18n>Actions</th>
+ </tr>
+ </thead>
+ <tbody>
+ @for (bundle of bundles; track bundle.id) {
+ <tr>
+ <td>{{ bundle.created | date: 'short' }}</td>
+ <td>
+ <span class="badge text-bg-secondary text-uppercase">{{ bundle.status }}</span>
+ </td>
+ <td>
+ @if (bundle.expiration) {
+ {{ bundle.expiration | date: 'short' }}
+ }
+ @if (!bundle.expiration) {
+ <span i18n>Never</span>
+ }
+ </td>
+ <td>{{ bundle.document_count }}</td>
+ <td>
+ <div class="btn-group btn-group-sm">
+ <button
+ type="button"
+ class="btn btn-outline-primary"
+ (click)="copy(bundle)"
+ >
+ @if (copiedSlug === bundle.slug) {
+ <i-bs name="clipboard-check"></i-bs>
+ }
+ @if (copiedSlug !== bundle.slug) {
+ <i-bs name="clipboard"></i-bs>
+ }
+ <span class="visually-hidden" i18n>Copy link</span>
+ </button>
+ <button
+ type="button"
+ class="btn btn-outline-danger"
+ (click)="delete(bundle)"
+ >
+ <i-bs name="trash"></i-bs>
+ <span class="visually-hidden" i18n>Delete link</span>
+ </button>
+ </div>
+ </td>
+ </tr>
+ }
+ </tbody>
+ </table>
+ </div>
+ }
+ }
+</div>
+
+<div class="modal-footer">
+ <button type="button" class="btn btn-outline-secondary btn-sm" (click)="close()" i18n>Close</button>
+</div>
--- /dev/null
+describe('ShareBundleManageDialogComponent', () => {
+ it('is pending implementation', () => {
+ pending(
+ 'ShareBundleManageDialogComponent tests will be implemented once the dialog logic is finalized.'
+ )
+ })
+})
--- /dev/null
+import { Clipboard } from '@angular/cdk/clipboard'
+import { CommonModule } from '@angular/common'
+import { Component, OnInit, inject } from '@angular/core'
+import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'
+import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
+import { first } from 'rxjs'
+import { ShareBundleSummary } from 'src/app/data/share-bundle'
+import { ShareBundleService } from 'src/app/services/rest/share-bundle.service'
+import { ToastService } from 'src/app/services/toast.service'
+import { environment } from 'src/environments/environment'
+import { LoadingComponentWithPermissions } from '../../loading-component/loading.component'
+
+@Component({
+ selector: 'pngx-share-bundle-manage-dialog',
+ templateUrl: './share-bundle-manage-dialog.component.html',
+ standalone: true,
+ imports: [CommonModule, NgxBootstrapIconsModule],
+})
+export class ShareBundleManageDialogComponent
+ extends LoadingComponentWithPermissions
+ implements OnInit
+{
+ private activeModal = inject(NgbActiveModal)
+ private shareBundleService = inject(ShareBundleService)
+ private toastService = inject(ToastService)
+ private clipboard = inject(Clipboard)
+
+ title = $localize`Bulk Share Links`
+
+ bundles: ShareBundleSummary[] = []
+ error: string
+ copiedSlug: string
+
+ ngOnInit(): void {
+ this.fetchBundles()
+ }
+
+ fetchBundles(): void {
+ this.loading = true
+ this.error = null
+ this.shareBundleService
+ .listAllBundles()
+ .pipe(first())
+ .subscribe({
+ next: (results) => {
+ this.bundles = results
+ this.loading = false
+ },
+ error: (e) => {
+ this.loading = false
+ this.error = $localize`Failed to load bulk share links.`
+ this.toastService.showError(
+ $localize`Error retrieving bulk share links.`,
+ e
+ )
+ },
+ })
+ }
+
+ getShareUrl(bundle: ShareBundleSummary): string {
+ const apiURL = new URL(environment.apiBaseUrl)
+ return `${apiURL.origin}${apiURL.pathname.replace(/\/api\/$/, '/share/')}${
+ bundle.slug
+ }`
+ }
+
+ copy(bundle: ShareBundleSummary): void {
+ const success = this.clipboard.copy(this.getShareUrl(bundle))
+ if (success) {
+ this.copiedSlug = bundle.slug
+ setTimeout(() => {
+ this.copiedSlug = null
+ }, 3000)
+ }
+ }
+
+ delete(bundle: ShareBundleSummary): void {
+ this.shareBundleService.delete(bundle).subscribe({
+ next: () => {
+ this.toastService.showInfo($localize`Bulk share link deleted.`)
+ this.fetchBundles()
+ },
+ error: (e) => {
+ this.toastService.showError(
+ $localize`Error deleting bulk share link.`,
+ e
+ )
+ },
+ })
+ }
+
+ close(): void {
+ this.activeModal.close()
+ }
+}
import { ToggleableItemState } from '../../common/filterable-dropdown/toggleable-dropdown-button/toggleable-dropdown-button.component'
import { PermissionsDialogComponent } from '../../common/permissions-dialog/permissions-dialog.component'
import { ShareBundleDialogComponent } from '../../common/share-bundle-dialog/share-bundle-dialog.component'
+import { ShareBundleManageDialogComponent } from '../../common/share-bundle-manage-dialog/share-bundle-manage-dialog.component'
import { ComponentWithPermissions } from '../../with-permissions/with-permissions.component'
import { CustomFieldsBulkEditDialogComponent } from './custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component'
}
manageShareLinks() {
- this.toastService.showInfo(
- $localize`Bulk share link management is coming soon.`
- )
+ const modal = this.modalService.open(ShareBundleManageDialogComponent, {
+ backdrop: 'static',
+ size: 'lg',
+ })
}
emailSelected() {
import { Injectable } from '@angular/core'
import { Observable } from 'rxjs'
+import { map } from 'rxjs/operators'
import {
ShareBundleCreatePayload,
ShareBundleSummary,
return this.http.post<ShareBundleSummary>(this.getResourceUrl(), payload)
}
- listBundlesForDocuments(
- documentIds: number[]
- ): Observable<ShareBundleSummary[]> {
- const params = { documents: documentIds.join(',') }
- return this.http.get<ShareBundleSummary[]>(this.getResourceUrl(), {
- params,
- })
+ listAllBundles(): Observable<ShareBundleSummary[]> {
+ return this.list(1, 1000, 'created', true).pipe(
+ map((response) => response.results)
+ )
}
}