mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 03:33:54 +00:00
[Send] Navigation Tab (#1591)
* Initial commit of send tab * update jslib (9ddec9b->859f317) * updated skeleton class/html * removed added space * cleaned up import groupings * Updated to use flex container and removed unnecessary scss class
This commit is contained in:
8
src/popup/send/send.component.html
Normal file
8
src/popup/send/send.component.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<header>
|
||||
</header>
|
||||
<content>
|
||||
<div class="no-items">
|
||||
<i class="fa fa-smile-o fa-4x"></i>
|
||||
<p>Coming soon...</p>
|
||||
</div>
|
||||
</content>
|
||||
35
src/popup/send/send.component.ts
Normal file
35
src/popup/send/send.component.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
import {
|
||||
Component,
|
||||
NgZone,
|
||||
} from '@angular/core';
|
||||
|
||||
import { SendView } from 'jslib/models/view/sendView';
|
||||
|
||||
import { SendComponent as BaseSendComponent } from 'jslib/angular/components/send/send.component';
|
||||
|
||||
import { EnvironmentService } from 'jslib/abstractions/environment.service';
|
||||
import { I18nService } from 'jslib/abstractions/i18n.service';
|
||||
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||||
import { SendService } from 'jslib/abstractions/send.service';
|
||||
|
||||
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-send',
|
||||
templateUrl: 'send.component.html',
|
||||
})
|
||||
export class SendComponent extends BaseSendComponent {
|
||||
constructor(sendService: SendService, i18nService: I18nService,
|
||||
platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService,
|
||||
broadcasterService: BroadcasterService, ngZone: NgZone) {
|
||||
super(sendService, i18nService, platformUtilsService, environmentService, broadcasterService, ngZone);
|
||||
}
|
||||
|
||||
addSend() {
|
||||
// TODO
|
||||
}
|
||||
|
||||
editSend(send: SendView) {
|
||||
// TODO
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user