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

Possible optimizations #1

Open
dextermb opened this issue Sep 25, 2018 · 3 comments
Open

Possible optimizations #1

dextermb opened this issue Sep 25, 2018 · 3 comments

Comments

@dextermb
Copy link
Contributor

I've noticed that in DynamicDataTable.jsx getFields there is a lot of for loops. I feel that this can be written nicer by using pre-existing JavaScript functions such as Array.prototype.forEach. I think the logic can also be simplified.

Here's what I've come up with:

rows.forEach(row => {
    Object.keys(row).forEach(rowFieldName => {
        fields.forEach(field => {
            if(field.name === rowFieldName) {
                const label = rowFieldName.replace(new RegExp('_', 'g'), ' ').trim();

                fields.push({
                    name: rowFieldName,
                    label,
                });
            }
        })
    })
})

Here's what is there:

for (let i = 0; i < rows.length; i++) {
    const row = rows[i];

    const rowFields = Object.keys(row);

    for (let j = 0; j < rowFields.length; j++) {
        const rowFieldName = rowFields[j];
        let exists = false;

        for (let k = 0; k < fields.length; k++) {
            const field = fields[k];

            if (field.name === rowFieldName) {
                exists = true;
                break;
            }
        }

        if (!exists) {
            const label = rowFieldName.replace(new RegExp('_', 'g'), ' ').trim();

            fields.push({
                name: rowFieldName,
                label,
            });
        }
    }
}

I personally think that we should be pushing to use existing JavaScript functions as much as possible which'll make code more compact and in my opinion easier to read.

Thoughts?

cc @DivineOmega @wheatleyjj

@DivineOmega
Copy link
Contributor

@dextermb Definitely much more optimised, but you appear to be missing the existence check if the original code.

@dextermb
Copy link
Contributor Author

dextermb commented Sep 25, 2018

Edit: After reading through the original code again it seems that I missed ! in the last if statement. The updated code below covers this:

rows.forEach(row => {
    Object.keys(row).forEach(rowFieldName => {
        let exists = false;

        fields.forEach(field => field.name === rowFieldName ? exists = true : null);

        if (!exists) {
            const label = rowFieldName.replace(/_/g, ' ').trim();

            fields.push({
                name: rowFieldName,
                label,
            });
        }
    })
})

I've also swapped the new RegExp for a literal regular expression.

@DivineOmega
Copy link
Contributor

Looks good. Feel free to make a PR. 👍

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

2 participants