Browse Source

fix(clear comment): delete comment

pull/1/head
Watiah11 6 months ago
parent
commit
eaa33637ca
  1. 800
      src/const/CustomFunc.js
  2. 24
      src/views/Dashboard/DashboardBOD.js

800
src/const/CustomFunc.js

@ -1,402 +1,398 @@
export const hideAttr = [ export const hideAttr = [
"geom", "geom",
"password", "password",
"id", "id",
"username", "username",
"created_date", "created_date",
"created_by", "created_by",
"modified_date", "modified_date",
"modified_by", "modified_by",
"updated_by", "updated_by",
"updated_date", "updated_date",
"updated_at", "updated_at",
"session_login", "session_login",
"company", "company",
"buffer_radius", "buffer_radius",
"group_sales", "group_sales",
"OBJECTID", "OBJECTID",
"fcm_token", "fcm_token",
"key", "key",
"planning_id", "planning_id",
"subproyek_id", "subproyek_id",
"user_id", "user_id",
"created_at", "created_at",
"_type", // waspang "_type", // waspang
"satuan_id", "satuan_id",
"m_planning_nama", "m_planning_nama",
"m_planning_target", "m_planning_target",
"m_satuan_description", "m_satuan_description",
"m_subproyek_akhir_proyek", "m_subproyek_akhir_proyek",
"m_subproyek_area_kerja", "m_subproyek_area_kerja",
"m_subproyek_biaya", "m_subproyek_biaya",
"m_subproyek_biaya_actual", "m_subproyek_biaya_actual",
"m_subproyek_color_progress", "m_subproyek_color_progress",
"m_subproyek_jumlah_pekerja", "m_subproyek_jumlah_pekerja",
"m_subproyek_ket_progress", "m_subproyek_ket_progress",
"m_subproyek_lokasi_kantor", "m_subproyek_lokasi_kantor",
"m_subproyek_mulai_proyek", "m_subproyek_mulai_proyek",
"m_subproyek_nama", "m_subproyek_nama",
"m_subproyek_persentase_progress_actual", "m_subproyek_persentase_progress_actual",
"m_subproyek_persentase_progress_plan", "m_subproyek_persentase_progress_plan",
"m_users_email", "m_users_email",
"m_users_username", "m_users_username",
"m_planning_address", "m_planning_address",
"m_planning_jumlah_titik", "m_planning_jumlah_titik",
"m_planning_target_planning", "m_planning_target_planning",
"m_satuan_name", "m_satuan_name",
"m_subproyek_pic", "m_subproyek_pic",
"m_users_gender", "m_users_gender",
"m_users_name", "m_users_name",
"m_users_phone_number", "m_users_phone_number",
]; ];
export const salesAttrShow = [ export const salesAttrShow = [
"id", "id",
"group_sales_name", "group_sales_name",
"name", "name",
"phone_number", "phone_number",
"email", "email",
"address" "address"
]; ];
export const dateColumns = [ export const dateColumns = [
"created_date", "created_date",
"modified_date", "modified_date",
"birth_date", "birth_date",
"datesend", // last_waypoint_employee "datesend", // last_waypoint_employee
"wptime", // last_waypoint_employee "wptime", // last_waypoint_employee
"tanggal", "tanggal",
"mulai_tugas", "mulai_tugas",
"akhir_tugas" "akhir_tugas"
]; ];
export const DATE_TIME_FORMAT = "DD-MM-YYYY"; export const DATE_TIME_FORMAT = "DD-MM-YYYY";
export const COLUMN_DAILY_INFO_TABLE = [ export const COLUMN_DAILY_INFO_TABLE = [
{ {
dataField: 'id', dataField: 'id',
text: 'ID', text: 'ID',
hidden: true hidden: true
}, },
{ {
dataField: 'join.group_employee_name', dataField: 'join.group_employee_name',
text: 'Group Employee' text: 'Group Employee'
}, },
{ {
dataField: 'name', dataField: 'name',
text: 'Name' text: 'Name'
}, },
{ {
dataField: 'phone_number', dataField: 'phone_number',
text: 'Phone Number' text: 'Phone Number'
}, },
{ {
dataField: 'email', dataField: 'email',
text: 'Email' text: 'Email'
}, },
{ {
dataField: 'address', dataField: 'address',
text: 'Address' text: 'Address'
}, },
{ {
dataField: 'clock_in', dataField: 'clock_in',
text: 'Clock In' text: 'Clock In'
}, },
{ {
dataField: 'clock_out', dataField: 'clock_out',
text: 'Clock Out' text: 'Clock Out'
} }
] ]
export const formatLabel = (label) => { export const formatLabel = (label) => {
let output = ""; let output = "";
if (label.includes("_")) { if (label.includes("_")) {
let words = label.split("_"); let words = label.split("_");
for (let i=0; i < words.length; i++) { for (let i=0; i < words.length; i++) {
words[i] = words[i].charAt(0).toUpperCase() + words[i].substr(1); words[i] = words[i].charAt(0).toUpperCase() + words[i].substr(1);
} }
output = words.join(' '); output = words.join(' ');
} }
else { else {
output = label.charAt(0).toUpperCase() + label.slice(1); output = label.charAt(0).toUpperCase() + label.slice(1);
} }
return output; return output;
} }
export const QUERY_BUILDER_FIELD_SALES = export const QUERY_BUILDER_FIELD_SALES =
{ {
"properties->username": { "properties->username": {
label: 'Username', label: 'Username',
type: 'text', type: 'text',
valueSources: ['value'], valueSources: ['value'],
}, },
"properties->name": { "properties->name": {
label: 'Name', label: 'Name',
type: 'text', type: 'text',
valueSources: ['value'], valueSources: ['value'],
}, },
"properties->email": { "properties->email": {
label: 'Email', label: 'Email',
type: 'text', type: 'text',
valueSources: ['value'], valueSources: ['value'],
}, },
"properties->address": { "properties->address": {
label: 'Address', label: 'Address',
type: 'text', type: 'text',
valueSources: ['value'], valueSources: ['value'],
}, },
"properties->phone_number": { "properties->phone_number": {
label: 'Phone Number', label: 'Phone Number',
type: 'number', type: 'number',
valueSources: ['value'], valueSources: ['value'],
}, },
"properties->type_sales": { "properties->type_sales": {
label: 'Type Sales', label: 'Type Sales',
type: 'select', type: 'select',
valueSources: ['value'], valueSources: ['value'],
fieldSettings: { fieldSettings: {
listValues: [ listValues: [
{ value: 'B2B', title: 'B2B' }, { value: 'B2B', title: 'B2B' },
{ value: 'B2C', title: 'B2C' }, { value: 'B2C', title: 'B2C' },
], ],
} }
}, },
} }
export const checkActMenup = (menuPath, actProp) => { export const checkActMenup = (menuPath, actProp) => {
let foundObj; let foundObj;
let entireObj = JSON.parse(localStorage.getItem("menu_login")); let entireObj = JSON.parse(localStorage.getItem("menu_login"));
JSON.stringify(entireObj, (_, nestedValue) => { JSON.stringify(entireObj, (_, nestedValue) => {
if (nestedValue && nestedValue.url === menuPath) { if (nestedValue && nestedValue.url === menuPath) {
foundObj = nestedValue; foundObj = nestedValue;
} }
return nestedValue; return nestedValue;
}); });
let output = false; let output = false;
let actValue = actProp.trim().toLowerCase() let actValue = actProp.trim().toLowerCase()
switch (actValue) { switch (actValue) {
case "create": case "create":
if (foundObj[actValue] === true) { if (foundObj[actValue] === true) {
output = true; output = true;
} else { } else {
output = false; output = false;
} }
case "read": case "read":
if (foundObj[actValue] === true) { if (foundObj[actValue] === true) {
output = true; output = true;
} }
case "update": case "update":
if (foundObj[actValue] === true) { if (foundObj[actValue] === true) {
output = true; output = true;
} }
case "delete": case "delete":
if (foundObj[actValue] === true) { if (foundObj[actValue] === true) {
output = true; output = true;
} }
// default: }
// output = false return output;
} };
return output; export const QUERY_BUILDER_FIELD_CUSTOMER =
// return foundObj[actProp]; {
}; "properties->name": {
label: 'Name',
export const QUERY_BUILDER_FIELD_CUSTOMER = type: 'text',
{ valueSources: ['value'],
"properties->name": { },
label: 'Name', "properties->buffer_radius": {
type: 'text', label: 'Buffer Radius',
valueSources: ['value'], type: 'number',
}, fieldSettings: {
"properties->buffer_radius": { min: 1,
label: 'Buffer Radius', },
type: 'number', valueSources: ['value'],
fieldSettings: { },
min: 1, "properties->address": {
}, label: 'Address',
valueSources: ['value'], type: 'text',
}, valueSources: ['value'],
"properties->address": { },
label: 'Address', "properties->income": {
type: 'text', label: 'Income',
valueSources: ['value'], type: 'number',
}, valueSources: ['value'],
"properties->income": { },
label: 'Income', "properties->store_manager": {
type: 'number', label: 'Store Manager',
valueSources: ['value'], type: 'text',
}, valueSources: ['value'],
"properties->store_manager": { },
label: 'Store Manager', }
type: 'text',
valueSources: ['value'], export const QUERY_BUILDER_FIELD_OFFICE =
}, {
} "properties->company": {
label: 'Company',
export const QUERY_BUILDER_FIELD_OFFICE = type: 'text',
{ valueSources: ['value'],
"properties->company": { },
label: 'Company', "properties->name": {
type: 'text', label: 'Name',
valueSources: ['value'], type: 'text',
}, valueSources: ['value'],
"properties->name": { },
label: 'Name', "properties->employes": {
type: 'text', label: 'Employe',
valueSources: ['value'], type: 'text',
}, valueSources: ['value'],
"properties->employes": { },
label: 'Employe', "properties->address": {
type: 'text', label: 'Alamat',
valueSources: ['value'], type: 'text',
}, valueSources: ['value'],
"properties->address": { },
label: 'Alamat', }
type: 'text',
valueSources: ['value'],
}, export const getChildrenTree = (data) =>
} data.map((item, index) => {
if (item.subproyeks && item.subproyeks.length > 0) {
return {
export const getChildrenTree = (data) => "children": getChildrenTree(item.subproyeks),
data.map((item, index) => { "title": item.nama,
if (item.subproyeks && item.subproyeks.length > 0) { "key": Math.random(),
return { "id": item.id,
"children": getChildrenTree(item.subproyeks), ...item
"title": item.nama, }
"key": Math.random(), }
"id": item.id, return {
...item "title": item.nama,
} "key": Math.random(),
} ...item
return { }
"title": item.nama, })
"key": Math.random(),
...item export const formatRupiah = (angka, prefix) => {
} var number_string = angka.replace(/[^,\d]/g, '').toString(),
}) split = number_string.split(','),
sisa = split[0].length % 3,
export const formatRupiah = (angka, prefix) => { rupiah = split[0].substr(0, sisa),
var number_string = angka.replace(/[^,\d]/g, '').toString(), ribuan = split[0].substr(sisa).match(/\d{3}/gi);
split = number_string.split(','), var separator = "";
sisa = split[0].length % 3, if(ribuan){
rupiah = split[0].substr(0, sisa), separator = sisa ? '.' : '';
ribuan = split[0].substr(sisa).match(/\d{3}/gi); rupiah += separator + ribuan.join('.');
var separator = ""; }
if(ribuan){
separator = sisa ? '.' : ''; rupiah = split[1] != undefined ? rupiah + ',' + split[1] : rupiah;
rupiah += separator + ribuan.join('.'); return prefix == undefined ? rupiah : (rupiah ? 'Rp. ' + rupiah : '');
} }
rupiah = split[1] != undefined ? rupiah + ',' + split[1] : rupiah; export const renderFormatRupiah = (text, prefix) => {
return prefix == undefined ? rupiah : (rupiah ? 'Rp. ' + rupiah : ''); text = text.split('.')[0];
} if (text) {
return formatRupiah(text, prefix)
export const renderFormatRupiah = (text, prefix) => { } else {
text = text.split('.')[0]; return "-"
if (text) { }
return formatRupiah(text, prefix) }
} else {
return "-" export const formatNumber = (angka) => {
} var number_string = angka.replace(/[^,\d]/g, '').toString(),
} split = number_string.split(','),
sisa = split[0].length % 3,
export const formatNumber = (angka) => { rupiah = split[0].substr(0, sisa),
var number_string = angka.replace(/[^,\d]/g, '').toString(), ribuan = split[0].substr(sisa).match(/\d{3}/gi);
split = number_string.split(','), var separator = "";
sisa = split[0].length % 3, if(ribuan){
rupiah = split[0].substr(0, sisa), separator = sisa ? '.' : '';
ribuan = split[0].substr(sisa).match(/\d{3}/gi); rupiah += separator + ribuan.join('.');
var separator = ""; }
if(ribuan){
separator = sisa ? '.' : ''; rupiah = split[1] != undefined ? rupiah + ',' + split[1] : rupiah;
rupiah += separator + ribuan.join('.'); return rupiah
} }
rupiah = split[1] != undefined ? rupiah + ',' + split[1] : rupiah;
return rupiah export const formatThousand = (x) => {
} return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ".");
}
export const formatThousand = (x) => { export const formatLargeNumber = (num) => {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, "."); const formattedNum = formatThousand(num);
} if (num >= 1000000000000) {
return `${(num / 1000000000000).toFixed(1)}T`;
export const formatLargeNumber = (num) => { } else if (num >= 1000000000) {
const formattedNum = formatThousand(num); return `${(num / 1000000000).toFixed(1)}M`;
if (num >= 1000000000000) { } else if (num >= 1000000) {
return `${(num / 1000000000000).toFixed(1)}T`; return `${(num / 1000000).toFixed(1)}Jt`;
} else if (num >= 1000000000) { }
return `${(num / 1000000000).toFixed(1)}M`; return formattedNum;
} else if (num >= 1000000) { };
return `${(num / 1000000).toFixed(1)}Jt`; /*
} Using it:
return formattedNum; sortBy(data, {
}; prop: "date",
/* desc: true,
Using it: parser: function (item) {
sortBy(data, { return item.toUpperCase();
prop: "date", }
desc: true, });
parser: function (item) { */
return item.toUpperCase(); export const sortBy = (function () {
} var toString = Object.prototype.toString,
}); parse = function (x) { return x; },
*/ getItem = function (x) {
export const sortBy = (function () { var isObject = x != null && typeof x === "object";
var toString = Object.prototype.toString, var isProp = isObject && this.prop in x;
parse = function (x) { return x; }, return this.parser(isProp ? x[this.prop] : x);
getItem = function (x) { };
var isObject = x != null && typeof x === "object";
var isProp = isObject && this.prop in x; /**
return this.parser(isProp ? x[this.prop] : x); * Sorts an array of elements.
}; *
* @param {Array} array: the collection to sort
/** * @param {Object} cfg: the configuration options
* Sorts an array of elements. * @property {String} cfg.prop: property name (if it is an Array of objects)
* * @property {Boolean} cfg.desc: determines whether the sort is descending
* @param {Array} array: the collection to sort * @property {Function} cfg.parser: function to parse the items to expected type
* @param {Object} cfg: the configuration options * @return {Array}
* @property {String} cfg.prop: property name (if it is an Array of objects) */
* @property {Boolean} cfg.desc: determines whether the sort is descending return function sortby (array, cfg) {
* @property {Function} cfg.parser: function to parse the items to expected type if (!(array instanceof Array && array.length)) return [];
* @return {Array} if (toString.call(cfg) !== "[object Object]") cfg = {};
*/ if (typeof cfg.parser !== "function") cfg.parser = parse;
return function sortby (array, cfg) { cfg.desc = !!cfg.desc ? -1 : 1;
if (!(array instanceof Array && array.length)) return []; return array.sort(function (a, b) {
if (toString.call(cfg) !== "[object Object]") cfg = {}; a = getItem.call(cfg, a);
if (typeof cfg.parser !== "function") cfg.parser = parse; b = getItem.call(cfg, b);
cfg.desc = !!cfg.desc ? -1 : 1; return cfg.desc * (a < b ? -1 : +(a > b));
return array.sort(function (a, b) { });
a = getItem.call(cfg, a); };
b = getItem.call(cfg, b);
return cfg.desc * (a < b ? -1 : +(a > b)); }());
});
};
export const uniqueKeyValues = (arr, key) => {
}()); return [... new Set(arr.map((obj) => {return obj[key]}))];
}
export const uniqueKeyValues = (arr, key) => { export const renderLabelStatus = (text) => {
return [... new Set(arr.map((obj) => {return obj[key]}))]; let label = text;
} if (text === 'fom' || text === 'fot' || text === 'po') {
label = text.toUpperCase();
export const renderLabelStatus = (text) => { }
let label = text; return label;
if (text === 'fom' || text === 'fot' || text === 'po') { }
label = text.toUpperCase();
} export const formatRibuanDecimal = (n) => {
return label; let parts=n.toString().split(".");
} return "Rp. " + parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ".") + (parts[1] ? "," + parts[1] : "");
}
export const formatRibuanDecimal = (n) => {
let parts=n.toString().split("."); export const capitalizeFirstLetter = (string) => {
return "Rp. " + parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ".") + (parts[1] ? "," + parts[1] : ""); return string.charAt(0).toUpperCase() + string.slice(1);
} }
export const capitalizeFirstLetter = (string) => {
return string.charAt(0).toUpperCase() + string.slice(1);
}

