mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	mail account + rule deletion
This commit is contained in:
		| @@ -222,21 +222,26 @@ | ||||
|       <ng-template ngbNavContent> | ||||
|  | ||||
|         <h4 i18n>Mail accounts</h4> | ||||
|         <ul formGroupName="mailAccounts"> | ||||
|         <ul class="list-group" formGroupName="mailAccounts"> | ||||
|  | ||||
|             <li class="row mb-1"> | ||||
|             <li class="list-group-item"> | ||||
|               <div class="row"> | ||||
|                 <div class="col" i18n>Name</div> | ||||
|                 <div class="col" i18n>Server</div> | ||||
|                 <div class="col"> </div> | ||||
|                 <div class="col" i18n>Actions</div> | ||||
|               </div> | ||||
|             </li> | ||||
|  | ||||
|             <li *ngFor="let account of mailAccounts" [formGroupName]="account.id" class="row mb-1"> | ||||
|             <li *ngFor="let account of mailAccounts" class="list-group-item" [formGroupName]="account.id"> | ||||
|               <div class="row"> | ||||
|                 <div class="col"><button class="btn btn-link p-0" type="button" (click)="editMailAccount(account)">{{account.name}}</button></div> | ||||
|                 <div class="col">{{account.imap_server}}</div> | ||||
|                 <div class="col"><button class="btn btn-primary" type="button" (click)="editMailAccount(account)" i18n>Edit</button></div> | ||||
|                 <div class="col"> | ||||
|                   <div class="btn-group"> | ||||
|                     <button class="btn btn-primary" type="button" (click)="editMailAccount(account)" i18n>Edit</button> | ||||
|                     <button class="btn btn-outline-danger" type="button" (click)="deleteMailAccount(account)" i18n>Delete</button> | ||||
|                   </div> | ||||
|                 </div> | ||||
|               </div> | ||||
|             </li> | ||||
|  | ||||
| @@ -244,21 +249,26 @@ | ||||
|         </ul> | ||||
|  | ||||
|         <h4 class="mt-4" i18n>Mail rules</h4> | ||||
|         <ul formGroupName="mailRules"> | ||||
|         <ul class="list-group" formGroupName="mailRules"> | ||||
|  | ||||
|             <li class="row mb-1"> | ||||
|             <li class="list-group-item"> | ||||
|               <div class="row"> | ||||
|                 <div class="col" i18n>Name</div> | ||||
|                 <div class="col" i18n>Account</div> | ||||
|                 <div class="col"> </div> | ||||
|                 <div class="col" i18n>Actions</div> | ||||
|               </div> | ||||
|             </li> | ||||
|  | ||||
|             <li *ngFor="let rule of mailRules" [formGroupName]="rule.id" class="row"> | ||||
|             <li *ngFor="let rule of mailRules" class="list-group-item" [formGroupName]="rule.id"> | ||||
|               <div class="row"> | ||||
|                 <div class="col"><button class="btn btn-link p-0" type="button" (click)="editMailRule(rule)">{{rule.name}}</button></div> | ||||
|                 <div class="col">{{rule.account.name}}</div> | ||||
|                 <div class="col"><button class="btn btn-primary" type="button" (click)="editMailRule(rule)" i18n>Edit</button></div> | ||||
|                 <div class="col"> | ||||
|                   <div class="btn-group"> | ||||
|                     <button class="btn btn-primary" type="button" (click)="editMailRule(rule)" i18n>Edit</button> | ||||
|                     <button class="btn btn-outline-danger" type="button" (click)="deleteMailRule(rule)" i18n>Delete</button> | ||||
|                   </div> | ||||
|                 </div> | ||||
|               </div> | ||||
|             </li> | ||||
|  | ||||
|   | ||||
| @@ -36,6 +36,7 @@ import { MailRuleService } from 'src/app/services/rest/mail-rule.service' | ||||
| import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | ||||
| import { MailAccountEditDialogComponent } from '../../common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component' | ||||
| import { MailRuleEditDialogComponent } from '../../common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component' | ||||
| import { ConfirmDialogComponent } from '../../common/confirm-dialog/confirm-dialog.component' | ||||
|  | ||||
| @Component({ | ||||
|   selector: 'app-settings', | ||||
| @@ -500,6 +501,21 @@ export class SettingsComponent | ||||
|     //   }) | ||||
|   } | ||||
|  | ||||
|   deleteMailAccount(account: PaperlessMailAccount) { | ||||
|     let modal = this.modalService.open(ConfirmDialogComponent, { | ||||
|       backdrop: 'static', | ||||
|     }) | ||||
|     modal.componentInstance.title = $localize`Confirm delete mail account` | ||||
|     modal.componentInstance.messageBold = $localize`This operation will permanently this mail account.` | ||||
|     modal.componentInstance.message = $localize`This operation cannot be undone.` | ||||
|     modal.componentInstance.btnClass = 'btn-danger' | ||||
|     modal.componentInstance.btnCaption = $localize`Proceed` | ||||
|     modal.componentInstance.confirmClicked.subscribe(() => { | ||||
|       modal.componentInstance.buttonsEnabled = false | ||||
|       this.mailAccountService.delete(account) | ||||
|     }) | ||||
|   } | ||||
|  | ||||
|   editMailRule(rule: PaperlessMailRule) { | ||||
|     console.log(rule) | ||||
|  | ||||
| @@ -524,4 +540,19 @@ export class SettingsComponent | ||||
|     //     this.documentForm.get('storage_path').setValue(newStoragePath.id) | ||||
|     //   }) | ||||
|   } | ||||
|  | ||||
|   deleteMailRule(rule: PaperlessMailRule) { | ||||
|     let modal = this.modalService.open(ConfirmDialogComponent, { | ||||
|       backdrop: 'static', | ||||
|     }) | ||||
|     modal.componentInstance.title = $localize`Confirm delete mail rule` | ||||
|     modal.componentInstance.messageBold = $localize`This operation will permanently this mail rule.` | ||||
|     modal.componentInstance.message = $localize`This operation cannot be undone.` | ||||
|     modal.componentInstance.btnClass = 'btn-danger' | ||||
|     modal.componentInstance.btnCaption = $localize`Proceed` | ||||
|     modal.componentInstance.confirmClicked.subscribe(() => { | ||||
|       modal.componentInstance.buttonsEnabled = false | ||||
|       this.mailRuleService.delete(rule) | ||||
|     }) | ||||
|   } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Michael Shamoon
					Michael Shamoon