IceRock Development Admin Toolkit
This is a tool for building admin panels, that can be installed as npm dependency.
DEMO
Installation
yarn add icerockdev-admin-toolkit
or
npm i -S icerockdev-admin-toolkit
Usage
import React from 'react';
import { Application } from 'admin-toolkit';
import config from './config';
export const App = () => <Application config={config} />;
Config
The app is built on extendable classes. You can write your own autherntification by extending AuthProvider class. Creating complex pages should be made by extending Page class.
const config = new Config({
logo: '',
auth: new AuthProvider(authProviderOptions),
pages: [new Page(pageOptions), new Entity(entityOptions)],
theme,
});
Hooks
Use useConfig()
hook inside of components to get current Config
instance with all data.
i18n
Config options:
i18nDefaultLanguage
- Default language in admin paneli18nLanguages
- Array of supported languagesi18nUseBrowserLanguageDetector
- Enable automatically detect language by browseri18nResourcesContext
- Instance of Webpack's RequireContext
with specified folder for loading translations
For enable languages support you need create translations files in ~/locales
folder (in sources root).
Folders structure example:
locales/
├── en
│ ├── buttons.json
│ ├── common.json
│ └── messages.json
└── ru
├── buttons.json
├── common.json
└── messages.json
Filename is a namespace of translations. Default namespace is "common". For example you can call t('common:Sign In')
or is same t('Sign In')
, other namespaces messages calls only with namespace, example: t('buttons:Cancel')
.
For mor info check out the i18next documentation and react-i18next documentation.
AuthProvider
AuthProvider
is extendable class. You can override its metods for your needs. The app decides user authentication status by checking its token field, but you can override this behaviour in your own class, like this done in JWTAuthProvider
.
Options:
new AuthProvider({
authRequestFn: (email, password) =>
Promise.resolve({
user: {
email: 'user@example.com',
username: 'username',
token: 'SAMPLE_TOKEN',
role: 'user',
},
error: '',
}),
authPasswRestoreFn: (email) =>
Promise.resolve({
error: '',
}),
persist: true,
router: FC,
signIn: FC,
signUp: FC,
forgotPassword: FC,
resetPassword: FC,
layout: FC,
});
Customization
Override these components to customize guest user interface:
router
- global router for unauthorized users. Avoid changing itsignIn
, signUp
, forgotPassword
, resetPassword
- specific components for each step of authorizationlayout
- wrapper for all components. By default it's VerticalAuthLayout
.
TIP: use const config = useConfig()
react hook to get current config
inside each component.
JWTAuthProvider
JWTAuthProvider is extension of AuthProvider, but it has tokenRefreshFn
to fetch renewed access token, using refresh token. Also, authRequestFn returns tokens
field with access and refresh token pair:
new AuthProvider({
authRequestFn: (email, password) => (
Promise.resolve({
user: {
email: 'user@example.com',
username: 'username',
role: 'user'
},
tokens: {
access: 'accessToken',
refresh: 'refreshToken',
},
error: ''
})
),
authPasswRestoreFn: (email) => (
Promise.resolve({
error: '',
})
),
tokenRefreshFn: (refresh) => (
Promise.resolve({
access: 'newAccessToken',
refresh: 'newRefreshToken',
}),
),
persist: true,
});
Methods and values:
auth.user
- current user infoauth.withToken: (req, args) => Promise<any>
- wrapper for callbacks, which used to add token
value to function argumentsauth.logout: () => void
- function to log user outauth.isLogged: boolean
- computed field to decide if user is logged in
Page
Page class is for rendering pages inside the app. You can extend it to create more complex pages, like this done in Entity class.
Options:
new Page({
title: 'Sample page',
menu: {
enabled: true,
url: '/test',
label: 'Sample page',
},
roles: {
list: ['admin', 'manager'],
},
});
Methods and values:
page.canList: boolean
- if page can be viewed by current userpage.onMount: (page: Page) => void
- method, called on mountpage.onUnmount: (page: Page) => void
- method, called before unmountpage.output: ReactElement
- react component, that renders page content
Hooks
Use const page = usePage()
inside components to get current page
Extending:
Just extend Page class and add your functionality. Override output, onMount, onUnmount methods to create your own content behaviour.
Entity
Entity is used to display list of some database entities, view their details and edit them. The Entity class extends Page one.
Options
new Entity({
...pageOptions,
title: 'Sample entity',
editable: true,
viewable: true,
creatable: true,
exportable: true,
api: {
get: { url: '/get', method: 'get' },
list: { url: '/list', method: 'get' },
update: { url: '/update', method: 'patch' },
create: { url: '/create', method: 'post' },
},
menu: {
enabled: true,
label: 'Sample entity',
url: '/entity',
},
references: {
status: {
getMany: async () => {
return {
1: 'variant 1',
2: 'variant 2',
};
},
},
},
fields: [
{
name: 'type',
label: 'Тип',
sortable: true,
type: 'custom',
component: EntityTypeField,
},
{
name: 'status',
label: 'Статус',
sortable: true,
filterable: true,
type: 'referenceSelect',
required: true,
},
],
getItemsFn,
fetchItemsFn,
updateItemsFn,
createItemsFn,
});
Methods and values
(extends Page methods and values)
entity.canView: boolean
- if entity can be viewed by current userentity.canEdit: boolean
- if entity can be edited by current userentity.canCreate: boolean
- if entity can be created by current userentity.output
- component, that renders entity page and contains router for list, view, edit and create pagesentity.List
, entity.Viewer
, entity.Editor
, entity.Creator
- overridable components for viewing, editing and creating itementity.ListHead
, entity.ListBody
, entity.ListFooter
- overridable parts of entity.List
componententity.EditorHead
, entity.EditorBody
, entity.EditorFooter
- overridable parts of entity.Editor
componententity.ViewerHead
, entity.ViewerHeadButtons
, entity.ViewerBody
, entity.ViewerFooter
- overridable parts of entity.Viewer
componententity.ListExtra
- if not null, renders entity list as accordeons, expanding by click with ListExtra's component as accordeon contententity.CreatorHead
, entity.CreatorHeadButtons
, entity.CreatorBody
, entity.CreatorFooter
- overridable parts of entity.Creator
componententity.isLoading: boolean
- is item currently loading / updatingentity.items: number
- how many items per page should be displayed in view listentity.itemsPerPage: number[]
- available options for itemsentity.page: number
- current pageentity.exportData
- used to export data in preferred format (currently .csv)entity.setFiltersWindowHash
, getFiltersFromHash
- syncing filters with page url using url hash
Hooks
Use const entity = useEntity()
inside components to get current entity
Entity fields
Entity.fields is an array of objects. Every field can has following types: string
, date
, boolean
, select
, phone
, richtext
, base64image
. custom
or referenceSelect
.
Every field is rendered by predefined or custom component, which accepts common options. isEditing
prop tells component to render in view (when it's in a table or in entity preview) or editor (when it's in editor or acting as filter field).
name: string,
- field name is it comes from the apilabel?: string,
- field label (or name will be used)title?: true,
- is this a title for entitytype: string
- field typesortable?: boolean;
- can we sort by this fieldfilterable?: boolean;
- can we filter by this fieldrequired?: boolean;
- is this field required. Used for basic validationvalidator?: (val: any) => boolean;
- custom validatoroptions?: Record<any, any>;
- options, passed for custom
component or { [value]: key } for select
componentcomponent?: FC<any>;
- React Component to render field. Only for custom
fieldshideInList?: boolean;
- do not render in table of entitieshideInEdit?: boolean;
- do not render in editor formhideInCreate?: boolean;
- do not render in creator formhideInExport?: boolean;
- do not export field in CSV
Custom Fields
const customField: IEntityField = {
name: "type",
label: "Тип",
sortable: true,
type: "custom",
component: EntityTypeField,
}
Custom fields are rendered by React Component specified in component
prop. Custom field component options are:
value: any
- field value for current componenthandler: (value: any) => void
- function, that changes valuelabel: string
- human readable labelerror: string
- error (if any)isEditing: boolean
- view or edit modeoptions: Record<any, any>
- optionsdata: Record<string, any>
- values for all the fields of current Entityfields: EntityField[]
- description of all fieldswithToken: (req, args) => Promise<any>
- function, that wraps requests with current user credentials (see AuthProvider
)
Reference fields
{
name: 'status',
label: 'Статус',
sortable: true,
filterable: true,
type: 'referenceSelect',
required: true,
},
The Entity should has references
to fetch data, that will match reference fields data:
references: {
status: {
getMany: async () => {
return {
1: 'variant 1',
2: 'variant 2',
3: 'variant 3',
};
},
},
},
Data fetching functions
getItemsFn
- fetches entity by id.
type IEntityGetFunction = ({
url: string;
token?: string;
id: any;
}) => Promise<{
data: Record<string, any>;
error?: string
}>
fetchItemsFn
- fetches entities list.
type IEntityFetchFunction = ({
url: string;
page?: number;
filter?: { name?: string; value?: any };
sortBy: string;
sortDir: string; // 'ASC' or 'DESC'
count?: number;
token?: string;
}) => Promise<{
data: {
list: Record<string, any>[];
totalCount?: number;
};
error?: string;
}>
updateItemsFn
- updates entity after editing.
type IEntityUpdateFunction = ({
url: string;
id: any;
token?: string;
data: Record<string, any>;
}) => Promise<{
data: Record<string, any>;
error?: string;
}>
createItemsFn
- creates new entity.
type IEntityCreateFunction = ({
url: string;
token?: string;
data: Record<string, any>;
}) => Promise<{
data: Record<string, any>;
error?: string;
}>
Throwing UNAUTHORIZED
error will cause AuthProvider/JWTAuthProvider token update or logout, depending on result.
Auth wrappers for Entity
Each entity has a link to config via this.parent
. You can access tokens by hitting this.parent.auth
, but you'd better use this.parent.auth.withToken(fn, args)
in your own entity methods.
withToken
will add token
arg to list of fn arguments, so you can pass it as auth header.
Theming
See https://material-ui.com/customization/theming/. To change colors, fonts, spacing, create your own theme and add it to config as theme
prop:
import { createMuiTheme } from '@material-ui/core/styles';
export default createMuiTheme({
palette: {
primary: {
main: '#d20c0a',
},
},
typography: {
fontFamily: '"Roboto", "Helvetica", "Arial", "sans-serif"',
},
});
Experimental feature
We've started implementing Page
type called Feature
to make more customizable kind of entity
administration with better typing support for incoming data.
Here's the brief info about it:
const feature = new Feature<Fields>('Feature title', '/feature', options);
Field types
Data types for all incoming data should be described:
export interface Fields {
name: string,
age: number,
}
Feature Options
const featureOptions: FeatureOptions<Fields> = {
fields: FeatureField<Fields>[];
features: FeatureFeatures;
containers?: FeatureRendererProps['containers'];
components?: FeatureRendererProps['components'];
api?: FeatureApiProps<Fields>;
permissions?: Partial<Record<FeatureFeature, UserRole[]>>;
getItemTitle?: (fields: Fields) => string;
}
fields
- list of FeatureField
(see below)features
- what kind of views should this feature havecontainers
- and components
- are list of components, what can be overriden (or default ones will be used)api
- is an api props, describing how to interact with backendpermissions
- is a dictionary of feature
and list of user rolesgetItemTitle
- is a function, that returns each item's title at views, breadcrumbs and etc.
Hooks
Use const feature = useFeature()
to get current Feature
instance inside any of components, inputs, etc.
Customizing views
You can theme app by overriding containers
and components
.
Containers
Simply a dictionary of list
, read
, create
and update
to React Functional Component. Use hooks to access
current feature data.
Components
All of Feature's containers is separated by zones, you can override each of them. Use just simple Functional Components
without any props, get current data by using useFeature
react hook.
List components
React.FC components can be specified for: wrapper
, header
, title
, buttons
, filters
, table
, pagination
, footer
, container
Read, Update and Create components:
React.FC components can be specified for: wrapper
, header
, footer
, title
, buttons
, breadcrumbs
, content
, submit
, container
Fields
Unlike in Entity
, all fields in Feature
are described by FeatureField
class and its successors.
Built-in field types are: DateField
, IntegerField
, ReferenceField
, SelectField
and StringField
.
Each of them has it's own options and FeatureField
's common ones. Create your own field
types by overriding any of that field classes.
const age = new IntegerField<Fields>('age', {
label: 'Age',
accuracy: 2,
features: {
sort: true,
filter: true,
},
defaultValue: 21,
});
See src/example/feature/fields.ts for more examples.
Publishing
Use npm login
or yarn login
and then npm publish
or yarn publish
.
Don't forget to increase package version each time you commit changes.
License
Copyright 2020 IceRock MAG Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.