24
src/views/Dashboard/DashboardBOD.js

@ -521,7 +521,6 @@ const DashboardBOD = (props) => {
datasets: [ datasets: [
{ {
label: '', label: '',
// data: [COMPANY_CASHFLOW_TOTAL_BUDGET, COMPANY_CASHFLOW_EXPENDITURE, COMPANY_CASHFLOW_INVOICE, COMPANY_CASHFLOW_CASH_IN],
data: [ data: [
PROJECT_EXPENDITURE && PROJECT_EXPENDITURE.total_budget ? PROJECT_EXPENDITURE.total_budget : 0, PROJECT_EXPENDITURE && PROJECT_EXPENDITURE.total_budget ? PROJECT_EXPENDITURE.total_budget : 0,
PROJECT_EXPENDITURE && PROJECT_EXPENDITURE.total_expenditure ? PROJECT_EXPENDITURE.total_expenditure : 0, PROJECT_EXPENDITURE && PROJECT_EXPENDITURE.total_expenditure ? PROJECT_EXPENDITURE.total_expenditure : 0,
@ -557,10 +556,6 @@ const DashboardBOD = (props) => {
backgroundColor="#f3f3f3" backgroundColor="#f3f3f3"
foregroundColor="#ecebeb" foregroundColor="#ecebeb"
> >
{/* <rect x="0" y="0" rx="5" ry="5" width="25%" height="18" />
<rect x="0" y="23" rx="5" ry="5" width="75%" height="18" />
<rect x="0" y="47" rx="5" ry="5" width="100%" height="18" />
<rect x="0" y="70" rx="5" ry="5" width="45%" height="18" /> */}
<rect x="7" y="12" rx="5" ry="5" width="414" height="20" /> <rect x="7" y="12" rx="5" ry="5" width="414" height="20" />
<rect x="7" y="41" rx="5" ry="5" width="220" height="20" /> <rect x="7" y="41" rx="5" ry="5" width="220" height="20" />
<rect x="7" y="69" rx="5" ry="5" width="319" height="20" /> <rect x="7" y="69" rx="5" ry="5" width="319" height="20" />
@ -584,7 +579,6 @@ const DashboardBOD = (props) => {
datasets: [ datasets: [
{ {
label: "", label: "",
// data: [2, 4, 10],
data: [ data: [
PROJECT_BY_FINANCIAL_HEALTH && PROJECT_BY_FINANCIAL_HEALTH.overrun ? PROJECT_BY_FINANCIAL_HEALTH.overrun : '', PROJECT_BY_FINANCIAL_HEALTH && PROJECT_BY_FINANCIAL_HEALTH.overrun ? PROJECT_BY_FINANCIAL_HEALTH.overrun : '',
PROJECT_BY_FINANCIAL_HEALTH && PROJECT_BY_FINANCIAL_HEALTH.warning ? PROJECT_BY_FINANCIAL_HEALTH.warning : '', PROJECT_BY_FINANCIAL_HEALTH && PROJECT_BY_FINANCIAL_HEALTH.warning ? PROJECT_BY_FINANCIAL_HEALTH.warning : '',
@ -618,7 +612,6 @@ const DashboardBOD = (props) => {
datasets: [ datasets: [
{ {
label: "", label: "",
// data: [1, 3, 11],
data: [ data: [
PROJECT_BY_SCHEDULE_HEALTH && PROJECT_BY_SCHEDULE_HEALTH['behind-schedule'] ? PROJECT_BY_SCHEDULE_HEALTH['behind-schedule'] : '', PROJECT_BY_SCHEDULE_HEALTH && PROJECT_BY_SCHEDULE_HEALTH['behind-schedule'] ? PROJECT_BY_SCHEDULE_HEALTH['behind-schedule'] : '',
PROJECT_BY_SCHEDULE_HEALTH && PROJECT_BY_SCHEDULE_HEALTH.warning ? PROJECT_BY_SCHEDULE_HEALTH.warning : '', PROJECT_BY_SCHEDULE_HEALTH && PROJECT_BY_SCHEDULE_HEALTH.warning ? PROJECT_BY_SCHEDULE_HEALTH.warning : '',
@ -664,7 +657,6 @@ const DashboardBOD = (props) => {
position: 'right', position: 'right',
labels: { labels: {
boxWidth: 10, boxWidth: 10,
// padding: 15,
font: { font: {
size: 10 size: 10
} }
@ -674,7 +666,6 @@ const DashboardBOD = (props) => {
datalabels: { datalabels: {
color: '#FFFFFF', color: '#FFFFFF',
formatter: function (value, context) { formatter: function (value, context) {
// return value ? value : null
if (value && value > 0) { if (value && value > 0) {
return value; return value;
} }
@ -684,12 +675,10 @@ const DashboardBOD = (props) => {
} }
}} }}
chartData={PROJECT_PER_DIVISION ? { chartData={PROJECT_PER_DIVISION ? {
// labels: [['Telecommunication', 'Solution Service'], ['Telecommunication', 'Solution Product'], 'Energy Solution', 'Constructions'],
labels: PROJECT_PER_DIVISION ? PROJECT_PER_DIVISION.map((item, idx) => item.name) : [], labels: PROJECT_PER_DIVISION ? PROJECT_PER_DIVISION.map((item, idx) => item.name) : [],
datasets: [ datasets: [
{ {
label: "", label: "",
// data: [7, 2, 4, 3],
data: PROJECT_PER_DIVISION ? PROJECT_PER_DIVISION.map((item, idx) => item.total) : [], data: PROJECT_PER_DIVISION ? PROJECT_PER_DIVISION.map((item, idx) => item.total) : [],
borderColor: PROJECT_PER_DIVISION ? PROJECT_PER_DIVISION.map((item, idx) => item.color) : [], borderColor: PROJECT_PER_DIVISION ? PROJECT_PER_DIVISION.map((item, idx) => item.color) : [],
backgroundColor: PROJECT_PER_DIVISION ? PROJECT_PER_DIVISION.map((item, idx) => item.color) : [], backgroundColor: PROJECT_PER_DIVISION ? PROJECT_PER_DIVISION.map((item, idx) => item.color) : [],
@ -720,7 +709,6 @@ const DashboardBOD = (props) => {
position: 'right', position: 'right',
labels: { labels: {
boxWidth: 10, boxWidth: 10,
// padding: 15,
font: { font: {
size: 10 size: 10
} }
@ -730,19 +718,16 @@ const DashboardBOD = (props) => {
datalabels: { datalabels: {
color: '#FFFFFF', color: '#FFFFFF',
formatter: function (value, context) { formatter: function (value, context) {
// return value ? toRupiah(value, { useUnit: 'jt' }) : 0
return null; return null;
} }
} }
} }
}} }}
chartData={PROJECT_VALUE_PER_DIVISION ? { chartData={PROJECT_VALUE_PER_DIVISION ? {
// labels: [['Telecommunication', 'Solution Service'], ['Telecommunication', 'Solution Product'], 'Energy Solution', 'Constructions'],
labels: PROJECT_VALUE_PER_DIVISION ? PROJECT_VALUE_PER_DIVISION.map((item, idx) => item.name) : [], labels: PROJECT_VALUE_PER_DIVISION ? PROJECT_VALUE_PER_DIVISION.map((item, idx) => item.name) : [],
datasets: [ datasets: [
{ {
label: "", label: "",
// data: [50, 120, 72, 60],
data: PROJECT_VALUE_PER_DIVISION ? PROJECT_VALUE_PER_DIVISION.map((item, idx) => item.total).filter(value => value !== 0) : [], data: PROJECT_VALUE_PER_DIVISION ? PROJECT_VALUE_PER_DIVISION.map((item, idx) => item.total).filter(value => value !== 0) : [],
borderColor: PROJECT_VALUE_PER_DIVISION ? PROJECT_VALUE_PER_DIVISION.map((item, idx) => item.color) : [], borderColor: PROJECT_VALUE_PER_DIVISION ? PROJECT_VALUE_PER_DIVISION.map((item, idx) => item.color) : [],
backgroundColor: PROJECT_VALUE_PER_DIVISION ? PROJECT_VALUE_PER_DIVISION.map((item, idx) => item.color) : [], backgroundColor: PROJECT_VALUE_PER_DIVISION ? PROJECT_VALUE_PER_DIVISION.map((item, idx) => item.color) : [],
@ -788,7 +773,6 @@ const DashboardBOD = (props) => {
} }
}} }}
data={{ data={{
// labels: ["Initiation", "Planning", "Execution", "Control Monitoring", "Close"],
labels: PROJECT_BY_PHASE ? PROJECT_BY_PHASE.map((item, idx) => item.name) : [], labels: PROJECT_BY_PHASE ? PROJECT_BY_PHASE.map((item, idx) => item.name) : [],
datasets: [ datasets: [
{ {
@ -814,10 +798,6 @@ const DashboardBOD = (props) => {
backgroundColor="#f3f3f3" backgroundColor="#f3f3f3"
foregroundColor="#ecebeb" foregroundColor="#ecebeb"
> >
{/* <rect x="0" y="0" rx="5" ry="5" width="25%" height="18" />
<rect x="0" y="23" rx="5" ry="5" width="75%" height="18" />
<rect x="0" y="47" rx="5" ry="5" width="100%" height="18" />
<rect x="0" y="70" rx="5" ry="5" width="45%" height="18" /> */}
<rect x="7" y="12" rx="5" ry="5" width="414" height="20" /> <rect x="7" y="12" rx="5" ry="5" width="414" height="20" />
<rect x="7" y="41" rx="5" ry="5" width="220" height="20" /> <rect x="7" y="41" rx="5" ry="5" width="220" height="20" />
<rect x="7" y="69" rx="5" ry="5" width="319" height="20" /> <rect x="7" y="69" rx="5" ry="5" width="319" height="20" />
@ -876,9 +856,7 @@ const DashboardBOD = (props) => {
}, },
datalabels: { datalabels: {
color: '#FFFFFF', color: '#FFFFFF',
// rotation: -90
formatter: function (value, context) { formatter: function (value, context) {
// return value ? toRupiah(value, { useUnit: 'jt' }) : 0
return null; return null;
} }
} }
@ -925,8 +903,6 @@ const DashboardBOD = (props) => {
changeMode={(mode) => setHealthPerDivisionMode(mode)} changeMode={(mode) => setHealthPerDivisionMode(mode)}
chartType="vertical-bar" chartType="vertical-bar"
chartData={PROJECT_SCHEDULE_HEALTH_PER_DIVISION || PROJECT_BUDGET_HEALTH_PER_DIVISION ? { chartData={PROJECT_SCHEDULE_HEALTH_PER_DIVISION || PROJECT_BUDGET_HEALTH_PER_DIVISION ? {
// labels: ['Telecommunication Solution Service', 'Telecommunication Solution Product', 'Energy Solution', 'Constructions'],
// labels: [['Telecommunication', 'Solution Service'], ['Telecommunication', 'Solution Product'], 'Energy Solution', 'Constructions'],
labels: labels:
healthPerDivisionMode === 'schedule' ? healthPerDivisionMode === 'schedule' ?
PROJECT_SCHEDULE_HEALTH_PER_DIVISION ? PROJECT_SCHEDULE_HEALTH_PER_DIVISION.map((item, idx) => item.name) : [] PROJECT_SCHEDULE_HEALTH_PER_DIVISION ? PROJECT_SCHEDULE_HEALTH_PER_DIVISION.map((item, idx) => item.name) : []

Loading…
Cancel
Save