0.0.7 • Published 6 months ago

payload-github-upload v0.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Upload files to GitHub repo from Payload CMS

This plugin sends uploaded files to GitHub repo instead of writing them to the server file system.
Resized images are properly supported.

This project was based on payload-s3-upload from jeanbmar. Thank you!

Install

npm install payload-github-upload --legacy-peer-deps

Payload requires legacy-peer-deps because of conflicts on React and GraphQL dependencies (see Payload docs).

Getting Started

Enable plugin in Payload CMS config

import { buildConfig } from 'payload/config'
import githubUpload from 'payload-github-upload'

export default buildConfig({
  // ...
  plugins: [
    githubUpload({
      repo: '<user>/<repo>'
      branch: 'uploads',
      token: process.env.GITHUB_TOKEN,
    }),
  ],
})

Configure your upload collections

import { GithubUploadCollectionConfig } from 'payload-github-upload'

const Media: GithubUploadCollectionConfig = {
  slug: 'media',
  upload: {
    staticURL: '/assets',
    staticDir: 'assets',
    disableLocalStorage: true,
    github: true,
    adminThumbnail: ({ doc }) =>
      `https://<my-payload-instance-url>/uploads/${doc.filename}`,
  },
  // create a field to access uploaded files in github from payload api
  fields: [
    {
      name: 'url',
      type: 'text',
      access: {
        create: () => false,
      },
      admin: {
        disabled: true,
      },
      hooks: {
        afterRead: [
          ({ data: doc }) =>
            `https://<my-payload-instance-url>/uploads/${doc.filename}`,
        ],
      },
    },
  ],
}

export default Media

Recipe for handling different sizes

This plugin automatically uploads image variants in Github.

However, in order to retrieve correct URLs for the different sizes in the API, additional hooks should be implemented.

import { GithubUploadCollectionConfig } from 'payload-github-upload'

const Media: GithubUploadCollectionConfig = {
  slug: 'media',
  upload: {
    // ...
    imageSizes: [
      {
        name: 'thumbnail',
        width: 400,
        height: 300,
        crop: 'center'
      },
      {
        name: 'card',
        width: 768,
        height: 1024,
        crop: 'center'
      },
      {
        name: 'tablet',
        width: 1024,
        height: null,
        crop: 'center'
      }
    ],
    adminThumbnail: 'thumbnail',
  },
  hooks: {
    afterRead: [
      ({ doc }) => {
        // add a url property on the main image
        doc.url = `https://<my-payload-instance-url>/uploads/${doc.filename}`

        // add a url property on each imageSize
        Object.keys(doc.sizes)
          .forEach(k => doc.sizes[k].url = `https://<my-payload-instance-url>/uploads/${doc.sizes[k].filename}`)
      }
    ]
  },
  fields: []
}

export default Media
0.0.7

6 months ago

0.0.6

7 months ago

0.0.5

11 months ago

0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago