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

@bigbinary/neeto-rules-frontend

v2.5.4

Published

A repo acts as the source of truth for the new nano's structure, configs, data etc.

Downloads

2,742

Readme

neeto-rules-nano

The neeto-rules-nano facilitates the management of automation rules within neeto applications. The nano exports @bigbinary/neeto-rules-frontend NPM package and neeto-rules-engine Rails engine.

Contents

  1. Development with Host Application
  2. Instructions for Publishing

Development with Host Application

Engine

The Engine is used to manage automation rules feature within neeto applications.

Installation

  1. Add this line to your application's Gemfile:

    source "NEETO_GEM_SERVER_URL" do
    # ..existing gems
    
      gem "neeto-rules-engine"
    end
  2. And then execute:

    bundle install
  3. Add this line to your application's config/routes.rb file:

    mount NeetoRulesEngine::Engine => "/neeto_rules"
  4. Run the following command to copy the migrations from the engine to the host application:

    bundle exec rails neeto_rules_engine:install:migrations
  5. Add the migrations to the database:

    bundle exec rails db:migrate

Frontend package

Installation

Install the latest neetoRules nano package using the below command:

yarn add @bigbinary/neeto-rules-frontend

Instructions for development

Check the Frontend package development guide for step-by-step instructions to develop the frontend package.

Components

1. NeetoRules

The NeetoRules component is used to add the dashboard for automation rules.

rules-dashboard

Props

  1. breadcrumbs: Breadcrumbs for the header of the dashboard.

    1. text: Text for breadcrumb item
    2. link: Link to breadcrumb item
  2. allowReordering: To specify if the user can reorder the automation rules. (Boolean).

  3. helpPopoverProps: To add help popover for the component. Refer HelpPopover component doc. NOTE: href from helpLinkProps will be used for displaying the link when showing NoData component.

  4. rulesTableProps: Props for the table in the dashboard:

    1. additionalColumns: To add additional columns to the table. Refer Table component doc.
    const additionalColumns = [
      {
        title: "Operated on",
        dataIndex: "recentlyModifiedTickets",
        width: 160,
        description:
          "Number of tickets the rule has acted upon in the last 7 days",
        render: recentlyModifiedTickets => (
          <div className="text-center">{recentlyModifiedTickets}</div>
        ),
      },
    ];
    1. moreDropdownItems: Array of dropdown items to be added to the MoreDropdown component in the table. Refer MoreDropdown in table doc.
    const moreDropdownItems = [
      {
        key: "view-matching-tickets",
        label: "View matching rules",
        // onClick callback receives the selected rule
        onClick: rule => {
          setSelectedRule(rule);
          setShowMatchingTickets(true);
        },
      },
    ];
    1. onPreview: The callback function to call when the preview is clicked.
    const onPreview = id => {
      setRuleId(id);
    };
  5. automationRulesPath: The path for automation rules dashboard.

    Following additional routes are considered by the component:

    | Routes | Description | | ---------------------------- | ---------------------------------------- | | {automationRulesPath}/edit | Route to the rule edit form component. | | {automationRulesPath}/new | Route to the rule create form component. |

  6. automationRulesEndpoint: The endpoint for automation rules.

    Following endpoints will be used by the component:

    | Endpoint | Action | Description | | ------------------------------------------- | --------- | ---------------------------------------------------------------------------------- | | GET {automationRulesEndpoint} | index | To fetch the list of automation rules.(Same will be used for pagination/filtering) | | POST {automationRulesEndpoint}/{id}/clone | clone | To create the clone of the automation rule. | | PATCH {automationRulesEndpoint}/{id} | update | To update the status of the automation rule. | | DELETE {automationRulesEndpoint}/{id} | destroy | To delete the automation rule. | | PATCH {automationRulesEndpoint}/reorder | reorder | To reorder the automation rules. |

  7. updateRule: Object that define methods for update rule operation.

    • onSuccess: Object for handling update rule success callback.
      • callback: Function to be called on success. (Optional)
  8. deleteRule: Object that define methods for delete rule operation.

    • onSuccess: Object for handling delete rule success callback.
      • callback: Function to be called on success. (Optional)
  9. cloneRule: Object that define methods for clone rule operation.

    • allowed: To specify if the clone rule should be allowed, default true. (Boolean)
    • onSuccess: Object for handling clone rule success callback.
      • callback: Function to be called on success. (Optional)
  10. reoderRules: Function to be called on reorder success.

    • onSuccess: Object for handling reorder rule success callback.
      • callback: Function to be called on success. (Optional)
  11. headerProps: Props for the header component. Refer Header component doc.

