Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
5348e6f7
Commit
5348e6f7
authored
Aug 02, 2018
by
Paul Herbert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2100 - Breeze ICO updates: functionality complete, first-cut
parent
b1355d6a
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
96 additions
and
64 deletions
+96
-64
package.json
Breeze.UI/package.json
+0
-1
app.module.ts
Breeze.UI/src/app/app.module.ts
+2
-1
navigation.service.ts
Breeze.UI/src/app/shared/services/navigation.service.ts
+26
-0
advanced.component.html
Breeze.UI/src/app/wallet/advanced/advanced.component.html
+23
-31
advanced.component.ts
Breeze.UI/src/app/wallet/advanced/advanced.component.ts
+15
-17
advanced.service.ts
Breeze.UI/src/app/wallet/advanced/advanced.service.ts
+17
-5
feedback.component.html
.../src/app/wallet/advanced/feedback/feedback.component.html
+6
-6
dashboard.component.ts
Breeze.UI/src/app/wallet/dashboard/dashboard.component.ts
+3
-2
sidebar.component.ts
Breeze.UI/src/app/wallet/sidebar/sidebar.component.ts
+4
-1
No files found.
Breeze.UI/package.json
View file @
5348e6f7
...
@@ -58,7 +58,6 @@
...
@@ -58,7 +58,6 @@
"core-js"
:
"2.5.3"
,
"core-js"
:
"2.5.3"
,
"electron-context-menu"
:
"0.9.1"
,
"electron-context-menu"
:
"0.9.1"
,
"enhanced-resolve"
:
"3.4.1"
,
"enhanced-resolve"
:
"3.4.1"
,
"ng2-datepicker"
:
"^3.1.0"
,
"ngx-bootstrap"
:
"2.0.0-beta.11"
,
"ngx-bootstrap"
:
"2.0.0-beta.11"
,
"ngx-clipboard"
:
"9.0.0"
,
"ngx-clipboard"
:
"9.0.0"
,
"rxjs"
:
"5.5.5"
,
"rxjs"
:
"5.5.5"
,
...
...
Breeze.UI/src/app/app.module.ts
View file @
5348e6f7
...
@@ -17,6 +17,7 @@ import { GenericModalComponent } from './shared/components/generic-modal/generic
...
@@ -17,6 +17,7 @@ import { GenericModalComponent } from './shared/components/generic-modal/generic
import
{
ApiService
}
from
'./shared/services/api.service'
;
import
{
ApiService
}
from
'./shared/services/api.service'
;
import
{
GlobalService
}
from
'./shared/services/global.service'
;
import
{
GlobalService
}
from
'./shared/services/global.service'
;
import
{
ModalService
}
from
'./shared/services/modal.service'
;
import
{
ModalService
}
from
'./shared/services/modal.service'
;
import
{
NavigationService
}
from
'./shared/services/navigation.service'
;
import
{
SendComponent
}
from
'./wallet/send/send.component'
;
import
{
SendComponent
}
from
'./wallet/send/send.component'
;
import
{
SendConfirmationComponent
}
from
'./wallet/send/send-confirmation/send-confirmation.component'
;
import
{
SendConfirmationComponent
}
from
'./wallet/send/send-confirmation/send-confirmation.component'
;
...
@@ -55,7 +56,7 @@ import { LogoutConfirmationComponent } from './wallet/logout-confirmation/logout
...
@@ -55,7 +56,7 @@ import { LogoutConfirmationComponent } from './wallet/logout-confirmation/logout
TransactionDetailsComponent
,
TransactionDetailsComponent
,
LogoutConfirmationComponent
LogoutConfirmationComponent
],
],
providers
:
[
ApiService
,
GlobalService
,
ModalService
,
Title
],
providers
:
[
NavigationService
,
ApiService
,
GlobalService
,
ModalService
,
Title
],
bootstrap
:
[
AppComponent
]
bootstrap
:
[
AppComponent
]
})
})
...
...
Breeze.UI/src/app/shared/services/navigation.service.ts
0 → 100644
View file @
5348e6f7
import
{
Injectable
}
from
'@angular/core'
;
import
{
Router
,
Event
,
NavigationEnd
}
from
'@angular/router'
;
import
{
filter
}
from
'rxjs/operator/filter'
;
import
{
map
}
from
'rxjs/operator/map'
;
import
{
ReplaySubject
}
from
'rxJs/ReplaySubject'
;
export
enum
Page
{
Bitcoin
,
Stratis
}
@
Injectable
()
export
class
NavigationService
{
private
readonly
navBase
=
'/wallet'
;
constructor
(
router
:
Router
)
{
const
navigation$
=
router
.
events
.
filter
(
x
=>
x
instanceof
NavigationEnd
)
.
map
(
x
=>
<
NavigationEnd
>
x
)
.
map
(
x
=>
x
.
url
);
navigation$
.
filter
(
x
=>
x
===
this
.
navBase
).
subscribe
(
_
=>
this
.
pageSubject
.
next
(
Page
.
Bitcoin
));
navigation$
.
filter
(
x
=>
x
===
`
${
this
.
navBase
}
/stratis-wallet`
).
subscribe
(
_
=>
this
.
pageSubject
.
next
(
Page
.
Stratis
));
}
public
pageSubject
=
new
ReplaySubject
(
1
);
}
Breeze.UI/src/app/wallet/advanced/advanced.component.html
View file @
5348e6f7
<div
class=
"mainDiv"
>
<div
class=
"mainDiv"
>
<form
[
formGroup
]='
icoFormGroup
'
>
<form
[
formGroup
]='
icoFormGroup
'
>
<div
style=
"margin-top:
15
px"
>
<div
style=
"margin-top:
20
px"
>
<div>
<div>
<label
style=
"font-size:14px;margin-bottom:0px"
>
Extended Public Key
</label>
<label
style=
"font-size:14px;margin-bottom:0px"
>
Extended Public Key
</label>
...
@@ -12,40 +12,32 @@
...
@@ -12,40 +12,32 @@
</ng-template>
</ng-template>
</div>
</div>
<div
style=
"margin-top:30px"
>
<div
style=
"
display: flex; flex-direction: row;
margin-top:30px"
>
<
label
style=
"font-size:14px;margin-bottom:1px"
>
Generate Addresses
</label
>
<
div
style=
"width:275px"
>
<div
style=
"display:flex; flex-direction:row"
>
<label
style=
"font-size:14px;margin-bottom:1px"
>
Generate Addresses
</label
>
<div
class=
"input-group"
style=
"height:35px; margin-bottom:1px; width:240
px"
>
<div
style=
"display:flex; flex-direction:row; height:34
px"
>
<input
formControlName=
"addressCountControl"
type=
"text"
class=
"form-control"
placeholder=
"Number to generate..."
style=
"border-radius: 0px"
>
<input
formControlName=
"addressCountControl"
type=
"text"
class=
"form-control"
placeholder=
"Number to generate..."
style=
"border-radius: 0px
; width: 163px
"
>
<
span
class=
"input-group-btn"
>
<
button
*
ngIf=
"!addressCountControl.invalid && addressCount"
[
disabled
]="
addressCountControl
.
invalid
||
!
addressCount
"
(
click
)="
generateAddresses
()"
<div
>
class=
"btn btn-darkgray btn-sm"
type=
"button"
style=
"margin-left: 5px"
>
Go
</button
>
<button
*
ngIf=
"!addressCountControl.invalid && addressCount"
(
click
)="
generateAddresses
()"
class=
"btn btn-default"
type=
"button"
>
Go
</button>
<img
style=
"width:16px; height:16px; margin-left:6px; margin-top:8px"
*
ngIf=
"showAddressesTick"
src=
"../../../assets/images/Tick_Mark-16.png"
<button
*
ngIf=
"addressCountControl.invalid || !addressCount"
style=
"color: gray; outline:none"
class=
"btn btn-default"
type=
"button"
>
Go
</button
>
/
>
</div>
<app-feedback
*
ngIf=
"!generateAddressesLoadingState.success"
style=
"margin-left:5px; width:115px"
[
loading
]="
generateAddressesLoadingState
.
loading
"
</span
>
[
errored
]="
generateAddressesLoadingState
.
errored
"
[
erroredText
]="'
Failed
'"
></app-feedback
>
</div>
</div>
<img
style=
"width:16px; height:16px; margin-left:6px"
*
ngIf=
"showAddressesTick"
src=
"../../../assets/images/Tick_Mark-16.png"
/>
<app-feedback
*
ngIf=
"!generateAddressesLoadingState.success"
style=
"margin-left:5px; width:115px"
[
loading
]="
generateAddressesLoadingState
.
loading
"
[
errored
]="
generateAddressesLoadingState
.
errored
"
[
erroredText
]="'
Failed
to
generate
'"
></app-feedback>
</div>
</div>
</div>
<div
style=
"margin-top:30px"
>
<div
style=
"margin-left: 30px"
>
<label
style=
"font-size:14px;margin-bottom:1px"
>
Resync
</label>
<label
style=
"font-size:14px;margin-bottom:1px"
>
Resync
</label>
<div
style=
"display:flex; flex-direction:row"
>
<div
style=
"display:flex; flex-direction:row"
>
<div
class=
"input-group"
style=
"height:35px; margin-bottom:1px; width:240px"
>
<ngb-datepicker
[(
ngModel
)]="
resyncDate
"
[
outsideDays
]="
hidden
"
[
minDate
]="
minResyncDate
"
[
maxDate
]="
maxResyncDate
"
style=
"outline:none; border:none"
<ng-datepicker
style=
"width:163px"
[(
ngModel
)]="
resyncDate
"
[
options
]="
resyncDateOptions
"
formControlName=
"datePickerControl"
></ng-datepicker>
formControlName=
"datePickerControl"
></ngb-datepicker>
<span
class=
"input-group-btn"
>
<button
[
disabled
]="!
resyncDate
"
style=
"margin-left: 5px; align-self:flex-start; height:34px"
(
click
)="
resync
()"
class=
"btn btn-darkgray btn-sm"
<div>
type=
"button"
>
Go
</button>
<button
style=
"height: 35px"
(
click
)="
resync
()"
class=
"btn btn-default"
type=
"button"
>
Go
</button>
<img
style=
"width:16px; height:16px; margin-left:6px; margin-top:8px"
*
ngIf=
"showResyncTick"
src=
"../../../assets/images/Tick_Mark-16.png"
</div>
/>
</span>
<app-feedback
*
ngIf=
"!resyncLoadingState.success"
style=
"margin-left:5px; width:65px"
[
loading
]="
resyncLoadingState
.
loading
"
[
errored
]="
resyncLoadingState
.
errored
"
[
erroredText
]="'
Failed
'"
></app-feedback>
</div>
</div>
<img
style=
"width:16px; height:16px; margin-left:6px"
*
ngIf=
"showResyncTick"
src=
"../../../assets/images/Tick_Mark-16.png"
/>
<app-feedback
*
ngIf=
"!resyncLoadingState.success"
style=
"margin-left:5px; width:115px"
[
loading
]="
resyncLoadingState
.
loading
"
[
errored
]="
resyncLoadingState
.
errored
"
[
erroredText
]="'
Failed
to
sync
'"
></app-feedback>
</div>
</div>
</div>
</div>
...
...
Breeze.UI/src/app/wallet/advanced/advanced.component.ts
View file @
5348e6f7
import
{
Component
,
OnInit
,
OnDestroy
,
Input
}
from
'@angular/core'
;
import
{
Component
,
OnInit
,
OnDestroy
,
Input
}
from
'@angular/core'
;
import
{
Subscription
}
from
'rxJs/Subscription'
;
import
{
Subscription
}
from
'rxJs/Subscription'
;
import
{
FormGroup
,
Validators
,
FormBuilder
}
from
'@angular/forms'
;
import
{
FormGroup
,
Validators
,
FormBuilder
}
from
'@angular/forms'
;
import
{
DatepickerOptions
}
from
'ng2-datepicker
'
;
import
{
NgbDateStruct
}
from
'@ng-bootstrap/ng-bootstrap
'
;
import
{
AdvancedService
}
from
'./advanced.service'
;
import
{
AdvancedService
}
from
'./advanced.service'
;
import
{
LoadingState
}
from
'./loadingState'
;
import
{
LoadingState
}
from
'./loadingState'
;
...
@@ -23,23 +23,23 @@ export class AdvancedComponent implements OnInit, OnDestroy {
...
@@ -23,23 +23,23 @@ export class AdvancedComponent implements OnInit, OnDestroy {
public
icoFormGroup
:
FormGroup
;
public
icoFormGroup
:
FormGroup
;
public
extPubKey
=
""
;
public
extPubKey
=
""
;
public
resyncDate
=
new
Date
()
;
public
resyncDate
:
NgbDateStruct
;
public
extPubKeyLoadingState
=
new
LoadingState
();
public
extPubKeyLoadingState
=
new
LoadingState
();
public
generateAddressesLoadingState
=
new
LoadingState
();
public
generateAddressesLoadingState
=
new
LoadingState
();
public
resyncDateOptions
:
DatepickerOptions
;
public
resyncLoadingState
=
new
LoadingState
();
public
resyncLoadingState
=
new
LoadingState
();
public
maxResyncDate
:
NgbDateStruct
;
public
minResyncDate
:
NgbDateStruct
;
public
get
datePickerControl
()
{
return
this
.
icoFormGroup
.
get
(
'datePickerControl'
);
}
public
get
datePickerControl
()
{
return
this
.
icoFormGroup
.
get
(
'datePickerControl'
);
}
public
get
addressCountControl
()
{
return
this
.
icoFormGroup
.
get
(
'addressCountControl'
);
}
public
get
addressCountControl
()
{
return
this
.
icoFormGroup
.
get
(
'addressCountControl'
);
}
public
get
showAddressesTick
()
{
public
get
showAddressesTick
()
{
return
this
.
generateAddressesLoadingState
.
success
&&
return
this
.
generateAddressesLoadingState
.
success
&&
this
.
addresses
.
length
&&
(
Number
(
this
.
addressCount
)
===
this
.
addresses
.
length
);
this
.
addresses
.
length
&&
(
Number
(
this
.
addressCount
)
===
this
.
addresses
.
length
);
}
}
public
get
showResyncTick
():
boolean
{
return
this
.
resyncLoadingState
.
success
&&
this
.
resyncActioned
;
}
public
get
showResyncTick
():
boolean
{
return
this
.
resyncLoadingState
.
success
&&
this
.
resyncActioned
;
}
ngOnInit
()
{
ngOnInit
()
{
this
.
registerFormControls
();
this
.
registerFormControls
();
this
.
setResyncDateOptions
();
this
.
loadExtPubKey
();
this
.
loadExtPubKey
();
this
.
setResyncDates
();
}
}
public
generateAddresses
()
{
public
generateAddresses
()
{
...
@@ -58,11 +58,18 @@ export class AdvancedComponent implements OnInit, OnDestroy {
...
@@ -58,11 +58,18 @@ export class AdvancedComponent implements OnInit, OnDestroy {
this
.
resyncSubs
.
unsubscribe
();
this
.
resyncSubs
.
unsubscribe
();
}
}
this
.
resyncLoadingState
.
loading
=
this
.
resyncActioned
=
true
;
this
.
resyncLoadingState
.
loading
=
this
.
resyncActioned
=
true
;
this
.
resyncSubs
=
this
.
advancedService
.
resyncFromDate
(
this
.
resyncDate
)
const
date
=
new
Date
(
this
.
resyncDate
.
year
,
this
.
resyncDate
.
month
-
1
,
this
.
resyncDate
.
day
);
this
.
resyncSubs
=
this
.
advancedService
.
resyncFromDate
(
date
)
.
subscribe
(
_
=>
this
.
onResync
(),
.
subscribe
(
_
=>
this
.
onResync
(),
_
=>
this
.
resyncLoadingState
.
errored
=
true
);
_
=>
this
.
resyncLoadingState
.
errored
=
true
);
}
}
private
setResyncDates
()
{
const
now
=
new
Date
();
this
.
maxResyncDate
=
{
year
:
now
.
getFullYear
(),
month
:
now
.
getMonth
()
+
1
,
day
:
now
.
getDate
()}
this
.
minResyncDate
=
{
year
:
now
.
getFullYear
(),
month
:
1
,
day
:
1
}
}
private
loadExtPubKey
()
{
private
loadExtPubKey
()
{
this
.
extPubKeyLoadingState
.
loading
=
true
;
this
.
extPubKeyLoadingState
.
loading
=
true
;
this
.
extPubKeySubs
=
this
.
advancedService
.
getExtPubKey
()
this
.
extPubKeySubs
=
this
.
advancedService
.
getExtPubKey
()
...
@@ -99,15 +106,6 @@ export class AdvancedComponent implements OnInit, OnDestroy {
...
@@ -99,15 +106,6 @@ export class AdvancedComponent implements OnInit, OnDestroy {
});
});
}
}
private
setResyncDateOptions
()
{
const
today
=
new
Date
();
this
.
resyncDateOptions
=
{
minDate
:
new
Date
(
today
.
getFullYear
(),
0
),
maxDate
:
today
,
displayFormat
:
'MMMM D[,] YYYY'
};
}
ngOnDestroy
()
{
ngOnDestroy
()
{
if
(
this
.
extPubKeySubs
)
{
if
(
this
.
extPubKeySubs
)
{
this
.
extPubKeySubs
.
unsubscribe
();
this
.
extPubKeySubs
.
unsubscribe
();
...
...
Breeze.UI/src/app/wallet/advanced/advanced.service.ts
View file @
5348e6f7
import
{
Injectable
}
from
'@angular/core'
;
import
{
Injectable
}
from
'@angular/core'
;
import
{
Observable
}
from
'rxjs/Observable'
;
import
{
Observable
}
from
'rxjs/Observable'
;
import
{
HttpClient
}
from
'@angular/common/http'
;
import
{
HttpClient
,
HttpHeaders
}
from
'@angular/common/http'
;
import
'rxjs/add/observable/empty'
;
import
'rxjs/add/observable/empty'
;
import
{
GlobalService
}
from
'../../shared/services/global.service'
;
import
{
GlobalService
}
from
'../../shared/services/global.service'
;
import
{
NavigationService
,
Page
}
from
'../../shared/services/navigation.service'
;
class
dateRequest
{
constructor
(
public
date
:
Date
){}
}
@
Injectable
()
@
Injectable
()
export
class
AdvancedService
{
export
class
AdvancedService
{
private
readonly
accountName
=
'account 0
'
;
private
urlPrefix
=
'
'
;
private
readonly
walletName
;
private
readonly
walletName
;
private
readonly
urlPrefix
=
'http://localhost:37221/api/Wallet/'
;
private
readonly
accountName
=
'account 0'
;
private
headers
=
new
HttpHeaders
({
'Content-Type'
:
'application/json'
});
constructor
(
private
httpClient
:
HttpClient
,
private
globalService
:
GlobalService
)
{
constructor
(
private
httpClient
:
HttpClient
,
private
globalService
:
GlobalService
,
navigationService
:
NavigationService
)
{
this
.
walletName
=
this
.
globalService
.
getWalletName
();
this
.
walletName
=
this
.
globalService
.
getWalletName
();
navigationService
.
pageSubject
.
subscribe
(
x
=>
this
.
urlPrefix
=
`http://localhost:3722
${
Page
.
Bitcoin
?
0
:
1
}
/api/Wallet/`
);
}
}
public
getExtPubKey
():
Observable
<
string
>
{
public
getExtPubKey
():
Observable
<
string
>
{
...
@@ -26,7 +35,10 @@ export class AdvancedService {
...
@@ -26,7 +35,10 @@ export class AdvancedService {
}
}
public
resyncFromDate
(
date
:
Date
):
Observable
<
any
>
{
public
resyncFromDate
(
date
:
Date
):
Observable
<
any
>
{
return
Observable
.
empty
<
any
>
();
date
=
new
Date
(
date
.
getFullYear
(),
date
.
getMonth
(),
date
.
getDate
());
//<- Strip any time values
const
url
=
`
${
this
.
urlPrefix
}
syncfromdate`
;
const
data
=
JSON
.
stringify
(
new
dateRequest
(
date
));
return
this
.
httpClient
.
post
(
url
,
data
,
{
headers
:
this
.
headers
}).
map
((
x
:
Response
)
=>
x
);
}
}
private
processAddresses
(
response
:
any
):
string
[]
{
private
processAddresses
(
response
:
any
):
string
[]
{
...
...
Breeze.UI/src/app/wallet/advanced/feedback/feedback.component.html
View file @
5348e6f7
<div>
<div>
<div
class=
"progress"
*
ngIf=
"loading"
>
<div
class=
"progress"
*
ngIf=
"loading"
>
<div
class=
"progress-bar progress-bar-striped progress-bar-animated"
<div
class=
"progress-bar progress-bar-striped progress-bar-animated"
role=
"progressbar"
aria-valuenow=
"100"
role=
"progressbar"
aria-valuenow=
"100"
aria-valuemin=
"0"
aria-valuemax=
"100"
style=
"width: 100%"
>
aria-valuemin=
"0"
aria-valuemax=
"100"
style=
"width: 100%"
>
Working...
<label
style=
"font-size:10px"
>
Working...
</label>
</div>
</div>
</div>
</div>
<div
class=
"alert alert-danger"
role=
"alert"
*
ngIf=
"errored"
>
<div
class=
"alert alert-danger"
role=
"alert"
*
ngIf=
"errored"
>
{{erroredText}}
<label>
{{erroredText}}
</label>
</div>
</div>
</div>
</div>
\ No newline at end of file
Breeze.UI/src/app/wallet/dashboard/dashboard.component.ts
View file @
5348e6f7
...
@@ -95,8 +95,9 @@ export class DashboardComponent implements OnInit {
...
@@ -95,8 +95,9 @@ export class DashboardComponent implements OnInit {
.
subscribe
(
.
subscribe
(
response
=>
{
response
=>
{
if
(
response
.
status
>=
200
&&
response
.
status
<
400
)
{
if
(
response
.
status
>=
200
&&
response
.
status
<
400
)
{
if
(
response
.
json
().
transactionsHistory
.
length
>
0
)
{
const
json
=
response
.
json
();
historyResponse
=
response
.
json
().
transactionsHistory
;
if
(
json
.
transactionsHistory
)
{
historyResponse
=
json
.
transactionsHistory
;
this
.
getTransactionInfo
(
historyResponse
);
this
.
getTransactionInfo
(
historyResponse
);
}
}
}
}
...
...
Breeze.UI/src/app/wallet/sidebar/sidebar.component.ts
View file @
5348e6f7
...
@@ -6,6 +6,7 @@ import { Router } from '@angular/router';
...
@@ -6,6 +6,7 @@ import { Router } from '@angular/router';
import
{
ApiService
}
from
'../../shared/services/api.service'
;
import
{
ApiService
}
from
'../../shared/services/api.service'
;
import
{
GlobalService
}
from
'../../shared/services/global.service'
;
import
{
GlobalService
}
from
'../../shared/services/global.service'
;
import
{
ModalService
}
from
'../../shared/services/modal.service'
;
import
{
ModalService
}
from
'../../shared/services/modal.service'
;
import
{
NavigationService
}
from
'../../shared/services/navigation.service'
;
import
{
WalletInfo
}
from
'../../shared/classes/wallet-info'
;
import
{
WalletInfo
}
from
'../../shared/classes/wallet-info'
;
...
@@ -16,7 +17,9 @@ import { WalletInfo } from '../../shared/classes/wallet-info';
...
@@ -16,7 +17,9 @@ import { WalletInfo } from '../../shared/classes/wallet-info';
})
})
export
class
SidebarComponent
implements
OnInit
{
export
class
SidebarComponent
implements
OnInit
{
constructor
(
private
globalService
:
GlobalService
,
private
apiService
:
ApiService
,
private
router
:
Router
,
private
modalService
:
NgbModal
,
private
genericModalService
:
ModalService
)
{
}
constructor
(
private
globalService
:
GlobalService
,
private
apiService
:
ApiService
,
private
router
:
Router
,
private
modalService
:
NgbModal
,
private
genericModalService
:
ModalService
,
private
navigationService
:
NavigationService
)
{
}
public
bitcoinActive
:
boolean
;
public
bitcoinActive
:
boolean
;
public
stratisActive
:
boolean
;
public
stratisActive
:
boolean
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment