Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MACF-7: Add generic action so that custom flows can be seen and edited #142

Open
wants to merge 22 commits into
base: master
Choose a base branch
from

Commits on Oct 14, 2020

  1. MACF-32: Add a generic action so that custom flows can be seen and ed…

    …ited by user (#137)
    
    * MACF-7: Initial commit to have a generic action that custom flow can be seen and edited
    
    * Display json_editor action for unsupported callflows actions
    
    * User regex to remove everything inside branckets when setting the module name
    pcandia committed Oct 14, 2020
    Configuration menu
    Copy the full SHA
    30394e4 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2020

  1. MACF-33: Replace input field with select from a list of callflow modu…

    …les that are unsupported in the UI (#139)
    pcandia committed Oct 19, 2020
    Configuration menu
    Copy the full SHA
    7f890bf View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2020

  1. Configuration menu
    Copy the full SHA
    f4ae0ce View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2021

  1. Configuration menu
    Copy the full SHA
    4bb0d18 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2021

  1. Configuration menu
    Copy the full SHA
    3c8ed90 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2022

  1. fixing missing refs:

    -adding validateSubSchema property to to check if schemas has ref on the specified path,
    if so return a list of refs otherwise return false
    -adding getSubSchema property to return a promise that resolves after all the refs have been
    fetched and return an object with the {shcema_key: schema} structure
    -making success function async on  miscSetSchema in order to wait for the sub schemas while they are
    being fetched if the validateSubSchema function returned an array of ref values otherwise assign
    an empty object to the Refs var that is passed as the second jsoneditor.setSchema parameter
    Ramos95 committed Jan 7, 2022
    Configuration menu
    Copy the full SHA
    3b7cb37 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2022

  1. Revert "fixing missing refs:"

    This reverts commit 3b7cb37.
    
    Revert the spacing issues
    Ramos95 committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    2aa0415 View commit details
    Browse the repository at this point in the history
  2. refactor code:

        -fixing spacing issues
        -using monster.series on miscGetSubSchema function
        to fetch all schema references and set them to the json editor
        -passing data schema and jsoneditor tom miscGetSubSchema function
        to set them on the monster.series callback when after all subschemas
        had been fetched
        -if schema has references call miscGetSubSchema otherwise set the
        schema direclty to jsoneditor
    Ramos95 committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    b12eed9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e88e32c View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2022

  1. Configuration menu
    Copy the full SHA
    41f91ae View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2022

  1. fixing eslint spacing errors

    Ramos95 committed Mar 16, 2022
    Configuration menu
    Copy the full SHA
    411b364 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2022

  1. Fix linter

    pcandia committed Mar 23, 2022
    Configuration menu
    Copy the full SHA
    bc5d704 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2022

  1. fixing naming typos

    Ramos95 committed Apr 29, 2022
    Configuration menu
    Copy the full SHA
    085748e View commit details
    Browse the repository at this point in the history
  2. refator code: implementing review changes

    -bug found: JSON editor does not reopen after saving JSON with subschemas
    -cause:sub  schemas are not saved on local sotorages as the main schema
    -solution: save the sub schemas on local sotorage so they can be avaliable
    when JSON editor is opened again
    Ramos95 committed Apr 29, 2022
    Configuration menu
    Copy the full SHA
    9d2997a View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2022

  1. Configuration menu
    Copy the full SHA
    02b109c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fa6943c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b13542c View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2022

  1. Configuration menu
    Copy the full SHA
    bbb9af9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    70e074e View commit details
    Browse the repository at this point in the history
  3. simplifying schema storage:

    -removing callflowsSubSchemaList from appFlags
    -removing jsonEditorSaveSchemaLocally function
    -now saving schema and subschemas on callflowsListSchema as one object
    Ramos95 committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    f54cec9 View commit details
    Browse the repository at this point in the history
  4. removing console.log lines

    Ramos95 committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    3b97d35 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2022

  1. refactoring code: storing fetched schemas on cache

    -using callflowsListSchema as store for all fetched schemas
    -validate if schema is aready store to set it with its subschemas
    -validate if schema's sub schemas are already store and only fetch the ones
    that are still not stored on the chache
    Ramos95 committed Oct 13, 2022
    Configuration menu
    Copy the full SHA
    d125a08 View commit details
    Browse the repository at this point in the history