2. NeetoRulesForm

The NeetoRulesForm component is used to create and edit automation rules.

NeetoRulesForm accepts the following field types which is specified in the initialProps (reference):

  1. text
  2. long-text
  3. dropdown
  4. multi-select
  5. radio
  6. events
  7. condition
  8. actions

Note: The NeetoRulesForm component includes three fields by default with the following names: name(required), description and status.

Props

  • data: The initial props for the form.
  • children: The form fields.
  • className: To provide external classes to form.
  • handleSubmit: The function to handle the form submission.
  • handleClose: The function to handle the form close.
  • showStatusSwitch: To specify whether the status switch should be shown or not. It is true by default.

Usage

import { NeetoRulesForm } from "@bigbinary/neeto-rules-frontend";

const {
  InputField,
  TextareaField,
  SelectField,
  Events,
  Card,
  Conditions,
  Actions,
} = NeetoRulesForm;

<NeetoRulesForm data={initialProps}>
  {({ formattedValues, values, ...formikBag }) => (
    <>
      <InputField name="name" data={initialProps} />
      <TextareaField name="description" data={initialProps} />
      <SelectField name="projectId" data={initialProps} />
      <Events name="events" data={initialProps} performerName="performer" />
      <Card title="Conditions">
        <Conditions name="conditions" data={initialProps} />
      </Card>
      <Actions name="actions" data={initialProps} />
    </>
  )}
</NeetoRulesForm>;

References

  1. neeto-cal-web
  2. neeto-desk-web
  3. neeto-planner-web

3. Field components for NeetoRulesForm

NeetoRulesForm provides field components to create the automation rules form.

References

  1. neeto-cal-web
  2. neeto-desk-web
  3. neeto-planner-web

3.1 InputField

import { NeetoRulesForm } from "@bigbinary/neeto-rules-frontend";

const { InputField } = NeetoRulesForm;

const initialProps = {
  ...otherProps,
  firstName: {
    label: "First Name",
    type: "text",
    value: "", // Default value.
    componentProps: {
      placeholder: "Enter name",
    },
  },
};

<InputField name="firstName" data={initialProps} />;

props

  1. name: Name of the field. The name should be same as that in the initialProps.
  2. data: The same initialProps that is passed to data prop in NeetoRulesForm.
  3. label: Label for the field.

3.2 TextareaField

import { NeetoRulesForm } from "@bigbinary/neeto-rules-frontend";

const { TextareaField } = NeetoRulesForm;

const initialProps = {
  ...otherProps,
  description: {
    label: "Description",
    type: "long-text",
    value: "", // Default value.
  },
};

<TextareaField name="description" data={initialProps} />;

props

  1. name: Name of the field. The name should be same as that in the initialProps.
  2. data: The same initialProps that is passed as data prop in NeetoRulesForm.
  3. label: Label for the field.

3.3 SelectField

import { NeetoRulesForm } from "@bigbinary/neeto-rules-frontend";

const { SelectField } = NeetoRulesForm;

const initialProps = {
  ...otherProps,
  user: {
    label: "Project",
    type: "dropdown",
    options: [{ label: "Oliver", value: "oliver" }],
    value: "oliver", // Default selected option will be Oliver
  },
};

<SelectField name="user" data={initialProps} />;

props

  1. name: Name of the field. The name should be same as that in the initialProps.
  2. data: The same initialProps that is passed to data prop in NeetoRulesForm.
  3. label: Label for the field.
  4. options: Options for the dropdown. The options should be an array of objects with label and value keys. [{label, value}].
  5. onChange: Callback function that is called when the value of the dropdown changes. (value, setValue) => void setValue is to set the new value.

3.4 MultiSelectField

import { NeetoRulesForm } from "@bigbinary/neeto-rules-frontend";

const { MultiSelectField } = NeetoRulesForm;

const initialProps = {
  ...otherProps,
  users: {
    label: "Projects",
    type: "multi-select",
    options: [
      { label: "Oliver", value: "oliver" },
      { label: "John", value: "john" },
    ],
    value: ["oliver"], // Default selected option will be Oliver
  },
};

<MultiSelectField name="users" data={initialProps} />;

