UpdateImageCKeditor.js 1.01 KB
Newer Older
Giang Tran committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
import axios from 'axios'

export default class UploadAdapter {
    constructor(loader, url) {
        this.url = url
        this.loader = loader
        this.loader.file.then((pic) => (this.file = pic))

        this.upload()
    }

    // Starts the upload process.
    upload() {
        const fd = new FormData()
        fd.append('image', this.file) // your image
        // ...

        return new Promise((resolve, reject) => {
            axios
                .post(this.url, fd, {
                    onUploadProgress: (e) => {
                        console.log(
                            // show upload process
                            Math.round((e.loaded / e.total) * 100) + ' %'
                        )
                    },
                })
                .then((response) => {
                    resolve(response)
                })
                .catch((error) => {
                    reject('Server Error')
                    console.log('Server Error : ', error)
                })
        })
    }
}