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
8f9931f9
Commit
8f9931f9
authored
Sep 26, 2017
by
Pieterjan Vanhoof
Committed by
GitHub
Sep 26, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #236 from stratisproject/ui
Various updates
parents
e78d16b2
41cc4367
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
159 additions
and
143 deletions
+159
-143
package.json
Breeze.UI/package.json
+65
-65
postcss.config.js
Breeze.UI/postcss.config.js
+1
-0
protractor.conf.js
Breeze.UI/protractor.conf.js
+4
-2
app.component.ts
Breeze.UI/src/app/app.component.ts
+1
-1
login.component.ts
Breeze.UI/src/app/login/login.component.ts
+1
-1
create.component.ts
Breeze.UI/src/app/setup/create/create.component.ts
+4
-4
recover.component.ts
Breeze.UI/src/app/setup/recover/recover.component.ts
+5
-5
setup.component.ts
Breeze.UI/src/app/setup/setup.component.ts
+3
-3
dashboard.component.ts
Breeze.UI/src/app/wallet/dashboard/dashboard.component.ts
+6
-6
history.component.ts
Breeze.UI/src/app/wallet/history/history.component.ts
+1
-1
logout-confirmation.component.ts
...llet/logout-confirmation/logout-confirmation.component.ts
+2
-2
receive.component.ts
Breeze.UI/src/app/wallet/receive/receive.component.ts
+3
-3
send-confirmation.component.ts
...let/send/send-confirmation/send-confirmation.component.ts
+1
-1
send.component.ts
Breeze.UI/src/app/wallet/send/send.component.ts
+4
-4
sidebar.component.html
Breeze.UI/src/app/wallet/sidebar/sidebar.component.html
+1
-1
sidebar.component.ts
Breeze.UI/src/app/wallet/sidebar/sidebar.component.ts
+11
-10
status-bar.component.ts
Breeze.UI/src/app/wallet/status-bar/status-bar.component.ts
+4
-4
transaction-details.component.ts
...llet/transaction-details/transaction-details.component.ts
+2
-2
tsconfig.json
Breeze.UI/tsconfig.json
+4
-0
webpack.config.js
Breeze.UI/webpack.config.js
+36
-28
No files found.
Breeze.UI/package.json
View file @
8f9931f9
{
"name"
:
"breeze-ui"
,
"description"
:
"Graphical User Interface for Breeze Wallet."
,
"version"
:
"0.
1
.0"
,
"version"
:
"0.
2
.0"
,
"author"
:
{
"name"
:
"Pieterjan Vanhoof"
,
"email"
:
"pieterjan.vanhoof@stratisplatform.com"
...
...
@@ -14,26 +14,26 @@
"stratis"
,
"angular"
,
"electron"
,
"typescript"
,
"scss"
,
"bootstrap"
],
"main"
:
"main.js"
,
"angular-cli"
:
{},
"scripts"
:
{
"ng"
:
"ng"
,
"lint"
:
"ng lint"
,
"start"
:
"concurrently
\"
npm run start:webpack
\"
\"
npm run electron:serve
\"
"
,
"start:webpack"
:
"webpack --watch"
,
"start:web"
:
"webpack-dev-server --content-base . --port 4200 --inline"
,
"start"
:
"npm-run-all --parallel webpack:watch electron:serve"
,
"webpack:watch"
:
"webpack --watch"
,
"build:electron:main"
:
"tsc main.ts --outDir dist && copyfiles package.json dist && cd dist && npm install --prod && cd .."
,
"build"
:
"webpack --display-error-details && npm run build:electron:main"
,
"build:prod"
:
"npm run build"
,
"build:prod"
:
"
cross-env NODE_ENV=production
npm run build"
,
"build:styling"
:
"node-sass --output-style expanded --source-map true --precision 6 ./src/scss/bootstrap.scss ./src/styles.css"
,
"electron:serve"
:
"npm run build:electron:main && electron ./dist --serve"
,
"electron:test"
:
"electron ./dist"
,
"electron:dev"
:
"npm run build && electron ./dist"
,
"electron:prod"
:
"npm run build:prod && electron ./dist"
,
"package:linux"
:
"npm run build:prod && node package.js --platform=linux --arch=x64"
,
"package:windows"
:
"npm run build:prod && node package.js --platform=win32 --arch=ia32"
,
"package:windows"
:
"npm run build:prod && node package.js --
asar --
platform=win32 --arch=ia32"
,
"package:mac"
:
"npm run build:prod && node package.js --platform=darwin --arch=x64"
,
"test"
:
"karma start ./karma.conf.js"
,
"pree2e"
:
"webdriver-manager update --standalone false --gecko false --quiet && npm run build"
,
...
...
@@ -41,76 +41,76 @@
},
"private"
:
true
,
"dependencies"
:
{
"@angular/animations"
:
"
^4.4.1
"
,
"@angular/common"
:
"
^4.4.1
"
,
"@angular/compiler"
:
"
^4.4.1
"
,
"@angular/core"
:
"
^4.4.1
"
,
"@angular/forms"
:
"
^4.4.1
"
,
"@angular/http"
:
"
^4.4.1
"
,
"@angular/platform-browser"
:
"
^4.4.1
"
,
"@angular/platform-browser-dynamic"
:
"
^4.4.1
"
,
"@angular/platform-server"
:
"
^4.4.1
"
,
"@angular/router"
:
"
^4.4.1
"
,
"@ng-bootstrap/ng-bootstrap"
:
"
^
1.0.0-beta.5"
,
"angular2-material-datepicker"
:
"
^
0.5.0"
,
"bootstrap"
:
"
^
4.0.0-beta"
,
"core-js"
:
"
^
2.5.1"
,
"electron-context-menu"
:
"
^
0.9.1"
,
"
ngx-bootstrap"
:
"^1.9.3
"
,
"ngx-clipboard"
:
"
^8.0.4
"
,
"@angular/animations"
:
"
4.4.3
"
,
"@angular/common"
:
"
4.4.3
"
,
"@angular/compiler"
:
"
4.4.3
"
,
"@angular/core"
:
"
4.4.3
"
,
"@angular/forms"
:
"
4.4.3
"
,
"@angular/http"
:
"
4.4.3
"
,
"@angular/platform-browser"
:
"
4.4.3
"
,
"@angular/platform-browser-dynamic"
:
"
4.4.3
"
,
"@angular/platform-server"
:
"
4.4.3
"
,
"@angular/router"
:
"
4.4.3
"
,
"@ng-bootstrap/ng-bootstrap"
:
"1.0.0-beta.5"
,
"angular2-material-datepicker"
:
"0.5.0"
,
"bootstrap"
:
"4.0.0-beta"
,
"core-js"
:
"2.5.1"
,
"electron-context-menu"
:
"0.9.1"
,
"
enhanced-resolve"
:
"3.3.0
"
,
"ngx-clipboard"
:
"
8.1.0
"
,
"rxjs"
:
"5.4.3"
,
"zone.js"
:
"
^
0.8.17"
"zone.js"
:
"0.8.17"
},
"devDependencies"
:
{
"@angular/cli"
:
"^1.4.2"
,
"@angular/compiler-cli"
:
"^4.4.1"
,
"autoprefixer"
:
"^7.1.4"
,
"@angular/cli"
:
"1.4.3"
,
"@angular/compiler-cli"
:
"4.4.3"
,
"@types/core-js"
:
"0.9.36"
,
"@types/jasmine"
:
"2.5.54"
,
"@types/node"
:
"7.0.7"
,
"autoprefixer"
:
"7.1.4"
,
"codelyzer"
:
"3.2.0"
,
"concurrently"
:
"^3.5.0"
,
"copyfiles"
:
"1.2.0"
,
"cross-env"
:
"5.0.5"
,
"css-loader"
:
"
^
0.28.7"
,
"cssnano"
:
"
^
3.10.0"
,
"electron"
:
"
^1.7.6
"
,
"electron-packager"
:
"
^8.7.2
"
,
"css-loader"
:
"0.28.7"
,
"cssnano"
:
"3.10.0"
,
"electron"
:
"
1.7.8
"
,
"electron-packager"
:
"
9.1.0
"
,
"electron-reload"
:
"1.2.1"
,
"exports-loader"
:
"^0.6.4"
,
"extract-zip"
:
"1.6.5"
,
"file-loader"
:
"^0.11.2"
,
"exports-loader"
:
"0.6.4"
,
"file-loader"
:
"0.11.2"
,
"html-loader"
:
"0.5.1"
,
"html-webpack-plugin"
:
"2.30.1"
,
"istanbul-instrumenter-loader"
:
"^3.0.0"
,
"jasmine-core"
:
"~2.8.0"
,
"jasmine-spec-reporter"
:
"~4.2.1"
,
"istanbul-instrumenter-loader"
:
"3.0.0"
,
"jasmine-core"
:
"2.8.0"
,
"jasmine-spec-reporter"
:
"4.2.1"
,
"jquery"
:
"3.2.1"
,
"json-loader"
:
"^0.5.7"
,
"karma"
:
"~1.7.1"
,
"karma-chrome-launcher"
:
"~2.2.0"
,
"karma-cli"
:
"~1.0.1"
,
"karma-coverage-istanbul-reporter"
:
"^1.3.0"
,
"karma-electron"
:
"^5.2.1"
,
"karma-jasmine"
:
"~1.1.0"
,
"karma-jasmine-html-reporter"
:
"^0.2.2"
,
"karma-sourcemap-loader"
:
"^0.3.7"
,
"less-loader"
:
"^4.0.5"
,
"json-loader"
:
"0.5.7"
,
"karma"
:
"1.7.1"
,
"karma-chrome-launcher"
:
"2.2.0"
,
"karma-cli"
:
"1.0.1"
,
"karma-coverage-istanbul-reporter"
:
"1.3.0"
,
"karma-jasmine"
:
"1.1.0"
,
"karma-jasmine-html-reporter"
:
"0.2.2"
,
"karma-sourcemap-loader"
:
"0.3.7"
,
"less-loader"
:
"4.0.5"
,
"minimist"
:
"1.2.0"
,
"mkdirp"
:
"0.5.1"
,
"node-sass"
:
"^4.5.3"
,
"postcss-loader"
:
"^1.3.3"
,
"postcss-url"
:
"^6.0.4"
,
"protractor"
:
"~5.1.2"
,
"raw-loader"
:
"^0.5.1"
,
"sass-loader"
:
"^6.0.6"
,
"script-loader"
:
"^0.7.1"
,
"source-map-loader"
:
"^0.2.1"
,
"style-loader"
:
"^0.18.2"
,
"stylus-loader"
:
"^3.0.1"
,
"ts-node"
:
"~3.3.0"
,
"tslint"
:
"~5.7.0"
,
"npm-run-all"
:
"4.1.1"
,
"node-sass"
:
"4.5.3"
,
"postcss-loader"
:
"2.0.6"
,
"postcss-url"
:
"7.1.2"
,
"protractor"
:
"5.1.2"
,
"raw-loader"
:
"0.5.1"
,
"sass-loader"
:
"6.0.6"
,
"script-loader"
:
"0.7.1"
,
"source-map-loader"
:
"0.2.1"
,
"style-loader"
:
"0.18.2"
,
"stylus-loader"
:
"3.0.1"
,
"ts-node"
:
"3.3.0"
,
"tslint"
:
"5.7.0"
,
"typescript"
:
"2.5.2"
,
"url-loader"
:
"
^
0.5.9"
,
"url-loader"
:
"0.5.9"
,
"webdriver-manager"
:
"12.0.6"
,
"webpack"
:
"
^
3.6.0"
,
"webpack-dev-server"
:
"
~
2.8.2"
"webpack"
:
"3.6.0"
,
"webpack-dev-server"
:
"2.8.2"
}
}
Breeze.UI/postcss.config.js
0 → 100644
View file @
8f9931f9
module
.
exports
=
{};
\ No newline at end of file
Breeze.UI/protractor.conf.js
View file @
8f9931f9
...
...
@@ -4,7 +4,9 @@
const
{
SpecReporter
}
=
require
(
'jasmine-spec-reporter'
);
exports
.
config
=
{
allScriptsTimeout
:
11000
,
allScriptsTimeout
:
25000
,
getPageTimeout
:
15000
,
delayBrowserTimeInSeconds
:
0
,
specs
:
[
'./e2e/**/*.e2e-spec.ts'
],
...
...
@@ -17,7 +19,7 @@ exports.config = {
},
directConnect
:
true
,
baseUrl
:
'http://localhost:4200/'
,
framework
:
'jasmine'
,
framework
:
'jasmine
2
'
,
jasmineNodeOpts
:
{
showColors
:
true
,
defaultTimeoutInterval
:
30000
,
...
...
Breeze.UI/src/app/app.component.ts
View file @
8f9931f9
...
...
@@ -19,7 +19,7 @@ export class AppComponent implements OnInit {
constructor
(
private
router
:
Router
,
private
apiService
:
ApiService
,
private
titleService
:
Title
)
{}
private
errorMessage
:
any
;
private
responseMessage
:
any
;
p
rivate
loading
:
boolean
=
true
;
p
ublic
loading
:
boolean
=
true
;
ngOnInit
()
{
this
.
setTitle
();
...
...
Breeze.UI/src/app/login/login.component.ts
View file @
8f9931f9
...
...
@@ -18,7 +18,7 @@ export class LoginComponent implements OnInit {
}
private
openWalletForm
:
FormGroup
;
p
rivate
hasWallet
:
boolean
=
false
;
p
ublic
hasWallet
:
boolean
=
false
;
private
wallets
:
[
string
];
private
isDecrypting
=
false
;
...
...
Breeze.UI/src/app/setup/create/create.component.ts
View file @
8f9931f9
...
...
@@ -21,10 +21,10 @@ export class CreateComponent implements OnInit {
this
.
buildCreateForm
();
}
p
rivate
createWalletForm
:
FormGroup
;
p
ublic
createWalletForm
:
FormGroup
;
private
newWallet
:
WalletCreation
;
private
mnemonic
:
string
;
p
rivate
isCreating
:
B
oolean
=
false
;
p
ublic
isCreating
:
b
oolean
=
false
;
ngOnInit
()
{
this
.
getNewMnemonic
();
...
...
@@ -95,11 +95,11 @@ export class CreateComponent implements OnInit {
}
};
p
rivate
onBackClicked
()
{
p
ublic
onBackClicked
()
{
this
.
router
.
navigate
([
"/setup"
]);
}
p
rivate
onCreateClicked
()
{
p
ublic
onCreateClicked
()
{
this
.
isCreating
=
true
;
if
(
this
.
mnemonic
)
{
this
.
newWallet
=
new
WalletCreation
(
...
...
Breeze.UI/src/app/setup/recover/recover.component.ts
View file @
8f9931f9
...
...
@@ -19,10 +19,10 @@ export class RecoverComponent implements OnInit {
}
p
rivate
recoverWalletForm
:
FormGroup
;
p
rivate
creationDate
:
Date
;
p
ublic
recoverWalletForm
:
FormGroup
;
p
ublic
creationDate
:
Date
;
private
walletRecovery
:
WalletRecovery
;
p
rivate
isRecovering
:
B
oolean
=
false
;
p
ublic
isRecovering
:
b
oolean
=
false
;
private
responseMessage
:
string
;
private
errorMessage
:
string
;
...
...
@@ -86,11 +86,11 @@ export class RecoverComponent implements OnInit {
},
};
p
rivate
onBackClicked
()
{
p
ublic
onBackClicked
()
{
this
.
router
.
navigate
([
"/setup"
]);
}
p
rivate
onRecoverClicked
(){
p
ublic
onRecoverClicked
(){
this
.
isRecovering
=
true
;
this
.
walletRecovery
=
new
WalletRecovery
(
this
.
recoverWalletForm
.
get
(
"walletName"
).
value
,
...
...
Breeze.UI/src/app/setup/setup.component.ts
View file @
8f9931f9
...
...
@@ -9,15 +9,15 @@ import { Router } from '@angular/router';
})
export
class
SetupComponent
{
constructor
(
private
router
:
Router
,
private
location
:
Location
)
{}
p
rivate
onCreateClicked
()
{
p
ublic
onCreateClicked
()
{
this
.
router
.
navigate
([
'/setup/create'
]);
}
p
rivate
onRecoverClicked
()
{
p
ublic
onRecoverClicked
()
{
this
.
router
.
navigate
([
'/setup/recover'
]);
}
p
rivate
onBackClicked
()
{
p
ublic
onBackClicked
()
{
this
.
router
.
navigate
([
''
]);
}
}
Breeze.UI/src/app/wallet/dashboard/dashboard.component.ts
View file @
8f9931f9
...
...
@@ -21,9 +21,9 @@ import { Subscription } from 'rxjs/Subscription';
export
class
DashboardComponent
implements
OnInit
{
constructor
(
private
apiService
:
ApiService
,
private
globalService
:
GlobalService
,
private
modalService
:
NgbModal
)
{}
p
rivate
confirmedBalance
:
number
;
p
rivate
unconfirmedBalance
:
number
;
p
rivate
transactions
:
any
;
p
ublic
confirmedBalance
:
number
;
p
ublic
unconfirmedBalance
:
number
;
p
ublic
transactions
:
any
;
private
walletBalanceSubscription
:
Subscription
;
private
walletHistorySubscription
:
Subscription
;
...
...
@@ -35,15 +35,15 @@ export class DashboardComponent implements OnInit {
this
.
cancelSubscriptions
();
};
p
rivate
openSendDialog
()
{
p
ublic
openSendDialog
()
{
const
modalRef
=
this
.
modalService
.
open
(
SendComponent
);
};
p
rivate
openReceiveDialog
()
{
p
ublic
openReceiveDialog
()
{
const
modalRef
=
this
.
modalService
.
open
(
ReceiveComponent
);
};
p
rivate
openTransactionDetailDialog
(
transaction
:
any
)
{
p
ublic
openTransactionDetailDialog
(
transaction
:
any
)
{
const
modalRef
=
this
.
modalService
.
open
(
TransactionDetailsComponent
);
modalRef
.
componentInstance
.
transaction
=
transaction
;
}
...
...
Breeze.UI/src/app/wallet/history/history.component.ts
View file @
8f9931f9
...
...
@@ -20,7 +20,7 @@ import { TransactionDetailsComponent } from '../transaction-details/transaction-
export
class
HistoryComponent
{
constructor
(
private
apiService
:
ApiService
,
private
globalService
:
GlobalService
,
private
modalService
:
NgbModal
)
{}
p
rivate
transactions
:
any
;
p
ublic
transactions
:
any
;
private
errorMessage
:
string
;
private
walletHistorySubscription
:
Subscription
;
...
...
Breeze.UI/src/app/wallet/logout-confirmation/logout-confirmation.component.ts
View file @
8f9931f9
...
...
@@ -10,12 +10,12 @@ import {NgbModal, NgbActiveModal} from '@ng-bootstrap/ng-bootstrap';
})
export
class
LogoutConfirmationComponent
implements
OnInit
{
constructor
(
p
rivate
activeModal
:
NgbActiveModal
,
private
router
:
Router
)
{
}
constructor
(
p
ublic
activeModal
:
NgbActiveModal
,
private
router
:
Router
)
{
}
ngOnInit
()
{
}
p
rivate
onLogout
()
{
p
ublic
onLogout
()
{
this
.
activeModal
.
close
();
this
.
router
.
navigate
([
'/login'
]);
}
...
...
Breeze.UI/src/app/wallet/receive/receive.component.ts
View file @
8f9931f9
...
...
@@ -16,15 +16,15 @@ import { NgbModal, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
export
class
ReceiveComponent
{
constructor
(
private
apiService
:
ApiService
,
private
globalService
:
GlobalService
,
public
activeModal
:
NgbActiveModal
)
{}
p
rivate
address
:
any
=
""
;
p
rivate
copied
:
boolean
=
false
;
p
ublic
address
:
any
=
""
;
p
ublic
copied
:
boolean
=
false
;
private
errorMessage
:
string
;
ngOnInit
()
{
this
.
getUnusedReceiveAddresses
();
}
p
rivate
onCopiedClick
()
{
p
ublic
onCopiedClick
()
{
this
.
copied
=
true
;
}
...
...
Breeze.UI/src/app/wallet/send/send-confirmation/send-confirmation.component.ts
View file @
8f9931f9
...
...
@@ -14,7 +14,7 @@ export class SendConfirmationComponent implements OnInit {
@
Input
()
transaction
:
any
;
constructor
(
private
globalService
:
GlobalService
,
public
activeModal
:
NgbActiveModal
)
{
}
p
rivate
showDetails
:
boolean
=
false
;
p
ublic
showDetails
:
boolean
=
false
;
private
coinUnit
:
string
;
ngOnInit
()
{
...
...
Breeze.UI/src/app/wallet/send/send.component.ts
View file @
8f9931f9
...
...
@@ -21,12 +21,12 @@ export class SendComponent implements OnInit {
this
.
buildSendForm
();
}
p
rivate
sendForm
:
FormGroup
;
p
ublic
sendForm
:
FormGroup
;
private
responseMessage
:
any
;
private
errorMessage
:
string
;
p
rivate
coinUnit
:
string
;
p
ublic
coinUnit
:
string
;
private
transaction
:
TransactionBuilding
;
p
rivate
isSending
:
B
oolean
=
false
;
p
ublic
isSending
:
b
oolean
=
false
;
ngOnInit
()
{
this
.
coinUnit
=
this
.
globalService
.
getCoinUnit
();
...
...
@@ -84,7 +84,7 @@ export class SendComponent implements OnInit {
}
};
p
rivate
send
()
{
p
ublic
send
()
{
this
.
isSending
=
true
;
this
.
transaction
=
new
TransactionBuilding
(
...
...
Breeze.UI/src/app/wallet/sidebar/sidebar.component.html
View file @
8f9931f9
...
...
@@ -6,7 +6,7 @@
<img
src=
"../../../assets/images/ico_bitcoin.svg"
alt=
"Bitcoin"
>
<span
class=
"bar"
></span>
</li>
<li
(
click
)="
loadStratisWallet
()"
[
class
.
active
]="
!
bitcoin
Active
"
>
<li
(
click
)="
loadStratisWallet
()"
[
class
.
active
]="
stratis
Active
"
>
<img
src=
"../../../assets/images/ico_stratis.svg"
alt=
"Stratis"
>
<span
class=
"bar"
></span>
</li>
...
...
Breeze.UI/src/app/wallet/sidebar/sidebar.component.ts
View file @
8f9931f9
...
...
@@ -13,35 +13,36 @@ import { GlobalService } from '../../shared/services/global.service';
export
class
SidebarComponent
implements
OnInit
{
constructor
(
private
globalService
:
GlobalService
,
private
router
:
Router
,
private
modalService
:
NgbModal
)
{
}
private
bitcoinActive
:
Boolean
;
public
bitcoinActive
:
boolean
;
public
stratisActive
:
boolean
;
ngOnInit
()
{
if
(
this
.
globalService
.
getCoinName
()
===
"Bitcoin"
||
this
.
globalService
.
getCoinName
()
===
"TestBitcoin"
)
{
this
.
bitcoinActive
=
true
;
this
.
stratisActive
=
false
;
}
else
if
(
this
.
globalService
.
getCoinName
()
===
"Stratis"
||
this
.
globalService
.
getCoinName
()
===
"TestStratis"
)
{
this
.
bitcoinActive
=
false
;
this
.
stratisActive
=
true
;
}
}
private
loadBitcoinWallet
()
{
this
.
toggleClass
();
public
loadBitcoinWallet
()
{
this
.
bitcoinActive
=
true
;
this
.
stratisActive
=
false
;
this
.
globalService
.
setCoinName
(
"TestBitcoin"
);
this
.
globalService
.
setCoinUnit
(
"TBTC"
);
this
.
router
.
navigate
([
'/wallet'
]);
}
private
loadStratisWallet
()
{
this
.
toggleClass
();
public
loadStratisWallet
()
{
this
.
bitcoinActive
=
false
;
this
.
stratisActive
=
true
;
this
.
globalService
.
setCoinName
(
"TestStratis"
);
this
.
globalService
.
setCoinUnit
(
"TSTRAT"
);
this
.
router
.
navigate
([
'/wallet/stratis-wallet'
]);
}
private
toggleClass
(){
this
.
bitcoinActive
=
!
this
.
bitcoinActive
;
}
private
logOut
()
{
public
logOut
()
{
const
modalRef
=
this
.
modalService
.
open
(
LogoutConfirmationComponent
);
}
}
Breeze.UI/src/app/wallet/status-bar/status-bar.component.ts
View file @
8f9931f9
...
...
@@ -15,12 +15,12 @@ import { Subscription } from 'rxjs/Subscription';
export
class
StatusBarComponent
implements
OnInit
{
private
generalWalletInfoSubscription
:
Subscription
;
p
rivate
lastBlockSyncedHeight
:
number
;
p
rivate
chainTip
:
number
;
p
ublic
lastBlockSyncedHeight
:
number
;
p
ublic
chainTip
:
number
;
private
isChainSynced
:
boolean
;
p
rivate
connectedNodes
:
number
=
0
;
p
ublic
connectedNodes
:
number
=
0
;
private
percentSyncedNumber
:
number
=
0
;
p
rivate
percentSynced
:
string
;
p
ublic
percentSynced
:
string
;
constructor
(
private
apiService
:
ApiService
,
private
globalService
:
GlobalService
)
{
}
...
...
Breeze.UI/src/app/wallet/transaction-details/transaction-details.component.ts
View file @
8f9931f9
...
...
@@ -12,12 +12,12 @@ export class TransactionDetailsComponent implements OnInit {
@
Input
()
transaction
;
constructor
(
public
activeModal
:
NgbActiveModal
)
{}
p
rivate
copied
:
boolean
=
false
;
p
ublic
copied
:
boolean
=
false
;
ngOnInit
()
{
}
p
rivate
onCopiedClick
()
{
p
ublic
onCopiedClick
()
{
this
.
copied
=
true
;
}
...
...
Breeze.UI/tsconfig.json
View file @
8f9931f9
...
...
@@ -27,4 +27,8 @@
"dom"
]
}
,
"exclude"
:
[
"node_modules"
]
}
Breeze.UI/webpack.config.js
View file @
8f9931f9
...
...
@@ -5,9 +5,10 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
const
ExtractTextPlugin
=
require
(
'extract-text-webpack-plugin'
);
const
autoprefixer
=
require
(
'autoprefixer'
);
const
postcssUrl
=
require
(
'postcss-url'
);
const
ConcatPlugin
=
require
(
'webpack-concat-plugin'
);
const
{
NoEmitOnErrorsPlugin
,
LoaderOptionsPlugin
,
DefinePlugin
,
HashedModuleIdsPlugin
}
=
require
(
'webpack'
);
const
{
GlobCopyWebpackPlugin
,
BaseHrefWebpackPlugin
}
=
require
(
'@angular/cli/plugins/webpack'
);
const
{
GlobCopyWebpackPlugin
,
BaseHrefWebpackPlugin
,
InsertConcatAssetsWebpackPlugin
}
=
require
(
'@angular/cli/plugins/webpack'
);
const
{
CommonsChunkPlugin
,
UglifyJsPlugin
}
=
require
(
'webpack'
).
optimize
;
const
{
AotPlugin
}
=
require
(
'@ngtools/webpack'
);
...
...
@@ -18,6 +19,18 @@ const deployUrl = "";
const
isProd
=
(
process
.
env
.
NODE_ENV
===
'production'
);
//add all external css to be added in our index.html--> like as if it's .angular-cli.json
const
styles
=
[
"./src/styles.css"
];
//we add all our external scripts we want to load externally, like inserting in our index.html --> like as if it's .angular-cli.json
const
scripts
=
[
];
//create file path for each , so we use for our excludes and includes where needed
let
style_paths
=
styles
.
map
(
style_src
=>
path
.
join
(
process
.
cwd
(),
style_src
));
function
getPlugins
()
{
var
plugins
=
[];
...
...
@@ -30,6 +43,19 @@ function getPlugins() {
plugins
.
push
(
new
NoEmitOnErrorsPlugin
());
if
(
scripts
.
length
>
0
){
plugins
.
push
(
new
ConcatPlugin
({
"uglify"
:
false
,
"sourceMap"
:
true
,
"name"
:
"scripts"
,
"fileName"
:
"[name].bundle.js"
,
"filesToConcat"
:
scripts
}));
plugins
.
push
(
new
InsertConcatAssetsWebpackPlugin
([
"scripts"
]));
}
plugins
.
push
(
new
GlobCopyWebpackPlugin
({
"patterns"
:
[
"assets"
,
...
...
@@ -225,9 +251,7 @@ module.exports = {
"polyfills"
:
[
"./src/polyfills.ts"
],
"styles"
:
[
"./src/styles.css"
]
"styles"
:
styles
},
"output"
:
{
"path"
:
path
.
join
(
process
.
cwd
(),
"dist"
),
...
...
@@ -258,9 +282,7 @@ module.exports = {
"loader"
:
"url-loader?name=[name].[hash:20].[ext]&limit=10000"
},
{
"exclude"
:
[
path
.
join
(
process
.
cwd
(),
"src/styles.css"
)
],
"exclude"
:
style_paths
,
"test"
:
/
\
.
css$
/
,
"loaders"
:
[
"exports-loader?module.exports.toString()"
,
...
...
@@ -269,9 +291,7 @@ module.exports = {
]
},
{
"exclude"
:
[
path
.
join
(
process
.
cwd
(),
"src/styles.css"
)
],
"exclude"
:
style_paths
,
"test"
:
/
\
.
scss$
|
\
.
sass$
/
,
"loaders"
:
[
"exports-loader?module.exports.toString()"
,
...
...
@@ -281,9 +301,7 @@ module.exports = {
]
},
{
"exclude"
:
[
path
.
join
(
process
.
cwd
(),
"src/styles.css"
)
],
"exclude"
:
style_paths
,
"test"
:
/
\
.
less$
/
,
"loaders"
:
[
"exports-loader?module.exports.toString()"
,
...
...
@@ -293,9 +311,7 @@ module.exports = {
]
},
{
"exclude"
:
[
path
.
join
(
process
.
cwd
(),
"src/styles.css"
)
],
"exclude"
:
style_paths
,
"test"
:
/
\
.
styl$
/
,
"loaders"
:
[
"exports-loader?module.exports.toString()"
,
...
...
@@ -305,9 +321,7 @@ module.exports = {
]
},
{
"include"
:
[
path
.
join
(
process
.
cwd
(),
"src/styles.css"
)
],
"include"
:
style_paths
,
"test"
:
/
\
.
css$
/
,
"loaders"
:
ExtractTextPlugin
.
extract
({
"use"
:
[
...
...
@@ -319,9 +333,7 @@ module.exports = {
})
},
{
"include"
:
[
path
.
join
(
process
.
cwd
(),
"src/styles.css"
)
],
"include"
:
style_paths
,
"test"
:
/
\
.
scss$
|
\
.
sass$
/
,
"loaders"
:
ExtractTextPlugin
.
extract
({
"use"
:
[
...
...
@@ -334,9 +346,7 @@ module.exports = {
})
},
{
"include"
:
[
path
.
join
(
process
.
cwd
(),
"src/styles.css"
)
],
"include"
:
style_paths
,
"test"
:
/
\
.
less$
/
,
"loaders"
:
ExtractTextPlugin
.
extract
({
"use"
:
[
...
...
@@ -349,9 +359,7 @@ module.exports = {
})
},
{
"include"
:
[
path
.
join
(
process
.
cwd
(),
"src/styles.css"
)
],
"include"
:
style_paths
,
"test"
:
/
\
.
styl$
/
,
"loaders"
:
ExtractTextPlugin
.
extract
({
"use"
:
[
...
...
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