How to use the conseiljs.AttrbuteDataType.INT function in conseiljs

To help you get started, we’ve selected a few conseiljs examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Cryptonomic / Arronax / src / components / CustomTableRow / index.tsx View on Github external
{formatReferenceValue(attribute, truncateHash(value), value, onClickPrimaryKey)}
            
                
            
            
        );
    } else if (dataType === AttrbuteDataType.HASH) {
        return (
            
            {formatReferenceValue(attribute, truncateHash(value), value, onClickPrimaryKey)}
            
                
            
            
        );
    } else if (dataType === AttrbuteDataType.DECIMAL || dataType === AttrbuteDataType.INT || dataType === AttrbuteDataType.CURRENCY) {
        return formatNumber(Number(value), attribute);
    } else if (dataType === AttrbuteDataType.STRING && value.length > 100) {
        return (
            
            {value.substring(0, 100)}
            
                
            
            
        );
    } else if (dataType === AttrbuteDataType.STRING && value.length > 0 && attribute.cardinality && attribute.cardinality < 20) {
        return value.split('_').map(s => s.charAt(0).toUpperCase() + s.slice(1)).join(' ');
    } else {
        return formatReferenceValue(attribute, value, value, onClickPrimaryKey);
    }
};
github Cryptonomic / Arronax / src / utils / render.tsx View on Github external
);
      } else if (dataType === AttrbuteDataType.HASH) {
          const hash = formatReferenceValue(attribute, (truncate ? truncateHash(value) : value), value, onClickPrimaryKey);
          return (
              
              {hash}
              
                  
              
              
          );
      } else if (dataType === AttrbuteDataType.DECIMAL || dataType === AttrbuteDataType.INT || dataType === AttrbuteDataType.CURRENCY) {
        return formatNumber(Number(value), attribute, truncate);
      } else if (dataType === AttrbuteDataType.STRING && value.length > 100) {
          return (
              
              {value.substring(0, 100)}
              
                  
              
              
          );
      } else if (dataType === AttrbuteDataType.STRING && value.length > 0 && attribute.cardinality && attribute.cardinality < 20) {
          return value.split('_').map(s => s.charAt(0).toUpperCase() + s.slice(1)).join(' ');
      } else {
          return formatReferenceValue(attribute, value, value, onClickPrimaryKey);
      }
  };
github Cryptonomic / Arronax / src / utils / general.ts View on Github external
export const formatNumber = (value: number, attribute: AttributeDefinition, truncate: boolean = true) => {
    if (value === undefined) { return ''; }

    let t = '';
    if (attribute.dataType === AttrbuteDataType.INT) {
        t = (new Intl.NumberFormat(window.navigator.languages[0], { style: 'decimal', useGrouping: false, minimumFractionDigits: 0, maximumFractionDigits: 1 })).format(value);
    } else if (attribute.scale !== undefined && (attribute.dataType === AttrbuteDataType.DECIMAL || attribute.dataType === AttrbuteDataType.CURRENCY)) {
        const d = value / Math.pow(10, attribute.scale);
        let minimumFractionDigits = 0;
        let maximumFractionDigits = 0;
        if (!truncate) {
            minimumFractionDigits = 6;
            maximumFractionDigits = 6;
        } else if (value < 10000) {
            minimumFractionDigits = 6;
            maximumFractionDigits = 6;
        } else if (value < 100000) {
            minimumFractionDigits = 4;
            maximumFractionDigits = 4;
        } else if (value < 1000000000) {
            minimumFractionDigits = 2;
github Cryptonomic / Arronax / src / utils / render.tsx View on Github external
const formatAggregatedValue = (attribute: AttributeDefinition, value: any, aggregation: ConseilFunction) => {
      let aggregationAttribute = { ...attribute };
  
      switch (aggregation) {
          case ConseilFunction.count: 
              aggregationAttribute.dataType = AttrbuteDataType.INT;
              break;
          default:
              aggregationAttribute.dataType = attribute.dataType === AttrbuteDataType.CURRENCY ? AttrbuteDataType.CURRENCY : AttrbuteDataType.DECIMAL;
              break;
      }
  
      return formatNumber(Number(value), aggregationAttribute);
  }
github Cryptonomic / Arronax / src / components / CustomTableRow / index.tsx View on Github external
const formatAggregatedValue = (attribute: AttributeDefinition, value: any, aggregation: ConseilFunction) => {
    let aggregationAttribute = { ...attribute };

    switch (aggregation) {
        case ConseilFunction.count: 
            aggregationAttribute.dataType = AttrbuteDataType.INT;
            break;
        default:
            aggregationAttribute.dataType = attribute.dataType === AttrbuteDataType.CURRENCY ? AttrbuteDataType.CURRENCY : AttrbuteDataType.DECIMAL;
            break;
    }

    return formatNumber(Number(value), aggregationAttribute);
}