Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check for parent folder #1119

Open
sisskind opened this issue Jun 5, 2018 · 0 comments
Open

Check for parent folder #1119

sisskind opened this issue Jun 5, 2018 · 0 comments

Comments

@sisskind
Copy link

sisskind commented Jun 5, 2018

 model_folders.listFolders = function(array) {
        _.each(array,function(f){
            if(f.parentId===0){
                f.folderPath = f.name;
            } else {
                //use links to get parent folder as far back as possible
                var strPath = f.name;
                var parentFolder = _.find(model_folders.getAvailFolders(),{id:f.parentId});
                var i=0;
                if(parentFolder){
                  do{
                      i++;
                      strPath = parentFolder.name+'/'+strPath;
                      parentFolder = _.find(model_folders.getAvailFolders(),{id:parentFolder.parentId});
                  } while (parentFolder || i===10);
                  f.folderPath = strPath;
                }
            }
        });
    };

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant