1.6.14 • Published 12 days ago

@bigbinary/neeto-tags-frontend v1.6.14

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
12 days ago

neeto-tags-nano

The neeto-tags-nano manages tags across neeto applications. The nano exports the @bigbinary/neeto-tags-frontend NPM package and neeto-tags-engine Rails engine for development.

Contents

  1. Development with Host Application
  2. Instructions for Publishing

Development with Host Application

Engine

The engine is used to manage tags for any entity across neeto products.

Installation

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

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

    bundle install
  3. Add this line to your application's config/routes.rb file:
    mount NeetoTagsEngine::Engine => "/neeto_tags_engine"
  4. Run the following command to copy the migrations from the engine to the host application:
    bundle exec rails neeto_tags_engine:install:migrations
  5. Add the migrations to the database:
    bundle exec rails db:migrate

Usage

You can learn more about the setup and usage here: 1. Models 2. Controllers

Frontend package

The package exports two components: NeetoTags and Tags.

The package also exports one hook: refetchTags.

Installation

  1. neeto-tags-nano has a few peer dependencies that are required for the proper functioning of the package. Install all the peer dependencies using the below command:

    yarn add @bigbinary/neeto-commons-frontend@2.0.35 @bigbinary/neeto-icons@1.9.10 @bigbinary/neetoui@4.3.3 @honeybadger-io/js@5.1.1 @honeybadger-io/react@5.1.2 axios@1.3.3 classnames@2.3.2 formik@2.2.9 js-logger@1.6.1 ramda@0.28.0 react-helmet@6.1.0 react-query@3.39.3 react-router-dom@5.3.4 react-toastify@8.2.0 yup@1.0.0
  2. Now install the latest neeto-tags-nano package using the below command:

    yarn add @bigbinary/neeto-tags-frontend

Instructions for development

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

Components

NeetoTags (source code)

This component provides a dashboard to manage tags for an application.

Props
  • config: Configuration object that includes specifications for tags, display menu, and breadcrumbs.
Configuration

Refer to the NeetoTags section for detailed information on the available configurations for the NeetoTags component.

Usage
import React from "react";

import { NeetoTags } from "@bigbinary/neeto-tags-frontend";

const App = () => {
  return <NeetoTags config={config} />;
};
export default App;

Tags (source code)

This component provides functionality to assign tags to an entity.

Configuration

Refer to the Tags section for detailed information on the available configurations for the Tags component.

Usage
import React from "react";

import { TagsComponent } from "@bigbinary/neeto-tags-frontend";

const App = ({
  allTags,
  buttonProps,
  selectProps,
  selectedTags,
  handleTagCreate,
  handleTagRemove,
  handleTagSelect,
}) => {
  return (
    <TagsComponent
      allTags={allTags}
      buttonProps={buttonProps}
      selectProps={selectProps}
      selectedTags={selectedTags}
      onTagCreate={handleTagCreate}
      onTagDelete={handleTagRemove}
      onTagSelect={handleTagSelect}
    />
  );
};

export default App;

Hooks

refetchTags (source code)

This function refetches the tags list.

Usage

Below is an example usage of the refetchTags hook:

const useBulkUpdateTickets = () =>
  useMutationWithInvalidation(
    ({ payload }) => ticketsApi.bulkUpdateTickets(payload),
    {
      keysToInvalidate: [
        [QUERY_KEYS.TICKETS_LIST],
        [QUERY_KEYS.TICKETS_DEFAULT_VIEWS],
        [QUERY_KEYS.TEAMS],
        ...REPORT_DATA_KEYS_TO_INVALIDATE,
      ],
      onSuccess: () => {
        refetchTags();
      },
    }
  );

Used by neetoDesk

Instructions for Publishing

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

1.6.14

12 days ago

1.6.13

1 month ago

1.6.12

2 months ago

1.6.11

2 months ago

1.6.9

2 months ago

1.6.8

2 months ago

1.6.10

2 months ago

1.6.7

2 months ago

1.6.6

2 months ago

1.6.5

2 months ago

1.6.4

3 months ago

1.6.3

3 months ago

1.6.2

4 months ago

1.6.1

4 months ago

1.6.0

4 months ago

1.5.19

4 months ago

1.5.18

4 months ago

1.5.17

5 months ago

1.5.12

6 months ago

1.5.11

6 months ago

1.5.14

6 months ago

1.5.13

6 months ago

1.5.16

5 months ago

1.5.15

5 months ago

1.2.0

8 months ago

1.4.0

7 months ago

1.5.9

6 months ago

1.5.8

6 months ago

1.5.7

6 months ago

1.5.6

6 months ago

1.5.5

6 months ago

1.1.9

10 months ago

1.5.4

6 months ago

1.1.8

10 months ago

1.5.3

6 months ago

1.5.2

6 months ago

1.5.1

6 months ago

1.5.0

7 months ago

1.3.1

7 months ago

1.3.0

7 months ago

1.5.10

6 months ago

1.1.12

8 months ago

1.1.11

8 months ago

1.1.10

9 months ago

1.1.7

11 months ago

1.1.6

11 months ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.1.2

1 year ago

1.0.10

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

0.0.45

1 year ago

0.0.46

1 year ago

0.0.47

1 year ago

0.0.51

1 year ago

0.0.52

1 year ago

0.0.53

1 year ago

0.0.50

1 year ago

0.0.48

1 year ago

0.0.49

1 year ago

0.0.40

1 year ago

0.0.41

1 year ago

0.0.42

1 year ago

0.0.43

1 year ago

0.0.44

1 year ago

0.0.37

2 years ago

0.0.38

1 year ago

0.0.39

1 year ago

0.0.32

2 years ago

0.0.33

2 years ago

0.0.34

2 years ago

0.0.35

2 years ago

0.0.36

2 years ago

0.0.30

2 years ago

0.0.31

2 years ago

0.0.29

2 years ago

0.0.24

2 years ago

0.0.25

2 years ago

0.0.26

2 years ago

0.0.27

2 years ago

0.0.28

2 years ago

0.0.23

2 years ago

0.0.22

2 years ago

0.0.21

2 years ago

0.0.20

2 years ago

0.0.19

2 years ago

0.0.18

2 years ago

0.0.17

2 years ago

0.0.16

2 years ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago