Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8913987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T04:36:36+00:00 2026-06-15T04:36:36+00:00

The requirement is that I used Q.js feature called Q.all inside a javascript function

  • 0

The requirement is that I used Q.js feature called Q.all inside a javascript function that needs to return a result provided the Q.all finishes successfully.

My objective is to return an object with two properties called wrongsize and okaysize.
both properties are javascript Array.

The problem is I am not sure how to include the Q.defer function with Q.all in the same function.

function filterNonConformingPageSize(files) {

    var addToWhichGlobalVariable = "pageSizesOfNewFiles";

    promises = [];
    for (var i=0; i<files.length; i++) {
        promises.push(
            getSizeSettingsFromPage(files[i], addToWhichGlobalVariable, calculateRatio)
        );
    }

    // *** sort out the files after all promises have been resolved
    var resultObj = Q.all(promises).then(function() {
        var test = new Object();
        var filesWithOkaySize = new Array();
        var filesWithWrongSize = new Array();   

        for (var i=0; i<files.length; i++) {
            if (pageSizesOfNewFiles[i].size == majorityPageSize) {
                filesWithOkaySize.push(files[i]);
            } else {
                filesWithWrongSize.push(files[i].name);
            }
        }
        test['wrongsize'] = filesWithWrongSize;
        test['okaysize'] = filesWithOkaySize;

        return test;
    });

    return resultObj;

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T04:36:37+00:00Added an answer on June 15, 2026 at 4:36 am

    Pay attention to the @TODO portion.

        /** iteratively calculate pagesize of the new incoming files **/
    function filterNonConformingPageSize(files) {
        // @TODO Create a Deferred
        var deferred = Q.defer();
    
        var addToWhichGlobalVariable = "pageSizesOfNewFiles";
    
        promises = [];
        for (var i=0; i<files.length; i++) {
            promises.push(
                getSizeSettingsFromPage(files[i], addToWhichGlobalVariable, calculateRatio)
            );
        }
    
    
        // *** sort out the files after all promises have been resolved
        Q.all(promises).then(function() {
            var test = new Object();    
            var filesWithOkaySize = new Array();
            var filesWithWrongSize = new Array();   
    
            for (var i=0; i<files.length; i++) {
                var filename = files[i].name;
                var newFileSize = pageSizesOfNewFiles.getByKey(filename);
                if (newFileSize.size == majorityPageSize) {
                    console.log(filename + "is right size");
                    console.log(newFileSize.size);
                    filesWithOkaySize.push(files[i]);
                } else {
                    console.log(filename + "is wrong size");
                    filesWithWrongSize.push(files[i]);
                }
            }
            test['wrongsize'] = filesWithWrongSize;
            test['okaysize'] = filesWithOkaySize;
        // @TODO add the resolve        
            deferred.resolve(test); 
        });
        // @TODO return the promise part. 
        return deferred.promise;
    
    }
    

    when you call the function, do it like this

     filterNonConformingPageSize(filterDupeNameResult['okaynames']).then(function(result){
     // result will be the expected result
         // at the end of running filterNonConformingPageSize
     });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a specific requirement that all children of a particular JComponent have double
I have a requirement that i want to get all the system services running
I'm building an Eclipse Feature that has a requirement that amounts to this... The
I have the requirement that I need to open a document in Microsoft word
We have a business requirement that some users be automatically logged out of our
I have a requirement that I need to show my records in a gridview
I have a unique requirement that I hope is possible with LINQ to SQL.
I have a requirement that when the user clicks on [X] button of the
I have a requirement that I want to check the request headers and according
I have a requirement that a user is allowed only to enter string value

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.