npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sirius-epics-react

v1.2.8

Published

[![Epics-React library CI](https://github.com/lnls-sirius/epics-react/actions/workflows/main.yml/badge.svg)](https://github.com/lnls-sirius/epics-react/actions/workflows/main.yml)

Downloads

190

Readme

Sirius Epics React

Epics-React library CI

This project contains some default components for interacting with the EPICS control system using React.

Installation

This library can be installed with npm (https://www.npmjs.com/package/sirius-epics-react):

  npm i sirius-epics-react

To be able to use it you have to import it in your code.

Example:

  import { SiriusLabel, SiriusInvisible } from "sirius-epics-react";

General PV properties

Props:

  • pv_name: A single pv (SiriusLed and SiriusLabel) or list of pv names (SiriusInvisible and SiriusChart) that will be monitored with the component.
  • egu (Optional): The engineering unit of the pv.
  • update_interval (Optional): The interval, in milliseconds, that the component will update its value.
  • threshold (Optional): Dictionary with keys and values that will be used as thesholds triggers.
      const threshold = {
        'alert': 0.1,
        'alarm': 0.14
      }
  • modifyValue (Optional): Function that will be called every time the component is updated and allow the value of the PV to be changed.
      T: any
    
      function handleMod<T>(value: T, pvname: string): T {
          return value+0.01
      }

Sirius Tooltip

The Sirius Tooltip is wrapped around the SiriusLabel and SiriusLed components so that when you click with the scroll button, the name of the PV being monitored in the component will appear.

Props:

  • text: Text to de displayed on the tooltip.
  • children: Component that will trigger the tooltip.

Example:

  <SiriusTooltip text="This will appear on the tooltip">
     children component
  </SiriusTooltip>

Sirius Led

The Sirius Led is a component in the format of a Led that can turn into different colors based on a threshold dictionary, always triggering the key corresponding to the last value exceeded.

Props:

  • shape: Set the shape of the Led. Values:

    • 'circle': Circle Led
    • 'square': Square Led
    • 'squ_circ': Square Led with round corners
  • disc_time (Optional): Set a maximum threshold time to indicate if a PV is frozen.

  • color (Optional): Customize the color for each threshold value.

    • The colors of each threshold can be determined by using the color parameter, for it to work the key of the color has to be the same as the key of the desired threshold it represents.

    • The nc (Not Connected) and normal thresholds colors have default values in case they are not specified.

      const threshold_colors = {
        'alert': '#f8ff1b',
        'alarm': '#ff1b1b'
      }

Example:

  <SiriusLed pv_name="A:RANDOM:PV" shape={'circle'} threshold={random_threshold}/>

Sirius Label

The Sirius Label is a component to display the value of a PV, be it a string or number.

Props:

  • precision (Optional): Precision shown in the PV value, if it is a number.

Example:

  <SiriusLabel pv_name={'A:RANDOM:PV'} precision={3} egu='m'/>

Sirius Invisible

The Sirius Invisible is an invisible component used for monitoring a list of PVs.

Example:

  <SiriusInvisible pv_name={["A:RANDOM:PV", "ANOTHER:RANDOM:PV"]} modifyValue={modifierFunction}/>

Sirius Chart

The Sirius Chart is by default a bar chart used for monitoring a list of PVs, the thresholds for the chart are displayed as lines and the bars change color if a threshold is exceeded.

Props:

  • label (Optional): List of labels for each of the pvs displayed. If no label is defined, the complete name of the PV will be used as the label.

  • color (Optional): Customize the color for each threshold value.

    • The colors of each threshold can be determined by using the color parameter, for it to work the key of the color has to be the same as the key of the desired threshold it represents.

    • The nc (Not Connected) and normal thresholds colors have default values in case they are not specified.

      const threshold_colors = {
        'alert': '#f8ff1b',
        'alarm': '#ff1b1b'
      }
  • color_label (Optional): List of colors in order to add colors to the X axis labels.

  • modifyOptions (Optional): Function that will be called on the chart creation and allow the complete customization of the chart options.

      T: any
      M: string | string[]
    
      handleOptions<T>(options: T, pv_name?: string[]): T {
      const scalesOpt: undefined|ScaleType = options.scales;
      options.plugins.title = {
        font: {
          size: 15
        }
      }
      return options;
    }

Example:

  <SiriusChart
    pv_name={['RANDOM:PV1', 'RANDOM:PV2', 'RANDOM:PV3']}
    label={['PV 1', 'PV 2', 'PV 3']}
    threshold={threshold}
    modifyValue={valueModifierHandler}/>