mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
[ACA-1887] Shared files - un-share file (#706)
* local ADF component * add share dialog to module * allow shared action from Shared view * change string reference * workaround share dialog from Shared view * debounce reload view time * add e2e test * mark delete on dialog closed * emit event on dialog closed * formcontrolname * cspell datetimepicker * disabled test that need ACA-1886
This commit is contained in:
committed by
Denys Vuika
parent
7f275a8151
commit
4dfc087624
@@ -30,6 +30,7 @@ import { PageComponent } from '../page.component';
|
||||
import { Store } from '@ngrx/store';
|
||||
import { AppStore } from '../../store/states/app.state';
|
||||
import { AppExtensionService } from '../../extensions/extension.service';
|
||||
import { debounceTime } from 'rxjs/operators';
|
||||
|
||||
@Component({
|
||||
templateUrl: './shared-files.component.html'
|
||||
@@ -53,7 +54,9 @@ export class SharedFilesComponent extends PageComponent implements OnInit {
|
||||
this.content.nodesDeleted.subscribe(() => this.reload()),
|
||||
this.content.nodesMoved.subscribe(() => this.reload()),
|
||||
this.content.nodesRestored.subscribe(() => this.reload()),
|
||||
this.content.linksUnshared.subscribe(() => this.reload()),
|
||||
this.content.linksUnshared
|
||||
.pipe(debounceTime(300))
|
||||
.subscribe(() => this.reload()),
|
||||
|
||||
this.breakpointObserver
|
||||
.observe([Breakpoints.HandsetPortrait, Breakpoints.HandsetLandscape])
|
||||
|
Reference in New Issue
Block a user