Socket
Socket
Sign inDemoInstall

sails-hook-adminjs-panel

Package Overview
Dependencies
458
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sails-hook-adminjs-panel

SailsJS hook to use magic of AdminJS seamlessly


Version published
Weekly downloads
2
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Sails Hook For Auto Generated Admin Panel (Using AdminJS)

Sails Hook for auto generated admin panel for sails v.1.0.0+. Sails JS is so powerfull but managing models and creating pages for basic crud operations sometimes can be an issue. That's why this hook is created. It creates admin panel for all models with crud operations and also supports filters and batch operations.

Installation

npm install --save sails-hook-adminjs-panel

Screenshots

AdminJS Panel Models

AdminJS Panel Filters

Dependencies

  • Sails >0.12 or >1.0

  • Waterline ORM (Default for Sails)

No specific dependency is required, just install the hook & it should work seamlessly with waterline orm. If you have other orm tool configured, you should also configure models to use related adapter. Please check AdminJS for further information.

Config Options and their description

When you install this hook in your sails project, it first detects if configuration file is present in your sails config directory or not, if not, then it will create config file with default options, which can be edited later. Options are:

  • rootPath :

    This is the route where your adminpanel will be loaded. You can configure this parameter according to your requests. By default localhost:1337/adminPanel will be used.

    rootPath: '/adminPanel',
    
  • auth :

    auth hook function will be processed for each admin panel route, you can configure any authentication behaviour in this function.

    auth: (req, res, next) => {
      return next();
    },
    
  • parseResources :

    parseResources function will be processed each time you lift the app. You can modify resources and add any localization, navigation grouping and much more customization. Admin JS Resource Options

    parseResources: (resources) => {
      resources.map((item) => {
        switch (item.resource.identity) {
          case 'user':
            item.options.navigation = navigationUserGroup;
          default: break;
        }
      });
      return resources;
    },
    
  • adminJSOptions :

    You can place any additional Admin JS Options like resource customization, branding options or localization parameters here. For further details please check . Admin JS Options

    adminJSOptions: {
      locale: locale,
      branding: {
        companyName: 'AdminJS-Panel',
        softwareBrothers: true,
        logo: '/images/logo.png',
      },
    },
    

Support for "isDeleted" field in Models

This hook is designed to support isDeleted field in models. You can append below lines to the sails.config.models file to implement isDeleted field for all your sails models. You can also implement isDeleted to some specific models, in this case the models having isDeleted field will be updated on delete.

module.exports.models = {
    ...
    attributes: {
        ...
        `isDeleted: { type: 'boolean', defaultsTo: false },`
    },
}

License

MIT

Keywords

FAQs

Last updated on 15 Nov 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc