Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@flk/admin

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flk/admin

Admin Dashboard For Falak JS

  • 1.1.25
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-96.87%
Maintainers
1
Weekly downloads
 
Created
Source

Falak Admin Manager

A Comprehensive Administration Panel Creator/Helper

Installation

flk install @flk/admin

This Package is installed by default when creating new Falak project

Content

  • Admin Module Builder
  • Admin Table Manager
  • Admin Modal Form Manager
  • Admin Sidebar
  • Access Denied Page
  • Services

Admin Module Builder

Table Builder

Modal Builder

Admin Table Manager

Table Columns

Table Filtration

Table Pagination

Table Actions

Admin Modal Form

Admin Modal Sidebar

Access Denied Page

Services

By default, the admin package is shipped with a Bulk Service

which will allow you to retrieve multiple data in one request.

This should be handled in the your backend end point with /bulk request

Usage

Simply Inject the service in your component bulkService and make whatever requests you need.

Example:

class reportsPage {
    constructor(bulkService) {
        this.bulkService = bulkService;
    }

    async init() {
        let {users, posts, categories} = await this.bulkService.list({
            users: true,
            posts: true,
            categories: true,
        });
    }
}

Of course the output of the request let {users, posts, categories} is the taken from the response of that request, so make sure you take the proper values from your backend endpoint.

FAQs

Package last updated on 19 Apr 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc