1.4.6 • Published 4 years ago

@flk/admin v1.4.6

Weekly downloads
32
License
ISC
Repository
github
Last release
4 years ago

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.

1.4.6

4 years ago

1.1.28

4 years ago

1.4.5

4 years ago

1.4.1

4 years ago

1.4.0

4 years ago

1.1.27

4 years ago

1.1.26

4 years ago

1.1.25

4 years ago

1.1.24

4 years ago

1.1.22

4 years ago

1.1.21

4 years ago

1.1.20

4 years ago

1.1.19

4 years ago

1.1.18

4 years ago

1.1.17

4 years ago

1.1.16

4 years ago

1.1.15

4 years ago

1.1.14

4 years ago

1.1.13

4 years ago

1.1.11

4 years ago

1.1.10

4 years ago

1.1.9

4 years ago

1.1.8

4 years ago

1.1.7

4 years ago

1.1.6

4 years ago

1.1.5

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.0.0

4 years ago