Home

Awesome

AdonisJS attachment

This package is currently development and will replace attachment-advanced for AdonisJS 6.

Project sample : adonis-starter-kit

Links

View documentation

Discord

ChangeLog

⚠️ Breaking change version 2, include @adonisjs/drive

Roadmap

Setup

Install and configure the package:

node ace add @jrmc/adonis-attachment

Sample

Simple upload file

// app/models/user.ts
import { BaseModel } from '@adonisjs/lucid/orm'
import { compose } from '@adonisjs/core/helpers'
import { attachment, Attachmentable } from '@jrmc/adonis-attachment'
import type { Attachment } from '@jrmc/adonis-attachment/types/attachment' // [!code highlight]

class User extends compose(BaseModel, Attachmentable) { // [!code highlight]
  @attachment() // [!code highlight]
  declare avatar: Attachment // [!code highlight]
}

// app/controllers/users_controller.ts
import { attachmentManager } from '@jrmc/adonis-attachment' // [!code focus]

class UsersController {
  public store({ request }: HttpContext) {
    const avatar = request.file('avatar')! // [!code focus]
    const user = new User()

    user.avatar = await attachmentManager.createFromFile(avatar) // [!code focus]
    await user.save()
  }
}

<img src="{{ await user.avatar.getUrl() }}" loading="lazy" alt="" />

Read documentation for advanced usage(thumbnail video/pdf/doc, create from buffer/base64...)