1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 17:53:39 +00:00

[Send] Add/Edit functionality (#1622)

* Update jslib (0951424 -> 1968dbf)

* [Send] Browser integration initial commit

* Update jslib (1968dbf -> 8a3b551)

* Cleaned up integration

* added radio button style support // updated warning UI/UX

* Update jslib (8a3b551 ->42348e2)
This commit is contained in:
Vincent Salucci
2021-02-23 15:37:55 -06:00
committed by GitHub
parent 2ac9f92267
commit 4853fb3e29
12 changed files with 582 additions and 12 deletions

View File

@@ -5,7 +5,6 @@ import {
} from '@angular/core';
import {
ActivatedRoute,
Router,
} from '@angular/router';
@@ -50,7 +49,7 @@ export class SendGroupingsComponent extends BaseSendComponent {
platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService, ngZone: NgZone,
policyService: PolicyService, userService: UserService, searchService: SearchService,
private popupUtils: PopupUtilsService, private stateService: StateService,
private route: ActivatedRoute, private router: Router, private syncService: SyncService,
private router: Router, private syncService: SyncService,
private changeDetectorRef: ChangeDetectorRef, private broadcasterService: BroadcasterService) {
super(sendService, i18nService, platformUtilsService, environmentService, ngZone, searchService,
policyService, userService);
@@ -122,11 +121,11 @@ export class SendGroupingsComponent extends BaseSendComponent {
}
async selectSend(s: SendView) {
// TODO -> Route to edit send
this.router.navigate(['/edit-send'], { queryParams: { sendId: s.id } });
}
async addSend() {
// TODO -> Route to create send
this.router.navigate(['/add-send']);
}
showSearching() {