forked from comixed/comixed
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Issue comixed#20] Enable consolidating the library.
* [Issue comixed#20] Add REST API for conslidating the library. * [Issue comixed#20] Add the consolidation feature to the library state. * [Issue comixed#20] Add the ConsolidateLibrary component and tests. * [Issue comixed#20] Moved LibraryAdminPage into the library module.
- Loading branch information
Showing
39 changed files
with
1,001 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...rontend/src/app/library/components/consolidate-library/consolidate-library.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<div class='ui-g'> | ||
<form [formGroup]='consolidationForm'> | ||
<div class='ui-g-12'> | ||
<p-checkbox id='delete-physical-files' | ||
[binary]='true' | ||
formControlName='deletePhysicalFiles'></p-checkbox> | ||
<label for='delete-physical-files'>{{'consolidate-library.label.delete-physical-files'|translate}}</label> | ||
</div> | ||
<div class='ui-g-12 cx-container-centered-text'> | ||
<button pButton | ||
type='button' | ||
class='cx-action-button' | ||
[label]='"consolidate-library.button.start"|translate' | ||
(click)='consolidateLibrary()'></button> | ||
</div> | ||
</form> | ||
</div> |
3 changes: 3 additions & 0 deletions
3
...rontend/src/app/library/components/consolidate-library/consolidate-library.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
p-checkbox { | ||
padding-right: 5px; | ||
} |
Oops, something went wrong.