1
1
import { st } from "springtype/core" ;
2
- import { event } from "springtype/web/component/decorator/event" ;
3
2
import { attr , component } from "springtype/web/component" ;
4
3
import { tsx } from "springtype/web/vdom" ;
5
4
import "./nav-header.scss" ;
@@ -10,6 +9,7 @@ import { PreferenceService } from "../../service/preference";
10
9
import { ConsumerOrderListPage } from "../../page/consumer-order-list/consumer-order-list" ;
11
10
import { DriverOrderList } from "../../page/driver-order-list/driver-order-list" ;
12
11
import { TERMS_OF_USE_URL , PRIVACY_STATEMENT_URL , LEGAL_NOTICE_URL } from "../../config/website-urls" ;
12
+ import { Center } from "../center/center" ;
13
13
14
14
export interface NavHeaderProps {
15
15
showBackButton ?: boolean ;
@@ -78,10 +78,11 @@ export class NavHeader extends st.component<NavHeaderProps> {
78
78
</ div >
79
79
80
80
{ this . showBackButton ?
81
- < a class = 'left- btn-position btn btn -flat btn-small' href = 'javascript:' onClick = { ( ) => {
81
+ < a class = 'btn btn-flat btn-small menu left-btn-position back-button ' href = 'javascript:' onClick = { ( ) => {
82
82
this . onBackButtonClick ( )
83
83
} } >
84
- < i class = "material-icons" > arrow_back_ios</ i >
84
+ < span class = "menu-circle" > </ span >
85
+ < i class = "material-icons back-button-icon" > arrow_back_ios</ i >
85
86
</ a > : < div class = "menu left-btn-position" ref = { { menuIcon : this } } >
86
87
< span class = "menu-circle" > </ span >
87
88
< a href = "javascript:" onclick = { this . toggleMenu } class = "menu-link" >
@@ -102,43 +103,46 @@ export class NavHeader extends st.component<NavHeaderProps> {
102
103
103
104
renderMenuItems = ( ) => {
104
105
105
- this . renderPartial ( < fragment >
106
- < a href = "javascript:" onClick = { ( ) => {
107
- this . onUserProfileClick ( )
108
- } } >
109
- < div class = "material-align-middle" >
110
- < i class = "material-icons" > account_circle</ i > { st . t ( "My Profile" ) }
111
- </ div >
112
- </ a >
113
- { this . getActiveProfile ( ) }
114
-
115
- < a href = { TERMS_OF_USE_URL } target = "_blank" >
116
- < div class = "material-align-middle" >
117
- < i class = "material-icons" > description</ i > { st . t ( "Terms of Use" ) }
118
- </ div >
119
- </ a >
120
-
121
- < a href = { PRIVACY_STATEMENT_URL } target = "_blank" >
122
- < div class = "material-align-middle" >
123
- < i class = "material-icons" > security</ i > { st . t ( "Privacy Statement" ) }
124
- </ div >
125
- </ a >
126
-
127
-
128
- < a href = { LEGAL_NOTICE_URL } target = "_blank" >
129
- < div class = "material-align-middle" >
130
- < i class = "material-icons" > policy</ i > { st . t ( "Contact Details" ) }
131
- </ div >
132
- </ a >
133
-
134
- < a href = "javascript:" onclick = { ( ) => {
135
- this . onLogoutClick ( )
136
- } } >
137
- < div class = "material-align-middle" >
138
- < i class = "material-icons" > directions_run</ i > { st . t ( "Logout" ) }
139
- </ div >
140
- </ a >
141
- </ fragment > , this . menuOverlay )
106
+ this . renderPartial (
107
+ < div class = "row" >
108
+ < div class = "col s12 m9 l6 offset-l4 offset-m4" >
109
+ < a href = "javascript:" onClick = { ( ) => {
110
+ this . onUserProfileClick ( )
111
+ } } >
112
+ < div class = "material-align-middle" >
113
+ < i class = "material-icons" > account_circle</ i > { st . t ( "My Profile" ) }
114
+ </ div >
115
+ </ a >
116
+ { this . getActiveProfile ( ) }
117
+
118
+ < a href = { TERMS_OF_USE_URL } target = "_blank" >
119
+ < div class = "material-align-middle" >
120
+ < i class = "material-icons" > description</ i > { st . t ( "Terms of Use" ) }
121
+ </ div >
122
+ </ a >
123
+
124
+ < a href = { PRIVACY_STATEMENT_URL } target = "_blank" >
125
+ < div class = "material-align-middle" >
126
+ < i class = "material-icons" > security</ i > { st . t ( "Privacy Statement" ) }
127
+ </ div >
128
+ </ a >
129
+
130
+
131
+ < a href = { LEGAL_NOTICE_URL } target = "_blank" >
132
+ < div class = "material-align-middle" >
133
+ < i class = "material-icons" > policy</ i > { st . t ( "Contact Details" ) }
134
+ </ div >
135
+ </ a >
136
+
137
+ < a href = "javascript:" onclick = { ( ) => {
138
+ this . onLogoutClick ( )
139
+ } } >
140
+ < div class = "material-align-middle" >
141
+ < i class = "material-icons" > directions_run</ i > { st . t ( "Logout" ) }
142
+ </ div >
143
+ </ a >
144
+ </ div >
145
+ </ div > , this . menuOverlay )
142
146
}
143
147
144
148
onUserProfileClick = ( ) => {
@@ -165,7 +169,8 @@ export class NavHeader extends st.component<NavHeaderProps> {
165
169
} ;
166
170
167
171
private getActiveProfile ( ) {
168
- const isDriver = this . preferenceService . getProfile ( ) === 'driver' ;
172
+ const isDriver = this . preferenceService . getProfile ( ) !== 'consumer' ;
173
+ console . log ( 'isDriver' , isDriver , this . preferenceService . getProfile ( ) ) ;
169
174
return < fragment >
170
175
< a href = "javascript:" style = { { display : isDriver ? 'block' : 'none' } } onclick = { ( ) => {
171
176
this . onCustomerSwitch ( ) ;
0 commit comments