Writing your own Components
Adding custom components
AdminJS handles all properties and actions using its own, built-in components. These are the familiar text inputs, checkboxes, paginated lists, edit forms etc. However, you can define a custom component for any single property or action instead. This gives you great control over how the data is being displayed and modified.
In general, you need to create an instance of ComponentLoader
, add your custom components there, pass it in the AdminJS options object and specify which properties/actions are using your custom components and where.
./components.ts
:
./my-input.tsx
./some-resource.ts
./index.ts
Custom Component Structure
Files added to ComponentLoader
need to expose the component function as a default export. Both .jsx
and .tsx
formats are supported.
Advanced usage: The path passed in the second argument to the ComponentLoader.add()
and ComponentLoader.override()
functions needs to be relative to the file where it was called. If you want to wrap these calls in another function you might find that AdminJS cannot find the correct files. To fix that, pass a third argument with the name of the caller function, like this:
Dependencies
AdminJS uses these dependencies internally, so they are exposed for your code without the need to require them in the package.json
file:
State management
Routing
Styling
Other
Props passed to components
In your property and action components, you can use props passed by their controlling components.
Currently we have 2 controlling components:
Check out their documentation to see available props
Other, internal components (like Dashboard) have either no or different props, see the source code in each case.
Overriding internal AdminJS components
ComponentLoader
also has an .override()
method that lets you replace components used by AdminJS internally by your own custom components. This is useful in cases where you want to change or add behavior to the entire AdminJS app, for example:
Adding a custom dashboard
Changing the app layout
Overriding entire controls (like replacing boolean checkboxes with toggles)
Customizing component look and feel when theming is insufficient
The methods are split into .add()
and .override()
as a safety layer, so you don't accidentally override an internal component with a custom component of the same name - the functions will throw an error when used for conflicting components. In short, .add()
won't let you use internal component names and .override()
requires an internal component name.
Other customizations
Theming
In order to override default colors, fonts, sizes etc., you can put your values in AdminJSOptions.branding.
Using style props
AdminJS components are supercharged with multiple props controlling styles. For instance in order to change color of a module:@adminjs/design-system.Button you can pass backgroundColor (bg) from the module:@adminjs/design-system.Theme like that:
Adding custom css to components
If using style props is not enough - you can always pass your custom CSS. So for instance let's assume that you would like to overwrite CSS in a Button component. You can do this like that:
Reusing UI Components of AdminJS
AdminJS gives you the ability to reuse its component library:
We divide components internally to 2 groups:
application components - which requires AdminJS, you can think about them as "smart components"
and design system components - they don't require AdminJS and you can use them outside of the AdminJS setup.
That is why sometimes you have to import components from 'adminjs' package and sometimes from '@adminjs/design-system'.
Each of the components is described with the playground option, so make sure to check out all the documentation of all the components.
Creating Custom Pages
You can also use custom components as full pages by specifying their name in the pages
object in AdminJS options:
Using other AdminJS frontend classes and objects
AdminJS also exposes following classes:
You can use them like this:
Last updated