Giter VIP home page Giter VIP logo

Comments (2)

aronmolnar avatar aronmolnar commented on July 18, 2024

I created you a small PoC that you can use as a basis.

Thats how it looks for me currently:
image

<table>
    <thead>
        <tr>
            <th></th>
            <template v-for="risk in ['negligible', 'low']">
                <th class="capitalize">{{ risk }}</th>
            </template>
        </tr>
    </thead>
    <tbody>
        <tr v-for="probability in ['frequent', 'probable']">
            <th class="capitalize">{{ probability }}</th>
            
            <td :class="'heatmap-negligible-' + probability">
                <template v-for="finding in findings.filter(obj => obj.severity.value === 'low')">
                    {{ finding.title }}
                </template>
            </td>
            <td :class="'heatmap-low-' + probability">
            </td>
        </tr>
    </tbody>
</table>

You need to add your own classifications to the arrays (to risk in ['negligible', 'low'] and probability in ['frequent', 'probable']).

You must expand the filtering logic (finding in findings.filter(obj => obj.severity.value === 'low')) by your own attributes, e.g. to (finding in findings.filter(obj => obj.severity.value === 'low' && obj.probability.value === 'low' ).

And you must define the background colors for your cells in CSS:

.heatmap-negligible-frequent {
    background-color: #78b64e !important;
}
.heatmap-negligible-probable {
    background-color: #477329 !important;
}
.heatmap-low-frequent {
    background-color: #ebfb3d !important;
}
.heatmap-low-probable {
    background-color: #78b64e !important;
}
...

Additionally the "capitalize" class I used:

.capitalize {
    text-transform: capitalize;
}

from sysreptor.

0xR4ndom avatar 0xR4ndom commented on July 18, 2024

Thanks for your time!
I managed to do what I wanted to do by using your example and adapting it a little.

from sysreptor.

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.