[FIX] web_tree_dynamic_colored_field: Fixed issue of a options not working.

pull/3107/head
AmmarOfficewalaSerpentCS 2024-11-22 18:11:07 +05:30 committed by Enric Tobella
parent 35fc7ab061
commit ae656ec5cf
1 changed files with 26 additions and 53 deletions

View File

@ -11,63 +11,36 @@ patch(ListRenderer.prototype, "web_tree_dynamic_colored_field_list_renderer", {
* @returns {String} style code for the html element
*/
getDynamicColoredStyle(column, record) {
let style = "";
let color = this.getDynamicColor(column, record, "bg_color");
if (color !== undefined) {
style += `background-color: ${color};`;
}
color = this.getDynamicColor(column, record, "fg_color");
if (color !== undefined) {
// $td.css('color', color);
style += `color: ${color};`;
}
return style;
},
/**
* Return the `color` that has truthfull expresssion
*
* @param column {Object} represents field
* @param record {Record}
* @param color_target {String} 'bg_color' or 'fg_color'
* @returns {String | undefined} color
*/
getDynamicColor(column, record, color_target) {
if (color_target in column.options) {
const definition = column.options[color_target];
let result = "";
for (const color_def of definition.split(";")) {
const color_to_expression = this.pairColorParse(color_def);
if (color_to_expression !== undefined) {
const [color, expression] = color_to_expression;
if (evaluateExpr(expression, record.evalContextWithVirtualIds)) {
// We don't return first match,
// as it can be default color (with "True" expression),
// and later more precise condition may be found.
result = color;
let definition
expression
color
let style = ''
if (column.options){
if (column?.options?.bg_color){
definition = column.options.bg_color
for (const color_def of definition.split(";")) {
var pairList = color_def.split(":"),
color = pairList[0],
expression = pairList[1] ? pairList[1] : "True";
if (evaluateExpr(expression, record.evalContext)) {
style += `background-color: ${color} !important;`;
}
}
}
if (column?.options?.fg_color){
definition = column.options.fg_color
for (const color_def of definition.split(";")) {
var pairList = color_def.split(":"),
color = pairList[0],
expression = pairList[1] ? pairList[1] : "True";
console.log("expression", expression)
if (evaluateExpr(expression, record.evalContext)) {
style += `color: ${color} !important`;
}
}
}
return result || undefined;
}
return style
},
/**
* @param {String} pairColor `color: expression` pair
* @returns {Array} undefined or array of color, expression
*/
pairColorParse: function (pairColor) {
if (pairColor !== "") {
var pairList = pairColor.split(":"),
color = pairList[0],
// If one passes a bare color instead of an expression,
// then we consider that color is to be shown in any case
expression = pairList[1] ? pairList[1] : "True";
return [color, expression];
}
return undefined;
},
});