@ -123,6 +123,7 @@ import * as lodash from 'lodash';
import { Pie , Line , Bar } from 'react-chartjs-2' ;
import { Pie , Line , Bar } from 'react-chartjs-2' ;
import numeral from 'numeral' ;
import numeral from 'numeral' ;
import { NotificationContainer , NotificationManager } from 'react-notifications' ;
import { NotificationContainer , NotificationManager } from 'react-notifications' ;
import { AXIOS } from '../../services/base'
import 'chartjs-plugin-zoom' ;
import 'chartjs-plugin-zoom' ;
const HEADER = {
const HEADER = {
@ -547,14 +548,14 @@ const optionsChartKurvaS = {
enabled : true ,
enabled : true ,
mode : 'xy' ,
mode : 'xy' ,
limits : {
limits : {
y : { min : 0 , max : 100 }
y : { min : 0 , max : 100 }
}
}
} ,
} ,
pan : {
pan : {
enabled : true ,
enabled : true ,
mode : 'xy' ,
mode : 'xy' ,
limits : {
limits : {
y : { min : 0 , max : 100 }
y : { min : 0 , max : 100 }
}
}
}
}
}
}
@ -1089,21 +1090,21 @@ class SiopasMap extends Component {
let dateStart = moment ( this . state . startDate ) . format ( "YYYY-MM-DD 00:00:00" ) ;
let dateStart = moment ( this . state . startDate ) . format ( "YYYY-MM-DD 00:00:00" ) ;
let dateEnd = moment ( this . state . endDate ) . format ( "YYYY-MM-DD 23:59:59" ) ;
let dateEnd = moment ( this . state . endDate ) . format ( "YYYY-MM-DD 23:59:59" ) ;
const payload = {
const payload = {
"paging" : { "start" : 0 , "length" : - 1 } ,
"paging" : { "start" : 0 , "length" : - 1 } ,
"columns" : [
"columns" : [
// {"name": "name", "logic_operator": "like", "value": search, "table_name": "m_users"},
// {"name": "name", "logic_operator": "like", "value": search, "table_name": "m_users"},
{ "name" : "clock_in" , "logic_operator" : "range" , "value" : dateStart , "value1" : dateEnd } ,
{ "name" : "clock_in" , "logic_operator" : "range" , "value" : dateStart , "value1" : dateEnd } ,
] ,
] ,
"joins" : [ {
"joins" : [ {
"name" : "m_users" ,
"name" : "m_users" ,
"column_join" : "user_id" ,
"column_join" : "user_id" ,
"column_results" : [
"column_results" : [
"name" ,
"name" ,
"ktp_number"
"ktp_number"
]
]
} ] ,
} ] ,
"orders" : { "columns" : [ "id" ] , "ascending" : false }
"orders" : { "columns" : [ "id" ] , "ascending" : false }
}
}
const result = await axios
const result = await axios
@ -1113,10 +1114,10 @@ class SiopasMap extends Component {
// console.log(result)
// console.log(result)
if ( result && result . data && result . data . code == 200 ) {
if ( result && result . data && result . data . code == 200 ) {
let dataRes = result . data . data || [ ]
let dataRes = result . data . data || [ ]
this . setState ( { presensiData : dataRes } , ( ) => this . getPresensiFeatures ( ) )
this . setState ( { presensiData : dataRes } , ( ) => this . getPresensiFeatures ( ) )
} else {
} else {
NotificationManager . error ( 'Gagal Mengambil Data!!' , 'Failed' ) ;
NotificationManager . error ( 'Gagal Mengambil Data!!' , 'Failed' ) ;
}
}
}
}
@ -1308,7 +1309,7 @@ class SiopasMap extends Component {
// };
// };
// console.log("dataRes2", dataRes2);
// console.log("dataRes2", dataRes2);
// this.setState({ dataPersentaseProyek: dataRes2 });
// this.setState({ dataPersentaseProyek: dataRes2 });
this . setState ( { dataCurvaS : dataRes2 } ) ;
this . setState ( { dataCurvaS : dataRes2 } ) ;
console . log ( 'dataRes2-----------' , dataRes2 ) ;
console . log ( 'dataRes2-----------' , dataRes2 ) ;
// set status proyek for adw
// set status proyek for adw
@ -1321,7 +1322,7 @@ class SiopasMap extends Component {
budgetControl . push ( item . data . budget _control ) ;
budgetControl . push ( item . data . budget _control ) ;
} ) ;
} ) ;
}
}
this . setState ( { dataStatusProyekAdw : budgetControl } ) ;
this . setState ( { dataStatusProyekAdw : budgetControl } ) ;
}
}
}
}
else {
else {
@ -2654,7 +2655,7 @@ class SiopasMap extends Component {
"coordinates" : [ ]
"coordinates" : [ ]
}
}
for ( let i = 0 ; i < userRoute . features . length ; i ++ ) {
for ( let i = 0 ; i < userRoute . features . length ; i ++ ) {
polyline . coordinates . push ( userRoute . features [ i ] . geometry . coordinates ) ;
polyline . coordinates . push ( userRoute . features [ i ] . geometry . coordinates ) ;
}
}
@ -2868,10 +2869,10 @@ class SiopasMap extends Component {
const { kurvaSWindowMode } = this . state ;
const { kurvaSWindowMode } = this . state ;
console . log ( 'toggleKurvaSWindowMode' , kurvaSWindowMode ) ;
console . log ( 'toggleKurvaSWindowMode' , kurvaSWindowMode ) ;
if ( kurvaSWindowMode === 'default' ) {
if ( kurvaSWindowMode === 'default' ) {
this . setState ( { kurvaSWindowMode : 'maximize' } , ( ) => this . renderCarouselKurvaS ( ) )
this . setState ( { kurvaSWindowMode : 'maximize' } , ( ) => this . renderCarouselKurvaS ( ) )
}
}
else {
else {
this . setState ( { kurvaSWindowMode : 'default' } , ( ) => this . renderCarouselKurvaS ( ) ) ;
this . setState ( { kurvaSWindowMode : 'default' } , ( ) => this . renderCarouselKurvaS ( ) ) ;
}
}
}
}
@ -2907,7 +2908,7 @@ class SiopasMap extends Component {
body : JSON . stringify ( payload ) // body data type must match "Content-Type" header
body : JSON . stringify ( payload ) // body data type must match "Content-Type" header
}
}
try {
try {
const result = await fetch ( url , config ) . then ( response => response . json ( ) ) . then ( res => res ) ;
const result = await AXIOS . post ( url , payload ) . then ( response => response . json ( ) ) . then ( res => res ) ;
return result . data || [ ]
return result . data || [ ]
}
}
catch ( e ) {
catch ( e ) {
@ -3133,11 +3134,11 @@ class SiopasMap extends Component {
if ( animating ) return ;
if ( animating ) return ;
if ( ( APP _MODE === 'ADW' ) ) {
if ( ( APP _MODE === 'ADW' ) ) {
const nextIndex = activeIndex === dataStatusProyekAdw . length - 1 ? 0 : activeIndex + 1 ;
const nextIndex = activeIndex === dataStatusProyekAdw . length - 1 ? 0 : activeIndex + 1 ;
this . setState ( { activeIndex : nextIndex } ) ;
this . setState ( { activeIndex : nextIndex } ) ;
}
}
else {
else {
const nextIndex = activeIndex === dataStatusProyek . length - 1 ? 0 : activeIndex + 1 ;
const nextIndex = activeIndex === dataStatusProyek . length - 1 ? 0 : activeIndex + 1 ;
this . setState ( { activeIndex : nextIndex } ) ;
this . setState ( { activeIndex : nextIndex } ) ;
}
}
}
}
@ -3145,14 +3146,14 @@ class SiopasMap extends Component {
const { animating2 , activeIndex2 , dataPersentaseProyek } = this . state ;
const { animating2 , activeIndex2 , dataPersentaseProyek } = this . state ;
if ( animating2 ) return ;
if ( animating2 ) return ;
const nextIndex = activeIndex2 === dataPersentaseProyek . length - 1 ? 0 : activeIndex2 + 1 ;
const nextIndex = activeIndex2 === dataPersentaseProyek . length - 1 ? 0 : activeIndex2 + 1 ;
this . setState ( { activeIndex2 : nextIndex } ) ;
this . setState ( { activeIndex2 : nextIndex } ) ;
}
}
next3 = ( ) => {
next3 = ( ) => {
const { animating3 , activeIndex3 , dataCostProyek } = this . state ;
const { animating3 , activeIndex3 , dataCostProyek } = this . state ;
if ( animating3 ) return ;
if ( animating3 ) return ;
const nextIndex = activeIndex3 === dataCostProyek . length - 1 ? 0 : activeIndex3 + 1 ;
const nextIndex = activeIndex3 === dataCostProyek . length - 1 ? 0 : activeIndex3 + 1 ;
this . setState ( { activeIndex3 : nextIndex } ) ;
this . setState ( { activeIndex3 : nextIndex } ) ;
}
}
previous = ( ) => {
previous = ( ) => {
@ -3160,11 +3161,11 @@ class SiopasMap extends Component {
if ( animating ) return ;
if ( animating ) return ;
if ( ( APP _MODE === 'ADW' ) ) {
if ( ( APP _MODE === 'ADW' ) ) {
const nextIndex = activeIndex === 0 ? dataStatusProyekAdw . length - 1 : activeIndex - 1 ;
const nextIndex = activeIndex === 0 ? dataStatusProyekAdw . length - 1 : activeIndex - 1 ;
this . setState ( { activeIndex : nextIndex } ) ;
this . setState ( { activeIndex : nextIndex } ) ;
}
}
else {
else {
const nextIndex = activeIndex === 0 ? dataStatusProyek . length - 1 : activeIndex - 1 ;
const nextIndex = activeIndex === 0 ? dataStatusProyek . length - 1 : activeIndex - 1 ;
this . setState ( { activeIndex : nextIndex } ) ;
this . setState ( { activeIndex : nextIndex } ) ;
}
}
}
}
@ -3172,47 +3173,47 @@ class SiopasMap extends Component {
const { animating2 , activeIndex2 , dataPersentaseProyek } = this . state ;
const { animating2 , activeIndex2 , dataPersentaseProyek } = this . state ;
if ( animating2 ) return ;
if ( animating2 ) return ;
const nextIndex = activeIndex2 === 0 ? dataPersentaseProyek . length - 1 : activeIndex2 - 1 ;
const nextIndex = activeIndex2 === 0 ? dataPersentaseProyek . length - 1 : activeIndex2 - 1 ;
this . setState ( { activeIndex2 : nextIndex } ) ;
this . setState ( { activeIndex2 : nextIndex } ) ;
}
}
previous3 = ( ) => {
previous3 = ( ) => {
const { animating3 , activeIndex3 , dataCostProyek } = this . state ;
const { animating3 , activeIndex3 , dataCostProyek } = this . state ;
if ( animating3 ) return ;
if ( animating3 ) return ;
const nextIndex = activeIndex3 === 0 ? dataCostProyek . length - 1 : activeIndex3 - 1 ;
const nextIndex = activeIndex3 === 0 ? dataCostProyek . length - 1 : activeIndex3 - 1 ;
this . setState ( { activeIndex3 : nextIndex } ) ;
this . setState ( { activeIndex3 : nextIndex } ) ;
}
}
goToIndex = ( newIndex ) => {
goToIndex = ( newIndex ) => {
const { animating } = this . state ;
const { animating } = this . state ;
if ( animating ) return ;
if ( animating ) return ;
this . setState ( { activeIndex : newIndex } )
this . setState ( { activeIndex : newIndex } )
}
}
goToIndex2 = ( newIndex ) => {
goToIndex2 = ( newIndex ) => {
const { animating2 } = this . state ;
const { animating2 } = this . state ;
if ( animating2 ) return ;
if ( animating2 ) return ;
this . setState ( { activeIndex2 : newIndex } )
this . setState ( { activeIndex2 : newIndex } )
}
}
goToIndex3 = ( newIndex ) => {
goToIndex3 = ( newIndex ) => {
const { animating3 } = this . state ;
const { animating3 } = this . state ;
if ( animating3 ) return ;
if ( animating3 ) return ;
this . setState ( { activeIndex3 : newIndex } )
this . setState ( { activeIndex3 : newIndex } )
}
}
renderRemainingDays = ( item ) => {
renderRemainingDays = ( item ) => {
const { day _left , percentage } = item ;
const { day _left , percentage } = item ;
if ( day _left > 0 && day _left < 8 ) {
if ( day _left > 0 && day _left < 8 ) {
return < Col style = { { textAlign : "right" , color : "red" , fontStyle : "italic" } } > { ` ${ day _left } ${ day _left > 1 ? 'days' : 'day' } left ` } < / C o l >
return < Col style = { { textAlign : "right" , color : "red" , fontStyle : "italic" } } > { ` ${ day _left } ${ day _left > 1 ? 'days' : 'day' } left ` } < / C o l >
}
}
else if ( day _left === 0 ) {
else if ( day _left === 0 ) {
return < Col style = { { textAlign : "right" , color : "red" , fontStyle : "italic" } } > Today < / C o l >
return < Col style = { { textAlign : "right" , color : "red" , fontStyle : "italic" } } > Today < / C o l >
}
}
else if ( day _left < 0 ) {
else if ( day _left < 0 ) {
return < Col style = { { textAlign : "right" , color : "red" , fontStyle : "italic" } } > Overdue { day _left } { day _left < - 1 ? 'days' : 'day' } < / C o l >
return < Col style = { { textAlign : "right" , color : "red" , fontStyle : "italic" } } > Overdue { day _left } { day _left < - 1 ? 'days' : 'day' } < / C o l >
}
}
else {
else {
return < Col style = { { textAlign : "right" , color : "grey" , fontStyle : "italic" } } > { ` ${ day _left } days left ` } < / C o l >
return < Col style = { { textAlign : "right" , color : "grey" , fontStyle : "italic" } } > { ` ${ day _left } days left ` } < / C o l >
}
}
}
}
@ -3223,23 +3224,23 @@ class SiopasMap extends Component {
if ( dataStatusProyek . length > 0 ) {
if ( dataStatusProyek . length > 0 ) {
return dataStatusProyek . map ( ( item , index ) => {
return dataStatusProyek . map ( ( item , index ) => {
return (
return (
< ListGroup style = { { marginBottom : 5 } } >
< ListGroup style = { { marginBottom : 5 } } >
{ /* <ListGroupItem tag="div" className={`text-center text-bold`} style={{fontSize: 12, backgroundColor: "#f5f5f5"}}></ListGroupItem> */ }
{ /* <ListGroupItem tag="div" className={`text-center text-bold`} style={{fontSize: 12, backgroundColor: "#f5f5f5"}}></ListGroupItem> */ }
< ListGroupItem className = "justify-content-between" >
< ListGroupItem className = "justify-content-between" >
< div style = { { textAlign : "center" , fontWeight : "bold" , fontSize : 12 } } > { item . proyek _name } < / d i v >
< div style = { { textAlign : "center" , fontWeight : "bold" , fontSize : 12 } } > { item . proyek _name } < / d i v >
< Row >
< Row >
< Col > < Badge pill > { item . count _activity _done } < /Badge> / < Badge pill > { item . count _activity } < /Badge> Task <br / > < / C o l >
< Col > < Badge pill > { item . count _activity _done } < /Badge> / < Badge pill > { item . count _activity } < /Badge> Task <br / > < / C o l >
{ this . renderRemainingDays ( item ) }
{ this . renderRemainingDays ( item ) }
< / R o w >
< / R o w >
< Progress value = { item . percentage } max = { 100 } animated color = { item . percentage === 100 ? 'success' : 'primary' } style = { { height : 20 } } > { item . percentage } % < / P r o g r e s s >
< Progress value = { item . percentage } max = { 100 } animated color = { item . percentage === 100 ? 'success' : 'primary' } style = { { height : 20 } } > { item . percentage } % < / P r o g r e s s >
< div style = { { fontSize : 12 , color : "grey" } } > Contract : { item . total _kontrak } { item . total _kontrak > 1 ? "days" : "day" } < / d i v >
< div style = { { fontSize : 12 , color : "grey" } } > Contract : { item . total _kontrak } { item . total _kontrak > 1 ? "days" : "day" } < / d i v >
< / L i s t G r o u p I t e m >
< / L i s t G r o u p I t e m >
< / L i s t G r o u p >
< / L i s t G r o u p >
)
)
} )
} )
}
}
else {
else {
return < div style = { { textAlign : "center" , marginTop : 20 , color : "red" } } > No Data Found < / d i v >
return < div style = { { textAlign : "center" , marginTop : 20 , color : "red" } } > No Data Found < / d i v >
}
}
}
}
else {
else {
@ -3260,9 +3261,9 @@ class SiopasMap extends Component {
className = "chart-doughnut-carousel"
className = "chart-doughnut-carousel"
>
>
< CarouselIndicators items = { dataStatusProyekAdw } activeIndex = { this . state . activeIndex } onClickHandler = { this . goToIndex } / >
< CarouselIndicators items = { dataStatusProyekAdw } activeIndex = { this . state . activeIndex } onClickHandler = { this . goToIndex } / >
{ this . renderTableStatusProyekAdw ( ) }
{ this . renderTableStatusProyekAdw ( ) }
< CarouselControl direction = "prev" directionText = "Previous" onClickHandler = { this . previous } style = { { color : 'black' } } / >
< CarouselControl direction = "prev" directionText = "Previous" onClickHandler = { this . previous } style = { { color : 'black' } } / >
< CarouselControl direction = "next" directionText = "Next" onClickHandler = { this . next } style = { { color : 'black' } } / >
< CarouselControl direction = "next" directionText = "Next" onClickHandler = { this . next } style = { { color : 'black' } } / >
< / C a r o u s e l >
< / C a r o u s e l >
)
)
}
}
@ -3305,8 +3306,8 @@ class SiopasMap extends Component {
return (
return (
< CarouselItem
< CarouselItem
key = { idx }
key = { idx }
onExiting = { ( ) => this . setState ( { animating : true } ) }
onExiting = { ( ) => this . setState ( { animating : true } ) }
onExited = { ( ) => this . setState ( { animating : false } ) }
onExited = { ( ) => this . setState ( { animating : false } ) }
>
>
< div className = "chart-doughnut-carousel-item" >
< div className = "chart-doughnut-carousel-item" >
< div className = "chart-doughnut-caption mb-caption" >
< div className = "chart-doughnut-caption mb-caption" >
@ -3402,14 +3403,14 @@ class SiopasMap extends Component {
return (
return (
< CarouselItem
< CarouselItem
key = { idx }
key = { idx }
onExiting = { ( ) => this . setState ( { animating : true } ) }
onExiting = { ( ) => this . setState ( { animating : true } ) }
onExited = { ( ) => this . setState ( { animating : false } ) }
onExited = { ( ) => this . setState ( { animating : false } ) }
>
>
< div className = "chart-doughnut-carousel-item" >
< div className = "chart-doughnut-carousel-item" >
< div className = "chart-doughnut-caption" >
< div className = "chart-doughnut-caption" >
< div className = "text-center text-bold" > Status Proyek < / d i v >
< div className = "text-center text-bold" > Status Proyek < / d i v >
< div className = "text-center total-luas" >
< div className = "text-center total-luas" >
{ /* <span className="total-luas-title">Luas coverage: </span> */ }
{ /* <span className="total-luas-title">Luas coverage: </span> */ }
{ /* { numberWithCommas(item.total_luas_opt) } km<sup>2</sup> */ }
{ /* { numberWithCommas(item.total_luas_opt) } km<sup>2</sup> */ }
< / d i v >
< / d i v >
< / d i v >
< / d i v >
@ -3479,7 +3480,7 @@ class SiopasMap extends Component {
className = "chart-doughnut-carousel"
className = "chart-doughnut-carousel"
>
>
< CarouselIndicators items = { dataChart } activeIndex = { this . state . activeIndex2 } onClickHandler = { this . goToIndex2 } / >
< CarouselIndicators items = { dataChart } activeIndex = { this . state . activeIndex2 } onClickHandler = { this . goToIndex2 } / >
{ this . renderChartPersentaseProgress ( dataChart ) }
{ this . renderChartPersentaseProgress ( dataChart ) }
< CarouselControl direction = "prev" directionText = "Previous" onClickHandler = { this . previous2 } / >
< CarouselControl direction = "prev" directionText = "Previous" onClickHandler = { this . previous2 } / >
< CarouselControl direction = "next" directionText = "Next" onClickHandler = { this . next2 } / >
< CarouselControl direction = "next" directionText = "Next" onClickHandler = { this . next2 } / >
< / C a r o u s e l >
< / C a r o u s e l >
@ -3502,27 +3503,27 @@ class SiopasMap extends Component {
return (
return (
< CarouselItem
< CarouselItem
key = { idx }
key = { idx }
onExiting = { ( ) => this . setState ( { animating2 : true } ) }
onExiting = { ( ) => this . setState ( { animating2 : true } ) }
onExited = { ( ) => this . setState ( { animating2 : false } ) }
onExited = { ( ) => this . setState ( { animating2 : false } ) }
>
>
< div className = "chart-doughnut-carousel-item" >
< div className = "chart-doughnut-carousel-item" >
< div className = "chart-doughnut-caption" >
< div className = "chart-doughnut-caption" >
< div className = "text-center text-bold" style = { { fontSize : 12 } } > { item . proyek _name } < / d i v >
< div className = "text-center text-bold" style = { { fontSize : 12 } } > { item . proyek _name } < / d i v >
< div className = "text-center total-luas" >
< div className = "text-center total-luas" >
{ /* <span className="total-luas-title">Luas coverage: </span> */ }
{ /* <span className="total-luas-title">Luas coverage: </span> */ }
{ /* { numberWithCommas(item.total_luas_opt) } km<sup>2</sup> */ }
{ /* { numberWithCommas(item.total_luas_opt) } km<sup>2</sup> */ }
< / d i v >
< / d i v >
< / d i v >
< / d i v >
< div className = "chart-doughnut-chart" >
< div className = "chart-doughnut-chart" >
{
{
item . labels . length > 0 ?
item . labels . length > 0 ?
< Line
< Line
options = { optionsChartPersentaseProgress }
options = { optionsChartPersentaseProgress }
data = { item || defaultPersentaseProyek }
data = { item || defaultPersentaseProyek }
handleClickChart = { ( ) => console . log ( 'click persentase linechart' ) }
handleClickChart = { ( ) => console . log ( 'click persentase linechart' ) }
/ >
/ >
:
:
< div style = { { color : 'red' , textAlign : 'center' , marginTop : 50 } } > No data found < / d i v >
< div style = { { color : 'red' , textAlign : 'center' , marginTop : 50 } } > No data found < / d i v >
}
}
< / d i v >
< / d i v >
< / d i v >
< / d i v >
@ -3589,9 +3590,9 @@ class SiopasMap extends Component {
className = "chart-doughnut-carousel"
className = "chart-doughnut-carousel"
>
>
< CarouselIndicators items = { dataChart } activeIndex = { this . state . activeIndex3 } onClickHandler = { this . goToIndex3 } / >
< CarouselIndicators items = { dataChart } activeIndex = { this . state . activeIndex3 } onClickHandler = { this . goToIndex3 } / >
{ this . renderChartCostProyek ( dataChart ) }
{ this . renderChartCostProyek ( dataChart ) }
< CarouselControl direction = "prev" directionText = "Previous" onClickHandler = { this . previous3 } style = { { color : 'black' } } / >
< CarouselControl direction = "prev" directionText = "Previous" onClickHandler = { this . previous3 } style = { { color : 'black' } } / >
< CarouselControl direction = "next" directionText = "Next" onClickHandler = { this . next3 } style = { { color : 'black' } } / >
< CarouselControl direction = "next" directionText = "Next" onClickHandler = { this . next3 } style = { { color : 'black' } } / >
< / C a r o u s e l >
< / C a r o u s e l >
)
)
}
}
@ -3610,12 +3611,12 @@ class SiopasMap extends Component {
return (
return (
< CarouselItem
< CarouselItem
key = { idx }
key = { idx }
onExiting = { ( ) => this . setState ( { animating3 : true } ) }
onExiting = { ( ) => this . setState ( { animating3 : true } ) }
onExited = { ( ) => this . setState ( { animating3 : false } ) }
onExited = { ( ) => this . setState ( { animating3 : false } ) }
>
>
< div className = "chart-doughnut-carousel-item" >
< div className = "chart-doughnut-carousel-item" >
< div className = "chart-doughnut-caption" >
< div className = "chart-doughnut-caption" >
< div className = "text-center text-bold" style = { { fontSize : 12 } } > { item . proyek _name } < / d i v >
< div className = "text-center text-bold" style = { { fontSize : 12 } } > { item . proyek _name } < / d i v >
{ / * < d i v c l a s s N a m e = " t e x t - c e n t e r t o t a l - l u a s " >
{ / * < d i v c l a s s N a m e = " t e x t - c e n t e r t o t a l - l u a s " >
< span className = "total-luas-title" > Luas coverage : < / s p a n >
< span className = "total-luas-title" > Luas coverage : < / s p a n >
{ numberWithCommas ( item . total _luas _opt ) } km < sup > 2 < / s u p >
{ numberWithCommas ( item . total _luas _opt ) } km < sup > 2 < / s u p >
@ -3624,13 +3625,13 @@ class SiopasMap extends Component {
< div className = "chart-doughnut-chart" >
< div className = "chart-doughnut-chart" >
{
{
item . labels . length > 0 ?
item . labels . length > 0 ?
< Line
< Line
options = { optionsChartCostProyek }
options = { optionsChartCostProyek }
data = { item || defaultCostProyek }
data = { item || defaultCostProyek }
handleClickChart = { ( ) => console . log ( 'click persentase linechart' ) }
handleClickChart = { ( ) => console . log ( 'click persentase linechart' ) }
/ >
/ >
:
:
< div style = { { color : 'red' , textAlign : 'center' , marginTop : 50 } } > No data found < / d i v >
< div style = { { color : 'red' , textAlign : 'center' , marginTop : 50 } } > No data found < / d i v >
}
}
{ /* <div style={{color: 'red', textAlign: 'center'}}>Test</div> */ }
{ /* <div style={{color: 'red', textAlign: 'center'}}>Test</div> */ }
< / d i v >
< / d i v >
@ -3662,7 +3663,7 @@ class SiopasMap extends Component {
date = date ? moment ( date ) . format ( 'DD MMM YY' ) : '-'
date = date ? moment ( date ) . format ( 'DD MMM YY' ) : '-'
bcwp = bcwp ? this . renderFormatRupiah ( bcwp . toString ( ) , 'Rp' ) : '-' ;
bcwp = bcwp ? this . renderFormatRupiah ( bcwp . toString ( ) , 'Rp' ) : '-' ;
acwp = acwp ? this . renderFormatRupiah ( acwp . toString ( ) , 'Rp' ) : '-' ;
acwp = acwp ? this . renderFormatRupiah ( acwp . toString ( ) , 'Rp' ) : '-' ;
return [ date , bcwp , acwp ]
return [ date , bcwp , acwp ]
} ) : [ ] ;
} ) : [ ] ;
// let valueCostPlaning = dataRes ? dataRes.map(res => res.rencana_biaya) : []; // [10, 23, 39, 47, 55, 68, 70, 82, 90, 100]
// let valueCostPlaning = dataRes ? dataRes.map(res => res.rencana_biaya) : []; // [10, 23, 39, 47, 55, 68, 70, 82, 90, 100]
// let valueCostPlanning = dataRes ? dataRes.map(res => parseFloat(res.cal_budget_cost)) : []; // [10, 23, 39, 47, 55, 68, 70, 82, 90, 100]
// let valueCostPlanning = dataRes ? dataRes.map(res => parseFloat(res.cal_budget_cost)) : []; // [10, 23, 39, 47, 55, 68, 70, 82, 90, 100]
@ -3709,12 +3710,12 @@ class SiopasMap extends Component {
next = { this . next3 }
next = { this . next3 }
previous = { this . previous3 }
previous = { this . previous3 }
interval = { false }
interval = { false }
className = { this . state . kurvaSWindowMode === 'default' ? "chart-doughnut-carousel" : "chart-doughnut-carousel-max" }
className = { this . state . kurvaSWindowMode === 'default' ? "chart-doughnut-carousel" : "chart-doughnut-carousel-max" }
>
>
< CarouselIndicators items = { dataChart } activeIndex = { this . state . activeIndex3 } onClickHandler = { this . goToIndex3 } / >
< CarouselIndicators items = { dataChart } activeIndex = { this . state . activeIndex3 } onClickHandler = { this . goToIndex3 } / >
{ this . renderChartKurvaS ( dataChart ) }
{ this . renderChartKurvaS ( dataChart ) }
< CarouselControl direction = "prev" directionText = "Previous" onClickHandler = { this . previous3 } style = { { color : 'black' } } / >
< CarouselControl direction = "prev" directionText = "Previous" onClickHandler = { this . previous3 } style = { { color : 'black' } } / >
< CarouselControl direction = "next" directionText = "Next" onClickHandler = { this . next3 } style = { { color : 'black' } } / >
< CarouselControl direction = "next" directionText = "Next" onClickHandler = { this . next3 } style = { { color : 'black' } } / >
< / C a r o u s e l >
< / C a r o u s e l >
)
)
}
}
@ -3733,12 +3734,12 @@ class SiopasMap extends Component {
return (
return (
< CarouselItem
< CarouselItem
key = { idx }
key = { idx }
onExiting = { ( ) => this . setState ( { animating3 : true } ) }
onExiting = { ( ) => this . setState ( { animating3 : true } ) }
onExited = { ( ) => this . setState ( { animating3 : false } ) }
onExited = { ( ) => this . setState ( { animating3 : false } ) }
>
>
< div className = { this . state . kurvaSWindowMode === 'default' ? "chart-doughnut-carousel-item" : "chart-doughnut-carousel-item-max" } >
< div className = { this . state . kurvaSWindowMode === 'default' ? "chart-doughnut-carousel-item" : "chart-doughnut-carousel-item-max" } >
< div className = "chart-doughnut-caption" >
< div className = "chart-doughnut-caption" >
< div className = "text-center text-bold" style = { { fontSize : 12 } } > { item . proyek _name } < / d i v >
< div className = "text-center text-bold" style = { { fontSize : 12 } } > { item . proyek _name } < / d i v >
{ / * < d i v c l a s s N a m e = " t e x t - c e n t e r t o t a l - l u a s " >
{ / * < d i v c l a s s N a m e = " t e x t - c e n t e r t o t a l - l u a s " >
< span className = "total-luas-title" > Luas coverage : < / s p a n >
< span className = "total-luas-title" > Luas coverage : < / s p a n >
{ numberWithCommas ( item . total _luas _opt ) } km < sup > 2 < / s u p >
{ numberWithCommas ( item . total _luas _opt ) } km < sup > 2 < / s u p >
@ -3746,37 +3747,37 @@ class SiopasMap extends Component {
< / d i v >
< / d i v >
{
{
this . state . kurvaSWindowMode === 'default' ?
this . state . kurvaSWindowMode === 'default' ?
< div className = "chart-doughnut-chart" >
< div className = "chart-doughnut-chart" >
{
{
item . labels . length > 0 ?
item . labels . length > 0 ?
< Line
< Line
options = { optionsChartKurvaS }
options = { optionsChartKurvaS }
height = { null }
height = { null }
width = { null }
width = { null }
data = { item || defaultKurvaS }
data = { item || defaultKurvaS }
handleClickChart = { ( ) => console . log ( 'click persentase linechart' ) }
handleClickChart = { ( ) => console . log ( 'click persentase linechart' ) }
redraw = { true }
redraw = { true }
/ >
/ >
:
:
< div style = { { color : 'red' , textAlign : 'center' , marginTop : 50 } } > No data found < / d i v >
< div style = { { color : 'red' , textAlign : 'center' , marginTop : 50 } } > No data found < / d i v >
}
}
< / d i v >
< / d i v >
:
:
< div className = "chart-doughnut-chart-max" >
< div className = "chart-doughnut-chart-max" >
{
{
item . labels . length > 0 ?
item . labels . length > 0 ?
< Line
< Line
options = { optionsChartKurvaS }
options = { optionsChartKurvaS }
height = { null }
height = { null }
width = { null }
width = { null }
data = { item || defaultKurvaS }
data = { item || defaultKurvaS }
handleClickChart = { ( ) => console . log ( 'click persentase linechart' ) }
handleClickChart = { ( ) => console . log ( 'click persentase linechart' ) }
redraw = { true }
redraw = { true }
/ >
/ >
:
:
< div style = { { color : 'red' , textAlign : 'center' , marginTop : 50 } } > No data found < / d i v >
< div style = { { color : 'red' , textAlign : 'center' , marginTop : 50 } } > No data found < / d i v >
}
}
< / d i v >
< / d i v >
}
}
{ / * < d i v c l a s s N a m e = { t h i s . s t a t e . k u r v a S W i n d o w M o d e = = = ' d e f a u l t ' ? " c h a r t - d o u g h n u t - c h a r t " : " c h a r t - d o u g h t n u t - c h a r t - m a x " } >
{ / * < d i v c l a s s N a m e = { t h i s . s t a t e . k u r v a S W i n d o w M o d e = = = ' d e f a u l t ' ? " c h a r t - d o u g h n u t - c h a r t " : " c h a r t - d o u g h t n u t - c h a r t - m a x " } >
{
{
@ -3974,7 +3975,7 @@ class SiopasMap extends Component {
checkedKeysAnalisa = { this . state . checkedKeysAnalisa }
checkedKeysAnalisa = { this . state . checkedKeysAnalisa }
checkedKeysEmployeeDivision = { this . state . checkedKeysEmployeeDivision }
checkedKeysEmployeeDivision = { this . state . checkedKeysEmployeeDivision }
checkedKeysProjectTree = { this . state . checkedKeysProjectTree }
checkedKeysProjectTree = { this . state . checkedKeysProjectTree }
setCheckedKeysProjectTree = { ( data ) => this . setState ( { checkedKeysProjectTree : data } ) }
setCheckedKeysProjectTree = { ( data ) => this . setState ( { checkedKeysProjectTree : data } ) }
salesGroupTree = { this . state . salesGroupTree }
salesGroupTree = { this . state . salesGroupTree }
employeeDivisionTree = { this . state . employeeDivisionTree }
employeeDivisionTree = { this . state . employeeDivisionTree }
setSalesGroupTree = { ( data ) => this . setState ( { salesGroupTree : data } ) }
setSalesGroupTree = { ( data ) => this . setState ( { salesGroupTree : data } ) }
@ -4033,7 +4034,7 @@ class SiopasMap extends Component {
< Row className = 'progress-bottom' >
< Row className = 'progress-bottom' >
< Col md = { 12 } style = { { paddingRight : 0 , paddingLeft : 0 } } >
< Col md = { 12 } style = { { paddingRight : 0 , paddingLeft : 0 } } >
{ /* <Card className="remove-gap-bs-card" style={{ height: 'calc(100vh - 50px - (100vh / 2))' }}> */ }
{ /* <Card className="remove-gap-bs-card" style={{ height: 'calc(100vh - 50px - (100vh / 2))' }}> */ }
< Card className = "remove-gap-bs-card" style = { this . state . kurvaSWindowMode === 'default' ? {
< Card className = "remove-gap-bs-card" style = { this . state . kurvaSWindowMode === 'default' ? {
height : 'calc(100vh - 50px - (100vh / 2))' ,
height : 'calc(100vh - 50px - (100vh / 2))' ,
top : 0 ,
top : 0 ,
zIndex : 0
zIndex : 0
@ -4044,13 +4045,13 @@ class SiopasMap extends Component {
} } >
} } >
< CardHeader className = "panel-title" >
< CardHeader className = "panel-title" >
< span style = { { left : '50' , right : '50' , marginLeft : 'auto' , marginRight : 'auto' } } > Kurva S < / s p a n >
< span style = { { left : '50' , right : '50' , marginLeft : 'auto' , marginRight : 'auto' } } > Kurva S < / s p a n >
< div style = { { marginRight : '7px' , float : 'right' , marginLeft : 'auto' , right : 0 } } >
< div style = { { marginRight : '7px' , float : 'right' , marginLeft : 'auto' , right : 0 } } >
< span onClick = { ( ) => this . toggleKurvaSWindowMode ( ) } style = { { marginRight : '15px' , cursor : 'pointer' } } > { this . state . kurvaSWindowMode === 'default' ? < i className = "fa fa-expand" > < /i> : <i className="fa fa-compress"></i > } < / s p a n >
< span onClick = { ( ) => this . toggleKurvaSWindowMode ( ) } style = { { marginRight : '15px' , cursor : 'pointer' } } > { this . state . kurvaSWindowMode === 'default' ? < i className = "fa fa-expand" > < /i> : <i className="fa fa-compress"></i > } < / s p a n >
< span onClick = { ( ) => this . closeProggressBottom ( ) } style = { { marginRight : '5px' , cursor : 'pointer' } } > x < / s p a n >
< span onClick = { ( ) => this . closeProggressBottom ( ) } style = { { marginRight : '5px' , cursor : 'pointer' } } > x < / s p a n >
< / d i v >
< / d i v >
< / C a r d H e a d e r >
< / C a r d H e a d e r >
< CardBody className = "no-padding" >
< CardBody className = "no-padding" >
{ this . renderCarouselKurvaS ( ) }
{ this . renderCarouselKurvaS ( ) }
< / C a r d B o d y >
< / C a r d B o d y >
< / C a r d >
< / C a r d >
< / C o l >
< / C o l >
@ -4068,14 +4069,14 @@ class SiopasMap extends Component {
} } >
} } >
< Card className = "remove-gap-bs-card" style = { { height : 306 } } >
< Card className = "remove-gap-bs-card" style = { { height : 306 } } >
< CardHeader className = "panel-title" >
< CardHeader className = "panel-title" >
< span style = { { left : '50' , right : '50' , marginLeft : 'auto' , marginRight : 'auto' } } > { ( APP _MODE === 'ADW' ) ? 'Budget Control This Period' : 'Status Proyek' } < / s p a n > < s p a n o n C l i c k = { t h i s . c l o s e S t a t u s R i g h t } s t y l e = { { f l o a t : ' r i g h t ' , m a r g i n L e f t : ' a u t o ' , r i g h t : 0 , c u r s o r : ' p o i n t e r ' } } > x < / s p a n >
< span style = { { left : '50' , right : '50' , marginLeft : 'auto' , marginRight : 'auto' } } > { ( APP _MODE === 'ADW' ) ? 'Budget Control This Period' : 'Status Proyek' } < / s p a n > < s p a n o n C l i c k = { t h i s . c l o s e S t a t u s R i g h t } s t y l e = { { f l o a t : ' r i g h t ' , m a r g i n L e f t : ' a u t o ' , r i g h t : 0 , c u r s o r : ' p o i n t e r ' } } > x < / s p a n >
< / C a r d H e a d e r >
< / C a r d H e a d e r >
< CardBody className = "small-padding" style = { { overflow : 'auto' } } >
< CardBody className = "small-padding" style = { { overflow : 'auto' } } >
{
{
( APP _MODE === 'ADW' ) ?
( APP _MODE === 'ADW' ) ?
this . renderCarouselStatusProyekAdw ( )
this . renderCarouselStatusProyekAdw ( )
:
:
this . renderCarouselStatusProyek ( )
this . renderCarouselStatusProyek ( )
}
}
< / C a r d B o d y >
< / C a r d B o d y >
< / C a r d >
< / C a r d >