Coder Social home page Coder Social logo

Comments (5)

kukhariev avatar kukhariev commented on July 20, 2024

if you mean this code:

      case 'upload':
        const uploadId = event.uploadId || event.itemOptions.uploadId;
        const upload = this.queue.find(f => f.uploadId === uploadId);
        if (this.concurrency - this.runningProcess() > 0) {
          upload.upload(event.itemOptions);
        } else if (upload.status === ('added' as UploadStatus)) {
          upload.status = 'queue' as UploadStatus;
        }
        break;

it looks broken.

upd. Sorry 'uploadAll'
it's broken too

from ngx-uploadx.

wil92 avatar wil92 commented on July 20, 2024

I code that, what i did there was a condition before start upload, because the file should not start upload if the concurrency is full, and put as queue if the file is as added for start the upload after the concurrency is free.

I talking about this part

case 'uploadAll':
        this.queue.filter(f => f.status !== 'uploading').forEach(f => (f.status = 'queue'));
        this.processQueue();
        break;

why stop the current uploading files and then call the processQueue?, is not the same call only the processQueue method

from ngx-uploadx.

wil92 avatar wil92 commented on July 20, 2024

I think should be like this

case 'uploadAll':
        this.queue.filter(f => f.status !== 'paused').forEach(f => (f.status = 'queue'));
        this.processQueue();
        break;

from ngx-uploadx.

kukhariev avatar kukhariev commented on July 20, 2024

case 'uploadAll':
but how quick unpause all paused?

case 'upload':
try upload 5 files on http://localhost:4200/service-way

from ngx-uploadx.

wil92 avatar wil92 commented on July 20, 2024

case 'uploadAll'
sorry in the uploadAll i didn't see the !==, my foul. That why i didn't change anything there.

case 'upload'
I test that, I upload 5 files at the same time and was working, with the restriction that only 2 file at the same time are coping and after one of the uploading finish then start the first in queue to upload. What is the error you find there?

I'm going to close this issue an create a new one for the upload action #18

from ngx-uploadx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.