This is an official AdminJS adapter for SQL databases. It does not require you to use any ORMs, instead you just provide database connection and you model the data sources using AdminJS configuration.
Supported databases:
- PostgreSQL
- MySQL
- more coming soon
This adapter is heavily inspired by wirekang's adminjs-sql which is an unofficial adapter for a MySQL database.
$ yarn add @adminjs/sql
The example below shows usage with @adminjs/express
. The usage of Adapter
class is required to parse your database's schema.
import AdminJS from 'adminjs'
import express from 'express'
import Plugin from '@adminjs/express'
import Adapter, { Database, Resource } from '@adminjs/sql'
AdminJS.registerAdapter({
Database,
Resource,
})
const start = async () => {
const app = express()
const db = await new Adapter('postgresql', {
connectionString: '<your database connection string>', // postgresql://[user]:[password]@[netloc]:[port]/[dbname]
database: '<your database name>',
}).init();
const admin = new AdminJS({
resources: [
{
resource: db.table('users'),
options: { /* any resource options, rbac, etc */ },
},
],
// databases: [db] <- you can also provide the DB connection to register all tables at once
});
admin.watch()
const router = Plugin.buildRouter(admin)
app.use(admin.options.rootPath, router)
app.listen(8080, () => {
console.log('app started')
})
}
start()
Currently only many-to-one
relation works out of the box if you specify foreign key constraints in your database. Other relations will require you to make UI/backend customizations. Please see our documentation to learn more.
As of version 1.0.0
database enums aren't automatically detected and loaded. You can assign them manually in your resource options:
// ...
const admin = new AdminJS({
resources: [{
resource: db.table('users'),
options: {
properties: {
role: {
availableValues: [
{ label: 'Admin', value: 'ADMIN' },
{ label: 'Client', value: 'CLIENT' },
],
},
},
},
}],
})
// ...
If your database tables have automatically default-set timestamps (created_at
, updated_at
, etc) they will be visible in create/edit forms by default. You can hide them in resource options:
// ...
const admin = new AdminJS({
resources: [{
resource: db.table('users'),
options: {
properties: {
created_at: { isVisible: false },
},
},
}],
})
// ...
AdminJS is copyrighted © 2023 rst.software. It is a free software, and may be redistributed under the terms specified in the LICENSE file.
We’re an open, friendly team that helps clients from all over the world to transform their businesses and create astonishing products.
- We are available for hire.
- If you want to work for us - check out the career page.