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-team-members-frontend

v3.1.4

Published

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

Downloads

7,191

Readme

neeto-team-members-nano

The neeto-team-members-nano facilitates the administration of team members within neeto applications. The nano exports the @bigbinary/neeto-team-members-frontend NPM package and neeto-team-members-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 seed the roles and permissions for the organization. It also provides concerns to handle common logic related to User model.

Installation

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

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

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

     mount NeetoTeamMembersEngine::Engine => "/neeto_team_members_engine"
  4. Run the command to bring in all migrations required from the engine to the host application:

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

    bundle exec rails db:migrate
  6. Now, run the generator which will copy the required files.

    bundle exec rails g neeto_team_members_engine:install

    This command will try to inject the engine's route as well as create a config/permissions.yml file to add the permissions required.

Usage

You can learn more about the setup and usage here:

  1. Permissions
  2. Roles
  3. Concerns
  4. Member Limit

Frontend package

The package exports the four components: Roles, TeamMembers, Permissions, and ManageRole.

Installation

Install the latest NeetoTeamMembersNano package using the below command:

yarn add @bigbinary/neeto-team-members-frontend

Instructions for development

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

Components

Roles

Roles page

This component manages team roles. It includes functionalities such as adding roles and allowing updates to roles with associated permissions.

Props
  • config: Configuration object that includes mandatory specifications for header breadcrumbs and role permissions. It also allows optional configurations for help articles and permission hierarchy.
Configuration

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

Usage
import React from "react";

import { Roles } from "@bigbinary/neeto-team-members-frontend";
import { BrowserRouter, Redirect, Route, Switch } from "react-router-dom";
import { ToastContainer } from "react-toastify";

import SideBar from "./components/Common/SideBar";

const App = () => (
  <BrowserRouter>
    <div className="flex">
      <SideBar />
      <Switch>
        <Route exact path="/roles">
          <Roles config={ROLES_CONFIG} />
        </Route>
      </Switch>
    </div>
    <ToastContainer />
  </BrowserRouter>
);

export default App;
TeamMembers

Team members page

The component offers functionalities for adding, updating and viewing team members and their roles in a tabular format. Additionally, it provides filtering options based on email, name, and role.

Props
  • config: Configuration object that allows customization of role management, member operation permissions, UI elements like buttons and headers, callback functions, table structure, dropdown actions, and various display aspects.
Configuration

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

Usage
import React from "react";

import { TeamMembers } from "@bigbinary/neeto-team-members-frontend";
import { BrowserRouter, Redirect, Route, Switch } from "react-router-dom";
import { ToastContainer } from "react-toastify";

import SideBar from "./components/Common/SideBar";

const App = () => (
  <BrowserRouter>
    <div className="flex">
      <SideBar />
      <Switch>
        <Route exact path="/members">
          <TeamMembers config={MEMBERS_CONFIG} />
        </Route>
      </Switch>
    </div>
    <ToastContainer />
  </BrowserRouter>
);

export default App;
Permissions

Permissions component

The component handles the rendering and management of permissions for team members. It organizes permissions into categories, provides checkboxes for selection, and supports hierarchical structures with parent-child relationships.

Props
  • permissions: An array of permissions.
  • isDisabled: A boolean indicating whether the component is disabled. By default, it is false.
  • permissionRelationConfig: Configuration for managing parent-child relationships and unchecking permissions on select.
Configuration

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

Usage
import React from "react";

import { Permissions } from "@bigbinary/neeto-team-members-frontend";
import { BrowserRouter, Redirect, Route, Switch } from "react-router-dom";
import { ToastContainer } from "react-toastify";

import SideBar from "./components/Common/SideBar";

const App = () => (
  <BrowserRouter>
    <div className="flex">
      <SideBar />
      <Switch>
        <Route exact path="/permissions">
          <Permissions
            permissionRelationConfig={PERMISSION_RELATION_CONFIG}
            permissions={PERMISSIONS}
          />
        </Route>
      </Switch>
    </div>
    <ToastContainer />
  </BrowserRouter>
);