props

  1. name: Name of the field. The name should be same as that in the initialProps.
  2. data: The same initialProps that is passed to data prop in NeetoRulesForm.
  3. label: Label for the field.
  4. options: Options for the dropdown. The options should be an array of objects with label and value keys. [{label, value}].
  5. onChange: Callback function that is called when the value of the dropdown changes. (value, setValue) => void setValue is to set the new value.

3.5 RadioField

import { NeetoRulesForm } from "@bigbinary/neeto-rules-frontend";

const { RadioField } = NeetoRulesForm;

const initialProps = {
  ...otherProps,
  performer: {
    label: "Performer",
    type: "radio",
    value: "any", // Default selected value will be "any"
    options: [
      { label: "Admin", value: "admin" },
      { label: "Any", value: "any" },
    ],
  },
};

<RadioField name="performer" data={initialProps} />;

props

  1. name: Name of the field. The name should be same as that in the initialProps.
  2. data: The same initialProps that is passed to data prop in NeetoRulesForm.
  3. label: Label for the field.
  4. options: Options for the radio buttons. The options should be an array of objects with label and value keys. [{label, value}].

3.6 EventConditions

event-conditions

import { NeetoRulesForm } from "@bigbinary/neeto-rules-frontend";

const { EventConditions } = NeetoRulesForm;

const EVENT_OPTIONS = [
  { label: "Ticket is created", value: "created" },
  { label: "Ticket is updated", value: "updated" },
  ...otherOptions,
];

const PERFORMER_OPTIONS = [
  { label: "Any", value: "any" },
  { label: "Member", value: "agent" },
  ...otherOptions,
];

const CONDITION_OPTIONS = [
  {
    value: "status",
    label: "Status",
    type: "multi-select",
    allowMatching: ["any_of", "none_of"],
    dropdownOptions: [
      { label: "Open", value: "open" },
      { label: "Closed", value: "closed" },
      { label: "On hold", value: "on_hold" },
    ],
  },
  {
    value: "name",
    label: "Name",
    allowMatching: ["is", "is_not"],
    type: "text",
  },
  ...otherOptions,
];

const DEFAULT_CONDITION_VALUE = [
  {
    id: "1",
    field: "status",
    verb: "any_of",
    metadata: { values: ["open", "closed"] },
    joinType: "and_operator",
  },
  {
    id: "2",
    field: "name",
    verb: "is",
    metadata: { value: "Test" },
    joinType: "and_operator",
  },
  ...otherConditionValues,
];

