How to use the paraview-lite/src/stores/types.Actions.COLOR_FETCH_PRESET_NAMES function in paraview-lite

To help you get started, we’ve selected a few paraview-lite 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 Kitware / light-viz / src / stores / network.js View on Github external
.then((validClient) => {
          commit(Mutations.NETWORK_CLIENT_SET, validClient);
          dispatch(Actions.TIME_FETCH_ACTIVE_INDEX);
          dispatch(Actions.PROXY_PIPELINE_FETCH);
          dispatch(Actions.APP_ROUTE_RUN);
          dispatch(Actions.COLOR_FETCH_PRESET_NAMES, 500);
        })
        .catch((error) => {
github Kitware / light-viz / src / stores / color.js View on Github external
setTimeout(() => {
                dispatch(Actions.COLOR_FETCH_PRESET_NAMES, intervalTime);
              }, intervalTime);
            })