export default App;
ManageMembers

Manage members pane component

The component is a form-based interface for adding or editing team members.

Props
  • config: Configuration object with various options for customizing the behavior of the component.
  • onComplete: Callback function to be executed when the component is closed or the form is submitted.
  • roles: An array of roles available for team members.
  • selectedMember: The team member object being edited, if applicable.
  • componentConfig: Configuration specific to the component, including the type of pane, initial focus reference, etc.
Configuration

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

Usage
import React from "react";

import { ManageMembers } from "@bigbinary/neeto-team-members-frontend";
import { BrowserRouter, Redirect, Route, Switch } from "react-router-dom";
import { ToastContainer } from "react-toastify";

import SideBar from "./components/Common/SideBar";

const App = () => (
  <BrowserRouter>
    <div className="flex">
      <SideBar />
      <Switch>
        <Route exact path="/permissions">
          <ManageMembers
            componentConfig={COMPONENT_CONFIG}
            config={CONFIG}
            onComplete={() => void}
          />
        </Route>
      </Switch>
    </div>
    <ToastContainer />
  </BrowserRouter>
);

export default App;
Profile

The Profile component encapsulates the user profile functionality, integrating a Pane component for displaying profile details and a usePaneState hook to efficiently manage the state associated with the Pane.

  1. Profile.Pane: The component is a pane-based interface for viewing and editing the user's profile details.

    Profile pane component

  2. Profile.usePaneState: A hook to manage the state of the profile pane.

    Usage
    import { Profile } from "@bigbinary/neeto-team-members-frontend";
    
    const [isOpen, setIsOpen] = Profile.usePaneState();
    
    return (
      <>
        <button onClick={() => setIsOpen(true)}> Open profile pane</button>
        <button onClick={() => setIsOpen(prevIsOpen => !prevIsOpen)}>
          Toggle Profile pane
        </button>
      </>
    );

Instructions for Publishing

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

Integrations

| Projects | TeamMembers | Roles | Permissions | |----------------| :----------------: | :----------------: | :----------------: | | neetoAuth | :white_check_mark: | :white_check_mark: | - | | neetoCal | :white_check_mark: | :white_check_mark: | - | | neetoChangelog | :white_check_mark: | :white_check_mark: | - | | neetoChat | :white_check_mark: | :white_check_mark: | - | | neetoChatify | :white_check_mark: | :white_check_mark: | - | | neetoCI | :white_check_mark: | :white_check_mark: | - | | neetoCourse | :white_check_mark: | :white_check_mark: | - | | neetoCRM | :white_check_mark: | :white_check_mark: | - | | neetoDeploy | :white_check_mark: | :white_check_mark: | :white_check_mark: | | neetoDesk | :white_check_mark: | :white_check_mark: | - | | neetoForm | :white_check_mark: | :white_check_mark: | - | | neetoGit | :white_check_mark: | :white_check_mark: | - | | neetoInvisible | :white_check_mark: | :white_check_mark: | - | | neetoInvoice | :white_check_mark: | :white_check_mark: | - | | neetoKB | :white_check_mark: | :white_check_mark: | - | | neetoMonitor | :white_check_mark: | :white_check_mark: | - | | neetoPlanner | :white_check_mark: | :white_check_mark: | - | | neetoQuiz | :white_check_mark: | :white_check_mark: | - | | neetoRecord | :white_check_mark: | :white_check_mark: | - | | neetoReplay | :white_check_mark: | :white_check_mark: | - | | neetoRunner | :white_check_mark: | :white_check_mark: | - | | neetoSign | :white_check_mark: | :white_check_mark: | - | | neetoSite | :white_check_mark: | :white_check_mark: | - | | neetoTestify | :white_check_mark: | :white_check_mark: | - | | neetoTower | :white_check_mark: | :white_check_mark: | - | | neetoTrail | :white_check_mark: | :white_check_mark: | - | | neetoWheel | :white_check_mark: | :white_check_mark: | - | | neetoWireframe | :white_check_mark: | :white_check_mark: | - |