const initialProps = {
  ...otherProps,
  events: {
    label: "Events",
    type: "events",
    value: [{ name: EVENT_OPTIONS[0].value }],
    eventOptions: EVENT_OPTIONS,
    defaultData: { name: "time_based", performer: "system" },
  },
  performer: {
    label: "Performer",
    type: "dropdown",
    value: "any",
    options: PERFORMER_OPTIONS,
  },
  conditions: {
    label: "Conditions",
    type: "condition",
    conditionOptions: CONDITION_OPTIONS,
    value: DEFAULT_CONDITION_VALUE,
  },
  execution_delay: {
    value: { value: 2, unit: "minutes" },
    defaultValue: { value: 2, unit: "minutes" },
    type: "execution-delay",
};

<EventConditions
  name="events"
  data={initialProps}
  performerName="performer"
  conditionsName="conditions"
/>;

props

  1. name: Name of the field. The name should be same as that in the initialProps.
  2. data: The same initialProps that is passed to data prop in NeetoRulesForm.
  3. label: Label for the field.
  4. performerName: Name of the performer field. The performerName should be same as that in the initialProps.
  5. conditionsName: Name of the conditions field. The conditionsName should be same as that in the initialProps.
  6. onSelectEvent: (name, selectedOption) => void. This method will trigger when we select an event option. The name is to refer the event in the formik context.
  7. enableAddingDelay: Adds option to add execution delay. (Boolean). Ref: NeetoForm PR#11704

Refer to the EventCondition section for more information.

3.7 Conditions

import { NeetoRulesForm } from "@bigbinary/neeto-rules-frontend";

const { Card, Conditions } = NeetoRulesForm;

const initialProps = {
  ...otherProps,
  conditions: {
    label: "Conditions",
    type: "condition",
    conditionOptions: [
      {
        value: "status",
        label: "Status",
        type: "dropdown", // Types : text, number, email, decimal, url, dropdown, multi-select, multi-select-create, date.
        allowMatching: ["is", "is_not", "any_of", "none_of"],
        dropdownOptions: [
          { label: "Open", value: "open" },
          { label: "Closed", value: "closed" },
        ],
        additionalData: {
          any_of: "multi-select",
          none_of: "multi-select",
        },
      },
      {
        value: "name",
        label: "Name",
        type: "text",
        allowMatching: ["is", "is_not"],
      },
      {
        value: "tags",
        label: "Tags",
        type: "multi-select-create",
        allowMatching: ["contains_any_of", "contains_none_of"],
      },
    ],
    value: [
      {
        id: "1",
        field: "status",
        verb: "is",
        metadata: { value: "open" },
        joinType: "and_operator",
      },
      {
        id: "2",
        field: "name",
        verb: "is",
        metadata: { value: "Test" },
        joinType: "and_operator",
      },
      {
        id: "3",
        field: "tags",
        verb: "contains_any_of",
        metadata: { values: ["Test", "Open"] },
        joinType: "and_operator",
      },
    ],
  },
};

<Card title="Conditions">
  <Conditions name="conditions" data={initialProps} />
</Card>;

props

  1. name: Name of the field. The name should be same as that in the initialProps.
  2. data: The same initialProps that is passed to data prop in NeetoRulesForm.
  3. label: Label for the field.
  4. onSelectCondition: (name, selectedOption) => void. This method will trigger when we select a condition option. The name is to refer the condition in the formik context.
  5. selectedConditionOptions: (selectedCondition)=> [{label, value}]. To provide options for the selected condition if the type of selected condition is dropdown, multi-select, or multi-select-create.
  6. isCallback: To specify if there is a preview callback function for the conditions. (Boolean).
  7. previewCallback: (conditions) => void. This method will trigger when we click on the preview button. The conditions are the selected conditions in the formik context.

3.8 Actions

actions

import { NeetoRulesForm } from "@bigbinary/neeto-rules-frontend";

const { Actions } = NeetoRulesForm;

const initialProps = {
  ...otherProps,
  actions: {
    label: "Actions",
    type: "actions",
    actionOptions: [
      {
        value: "add_tags",
        label: "Add Tags",
        type: "multiSelect", // Types : emailToIds, emailTo, email, dropdown, list, multiSelect, note, date, text, textarea, decimal, number, regex, longText, sms, smsToNumbers, smsTo, sendToApi
        hideSeparator: true,
        placeholder: "Select tags",
        dropdownOptions: [
          { label: "Open", value: "open" },
          { label: "Close", value: "close" },
          { label: "Hold", value: "hold" },
        ],
      },
      {
        value: "email_to_agent",
        label: "Email To Agent",
        type: "emailTo",
        separator: ["with the name", "with the content"],
        hideSubject: true,
      },
      {
        value: "email_to",
        label: "Email To",
        type: "emailToIds",
        separator: "as",
        hideSubject: true, // Hide subject field if this prop is true
        maxLimit: 5, // Adds validation to limit up to specified number of email addresses
      },
      {
        value: "send_sms",
        label: "Send sms",
        type: "longText",
      },
    ],
    value: [
      {
        id: "1",
        name: "email_to", // Specify the value of the selected action.
        metadata: { emails: ["[email protected]"], subject: "test", body: "test" },
      },
      {
        id: "2",
        name: "add_tags",
        metadata: { values: ["close"] },
      },
    ],
  },
};

<Actions name="fieldName" data={initialProps} />;

props

  1. name: Name of the field. The name should be same as that in the initialProps.
  2. data: The same initialProps that is passed to data prop in NeetoRulesForm.
  3. label: Label for the field.
  4. onSelectAction: (name, selectedOption) => void. This method will trigger when we select an action option. The name is to refer the action in the formik context.
  5. selectedActionOptions: (selectedAction)=> [{label, value}]. To provide options for the selected action if the type of selected action is dropdown or multi-select.
  6. separator: Separator to be shown between action sub items. If there is only one sub item, provide a string value. If there are multiple sub items, provide an array of separators.

Refer to the Actions section for more information.

3.9 Custom action component

neetoRulesFrontend allows to pass custom action components from host application. Below is an example for customize task component which is being sent by neeto-crm in action options.

 {
    label: "Add task",
    value: "add_task",
    placeholder: "Task",
    component: TaskComponent,
    validation: TASK_VALIDATION,
  },

3.10 Custom message templates

neetoRulesFrontend allows to pass predefined email, SMS and API templates from host application. This enables to use templates created using neeto-message-templates-nano. Below is an example for custom message template which is being sent by neeto-form in action options.

{
  "label": "Email to responder",
  "value": "email_to_responder",
  "type": "emailTo",
  "templates": [
    {
      "id": "caca1cc9-f9db-480a-a64f-6ea0c72d4b05",
      "name": "Send emails to rejected candidates",
      "subject": "Application Status - Screening Round Unsuccessful",
      "body": "<p>Dear {{full-name}},</p><p>Thank you for your interest. Unfortunately, we regret to inform you that you did not pass the screener round.</p><p>Best regards, </p><p>Spinkart</p>"
    }
  ]
}

4. RulePreview

The RulePreview component is used to preview the automation rule.

rule-preview

Props

  1. ruleDetails: The rule details to be previewed.
  2. isLoading: To specify if the preview is loading. (Boolean).
  3. isOpen: To specify if the preview is open. (Boolean).
  4. onClose: The callback function to call when the preview is closed. () => void.

Constants

1. AUTOMATION_RULES_QUERY_KEY

The AUTOMATION_RULES_QUERY_KEY is the base query key which is being used as key for query fetching.

reference:

  1. neeto-desk-web

5. CannedResponsesPane

The CannedResponsesPane component is used to preview canned responses and apply them.

Props

  • actionNameOptions: An array of actions which any of the canned responses can do. Each object in the array can have label, value, type, placeholder, dropdownOptions, defaultData and variables. Out of these, dropdownOptions, defaultData and variables are optional.
  • areDropdownListsLoading: To specify if the dropdown lists are loading.
  • dropdownList: It is an object of values that are used in the dropdowns. It can have the keys tags, teams, members, fields, and status, with their values the respective array of items.
  • isCannedResponsePaneOpen: Boolean to specify if the canned response pane is open.
  • isLoadingPreview: Boolean to specify if the preview is loading.
  • macros: An array of possible macros/canned responses that the user can choose from.
  • onApply: Callback function to apply the canned response.
  • onCancel: Callback function to call when the canned response pane is closed.
  • previewCannedResponses: Method which will be used to make the API call to get the preview of the canned response.
  • previewParams: Object that contains the parameters for the preview API call.
  • variables: An array of variables that can be used in the canned response. This is an optional prop.

Usage

import { useState } from "react";

import { CannedResponsesPane } from "@bigbinary/neeto-rules-frontend";

import { usePreviewCannedResponses } from "./hooks";

const Component = ({ visitorId }) => {
  const [isCannedResponsePaneOpen, setIsCannedResponsePaneOpen] =
    useState(false);

  const { mutate: previewCannedResponses, isLoading } =
    usePreviewCannedResponses();

  const dropdownList = {
    status: [
      { label: "Open", value: "open" },
      { label: "Closed", value: "closed" },
    ],
    tags: [
      { label: "Tag 1", value: "tag1" },
      { label: "Tag 2", value: "tag2" },
    ],
    teams: [
      { label: "Team 1", value: "team1" },
      { label: "Team 2", value: "team2" },
    ],
  };

  const ACTION_NAME_OPTIONS = [
    {
      label: "Add reply",
      value: "add_reply",
      type: "note",
      placeholder: "Reply",
    },
    {
      label: "Assign member",
      value: "assign_agent",
      type: "dropdown",
      placeholder: "Select member",
      dropdownOptions: [],
      defaultData: { actionable_type: "User" },
    },
    {
      label: "Assign team",
      value: "assign_group",
      type: "dropdown",
      placeholder: "Select team",
      dropdownOptions: [],
      defaultData: { actionable_type: "NeetoTeamMembersEngine::Group" },
    },
  ];

  const handleApply = ({ cannedResponse, setCannedResponse, onSettled, updatedValues }) => {
    // logic to apply canned response
  };

  return (
    <CannedResponsesPane
      {...{
        dropdownList,
        isCannedResponsePaneOpen,
        isLoadingPreview,
        previewCannedResponses,
      }}
      actionNameOptions={ACTION_NAME_OPTIONS}
      macros={cannedResponses}
      previewParams={{ visitorId }}
      onApply={handleApply}
      onCancel={() => setIsCannedResponsePaneOpen(false)}
    />
  );
};

Instructions for Publishing

Consult the building and releasing packages guide for details on how to publish.