@fstnetwork/fst-loc-tools-utils

0.2.0 • Public • Published

fst-loc-tools-utils

yarn add @fstnetwork/fst-loc-tools-utils

DataProcess

const { DataProcess } = require("@fstnetwork/fst-loc-tools-utils");
const { ExtractPotentialLabellingsFromDataProcess } = DataProcess;

ExtractPotentialLabellingsFromDataProcess(data_process_obj)

ExtractPotentialLabellingsFromDataProcess({
  data_process_name: "DataProcessAAA",
  data_input_body: {
    insurance_premium: "",
    sales_id: "",
    commission_rule_type: "",
    vehicle_category: "",
    campaign: "",
    group: "",
    brand_name: "",
    sales_channel: "",
    commission_group_name: "",
    geography_selection: "",
    coverages: "",
  },
  logics: [
    {
      logic_name: "logic_AAA",
      logic_body: {
        ok: 'async function ok(ctx) {\n  if (ctx.tmp === undefined) {\n    ctx.tmp = {};\n  }\n  if (ctx.tmp.cond_ok !== false) {\n    if (req.body["insurance_premium"] > 0) {\n      ctx.tmp.cond_ok = true;\n    } else {\n      ctx.tmp.cond_ok = false;\n    }\n  }\n  return await ctx;\n}\n\nok(ctx);\n',
        err: 'async function err(ctx) {\n  ctx.tmp.cond_ok = false;\n  put_event(\n    "ERR",\n    "",\n    "DataProcessAAA",\n    "logic_AAA"\n  );\n  return await ctx;\n}\n\nerr(ctx);\n',
      },
      activated: true,
      _id: "mMuaC0V4ADOBewAfoa13Iw3q6EUrViyY6EkrUG8x77L",
      _rev: "1-f024a5f2eb9272b919ac340d43d0b47b",
    },
    {
      logic_name: "logic_BBB",
      logic_body: {
        ok: 'async function ok(ctx) {\n  if (ctx.tmp === undefined) {\n    ctx.tmp = {};\n  }\n  if (ctx.tmp.cond_ok !== false) {\n    if (req.body["insurance_premium"] > 0) {\n      ctx.tmp.cond_ok = true;\n    } else {\n      ctx.tmp.cond_ok = false;\n    }\n  }\n  return await ctx;\n}\n\nok(ctx);\n',
        err: 'async function err(ctx) {\n  ctx.tmp.cond_ok = false;\n  put_event(\n    "ERR",\n    "",\n    "DataProcessAAA",\n    "logic_BBB"\n  );\n  return await ctx;\n}\n\nerr(ctx);\n',
      },
      activated: true,
      _id: "mMuaC0V4ADOBewAfoa13Iw3q6EUrViyY6EkrUG8x77L",
      _rev: "1-f024a5f2eb9272b919ac340d43d0b47b",
    },
  ],
});

// =>
[
  {
    logic_name: "logic_AAA",
    logic_body: {
      ok: 'async function ok(ctx) {\n  if (ctx.tmp === undefined) {\n    ctx.tmp = {};\n  }\n  if (ctx.tmp.cond_ok !== false) {\n    if (req.body["insurance_premium"] > 0) {\n      ctx.tmp.cond_ok = true;\n    } else {\n      ctx.tmp.cond_ok = false;\n    }\n  }\n  return await ctx;\n}\n\nok(ctx);\n',
      err: 'async function err(ctx) {\n  ctx.tmp.cond_ok = false;\n  put_event(\n    "ERR",\n    "",\n    "DataProcessAAA",\n    "logic_AAA"\n  );\n  return await ctx;\n}\n\nerr(ctx);\n',
    },
    activated: true,
    _id: "mMuaC0V4ADOBewAfoa13Iw3q6EUrViyY6EkrUG8x77L",
    _rev: "1-f024a5f2eb9272b919ac340d43d0b47b",
    potential_labellings: {
      ok: [],
      err: [
        {
          label_name: '"ERR"',
          event_meta: '""',
          event_source: '"DataProcessAAA"',
          event_target: '"logic_AAA"',
        },
      ],
    },
  },
  {
    logic_name: "logic_BBB",
    logic_body: {
      ok: 'async function ok(ctx) {\n  if (ctx.tmp === undefined) {\n    ctx.tmp = {};\n  }\n  if (ctx.tmp.cond_ok !== false) {\n    if (req.body["insurance_premium"] > 0) {\n      ctx.tmp.cond_ok = true;\n    } else {\n      ctx.tmp.cond_ok = false;\n    }\n  }\n  return await ctx;\n}\n\nok(ctx);\n',
      err: 'async function err(ctx) {\n  ctx.tmp.cond_ok = false;\n  put_event(\n    "ERR",\n    "",\n    "DataProcessAAA",\n    "logic_BBB"\n  );\n  return await ctx;\n}\n\nerr(ctx);\n',
    },
    activated: true,
    _id: "mMuaC0V4ADOBewAfoa13Iw3q6EUrViyY6EkrUG8x77L",
    _rev: "1-f024a5f2eb9272b919ac340d43d0b47b",
    potential_labellings: {
      ok: [],
      err: [
        {
          label_name: '"ERR"',
          event_meta: '""',
          event_source: '"DataProcessAAA"',
          event_target: '"logic_BBB"',
        },
      ],
    },
  },
];

