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

radmin-free

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

radmin-free

RedwoodJS Admin Panel Generator

  • 0.4.0
  • latest
  • npm
  • Socket score

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

Radmin

RedwoodJS Admin Panel Generator

Usage

Standing in the Redwood app you want to generate an admin panel for you just run npx -y radmin-free@latest <path-to-admin-panel>

cd ./existing-rw-project
npx -y radmin-free@latest ../project-admin

Guiding Principles

  • It should be easy to regenerate the admin panel when the db schema changes
  • Admin panel customizations should live separate from the generated code so that no customizations are lost when the panel is regenerated
  • Getting started should always be as easy as just running a single command. No initial setup or configuration should be needed
  • There should be three levels of customizations:
    1. None: The default, and always preferred. Radmin should always provide good defaults
    2. Schema comments: Simple customizations are done by adding triple-slash meta comments to the schema.prisma file
    3. Code: For scenarios where meta comments aren't enough proper TS code should be used to customize Radmin.

Customize Your Admin Panel

Available Triple-slash @radmin Comments

Model-level comments
  • @radmin-skip - Don't include this model in the generated admin panel
  • @radmin-no-edit - Disable editing records in this model
  • @radmin-no-delete - Disable deleting records in this model
Field-level comments
  • @radmin-skip - Don't include this field in the generated admin panel
  • @radmin-search - Set this as the field to use in the search input
  • @radmin-multiline - Force multiline text input for this field
  • @radmin-singleline - Force single-line text input for this field
  • @radmin-html - Store data as html in your DB (for use with multiline inputs)
  • @radmin-markdown - Store data as markdown in your DB (for use with multiline inputs)
  • @radmin-date – Format how dates are displayed. relative or a date-fns string like yyyy-MM-dd HH:mm.

Known Limitations

Node version

Needs Node 16.7 (released 18-Aug-2021) or later because of use of fs.cpSync.

If your Node version is too new you can still use Radmin, but you'll have to manually create a admin panel project. Just run npx -y radmin-free@latest and it'll guide you through this

Compound IDs

Radmin doesn't support compound IDs yet. Models with compound IDs will be skipped and a warning will be printed to your console. Fields referencing models with compound IDs will also be skipped.

This will not work

model CategoryToProduct {
  product    Product  @relation(fields: [productId], references: [id])
  productId  String   @db.Uuid
  category   Category @relation(fields: [categoryId], references: [id])
  categoryId Int

  @@id([productId, categoryId])
}

You'll have to add an id key, and make the compound id a compound unique constraint instead

model CategoryToProduct {
  id         String   @id @default(dbgenerated("gen_random_uuid()")) @db.Uuid
  product    Product  @relation(fields: [productId], references: [id])
  productId  String   @db.Uuid
  category   Category @relation(fields: [categoryId], references: [id])
  categoryId Int

  @@unique([productId, categoryId])
}

If you do it exactly like that you should be able to migrate your DB without losing any data

Prisma Generators

If you have additional prisma generators defined in your schema, radmin will error out when you run it. The solution is to manually install the generators in the admin project, and then rerun radmin.

FAQs

Package last updated on 14 Oct 2023

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