This repository was archived by the owner on Oct 27, 2022. It is now read-only.
File tree 4 files changed +25
-5
lines changed
app/view/src/app/components/main/menu-top/settings
4 files changed +25
-5
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,26 @@ Navigation
34
34
![ Navigation] ( https://raw.githubusercontent.com/button-tech/BrowserBNB/master/docs/img/CreateOrImport.png )
35
35
36
36
## Step 2 (Infrastructure)
37
- - [ ] Add background.js and sessions support
37
+ - [x ] Add background.js and sessions support
38
38
- [x] Make TS wrapper over BNB JS SDK
39
39
- [x] Send to address support
40
- - [ ] Tokens support
40
+ - [x ] Tokens support
41
41
- [x] Multiple accounts support
42
42
- [x] Add first docs and Travis
43
43
- [x] Add BNB TS Wrapper
44
- - [ ] Add forms for feedback and make widget public
44
+ - [x] Add forms for feedback and make widget public
45
+ - [x] Add State service
46
+ - [x] Add BIP44 Derivation support
47
+
48
+ ## Step 3 (Final Beta Public)
49
+ - [ ] Forms to Rx forms
50
+ - [ ] Background logic
51
+ - [ ] WalletConnect + DEX support
52
+ - [ ] Settings support
53
+ - [ ] Free from boostrap + material wastes
54
+ - [ ] Pending tx / notifiactions on background
55
+ - [ ] Custom alerts service + UI
56
+ - [ ] Linting of project
57
+ - [ ] Fix wrappers over JS SDK
58
+ - [ ] Make docs + wiki
59
+ - [ ] Integration tests + BNB SDK tests
Original file line number Diff line number Diff line change 8
8
</ div >
9
9
</ div >
10
10
</ div >
11
- < div style ="margin: 0; padding: 0 " class ="container ">
11
+ < div (click) =" this.showInfo() " style ="margin: 0; padding: 0 " class ="container ">
12
12
< div class ="row ">
13
13
< div class ="col-12 ">
14
14
< div class ="item "
Original file line number Diff line number Diff line change 1
1
import { Component , OnInit } from '@angular/core' ;
2
2
import { Location } from "@angular/common" ;
3
+ import { AlertsService } from "../../../../services/alerts.service" ;
3
4
4
5
@Component ( {
5
6
selector : 'app-settings' ,
@@ -8,7 +9,7 @@ import {Location} from "@angular/common";
8
9
} )
9
10
export class SettingsComponent implements OnInit {
10
11
11
- constructor ( private location : Location ) {
12
+ constructor ( private location : Location , public alert : AlertsService ) {
12
13
}
13
14
14
15
ngOnInit ( ) {
@@ -17,4 +18,8 @@ export class SettingsComponent implements OnInit {
17
18
goBack ( ) {
18
19
this . location . back ( ) ;
19
20
}
21
+ showInfo ( ) {
22
+ this . alert . showError ( 'Not ready' , 'Will be soon' ) ;
23
+ }
24
+
20
25
}
You can’t perform that action at this time.
0 commit comments