Logic

const { Logic } = require("@fstnetwork/fst-loc-tools-utils");
const { ExtractPotentialLabellingsFromLogic } = Logic;

ExtractPotentialLabellingsFromLogic(logic)

ExtractPotentialLabellingsFromLogic({
  logic_name: "logic_AAA",
  logic_body: {
    ok: 'async function ok(ctx) {\n  if (ctx.tmp === undefined) {\n    ctx.tmp = {};\n  }\n  if (ctx.tmp.cond_ok !== false) {\n    if (req.body["insurance_premium"] > 0) {\n      ctx.tmp.cond_ok = true;\n    } else {\n      ctx.tmp.cond_ok = false;\n    }\n  }\n  return await ctx;\n}\n\nok(ctx);\n',
    err: 'async function err(ctx) {\n  ctx.tmp.cond_ok = false;\n  put_event(\n    "ERR",\n    "",\n    "DataProcessAAA",\n    "logic_AAA"\n  );\n  return await ctx;\n}\n\nerr(ctx);\n',
  },
  activated: true,
  _id: "mMuaC0V4ADOBewAfoa13Iw3q6EUrViyY6EkrUG8x77L",
  _rev: "1-f024a5f2eb9272b919ac340d43d0b47b",
});

// =>
{
  "logic_name": "logic_AAA",
  "logic_body": {
    "ok": "async function ok(ctx) {\n  if (ctx.tmp === undefined) {\n    ctx.tmp = {};\n  }\n  if (ctx.tmp.cond_ok !== false) {\n    if (req.body[\"insurance_premium\"] > 0) {\n      ctx.tmp.cond_ok = true;\n    } else {\n      ctx.tmp.cond_ok = false;\n    }\n  }\n  return await ctx;\n}\n\nok(ctx);\n",
    "err": "async function err(ctx) {\n  ctx.tmp.cond_ok = false;\n  put_event(\n    \"ERR\",\n    \"\",\n    \"DataProcessAAA\",\n    \"logic_AAA\"\n  );\n  return await ctx;\n}\n\nerr(ctx);\n"
  },
  "activated": true,
  "_id": "mMuaC0V4ADOBewAfoa13Iw3q6EUrViyY6EkrUG8x77L",
  "_rev": "1-f024a5f2eb9272b919ac340d43d0b47b",
  "potential_labellings": {
    "ok": [],
    "err": [
      {
        "label_name": "\"ERR\"",
        "event_meta": "\"\"",
        "event_source": "\"DataProcessAAA\"",
        "event_target": "\"logic_AAA\""
      }
    ]
  }
}

Readme

Keywords

none

Package Sidebar

Install

npm i @fstnetwork/fst-loc-tools-utils

Weekly Downloads

1

Version

0.2.0

License

MIT

Unpacked Size

13.5 kB

Total Files

8

Last publish

Collaborators

  • leochou.fst
  • david.lee.fst
  • renhao.xiao