Open 50417 opened 2 years ago
This may sound odd but could make a brief sketch or layout, it would really help me with tying everything together.
Here is a rough sketch of the UI.
This is just a suggestion to give an idea of what kind of input to take from user. You can change the layout as you see fit.
Thank you for the sketch. I know you asked us to include a model_files column in our project tables but some of those projects have large number of files, 100 or more, associated with it. Displaying the model files takes up a large amount of space on the screen. Can you look in the MATC projects table and see what I'm talking about. Also, the licenses for the MATC projects appear to be some type of encrypted string which are too large to display in a dropdown menu, plus the user wouldn't be able to tell the type of license. If you go to the site for each individual MATC project, there is a menu there where you can find the type of license for each one but there is no way to tell from MATC proejct file. I am using hardcoded values at the moment because of this, do you have any suggestion on how to deal with this issue?
Use the <GitHub/MATC>-Models Table as a filtering option in the UI.
workdirtmp
).The filtering attributes to include in the UI are:
Some of the attributes need discrete value/option while some are integers. Based on that, you can use a drop down menu to show available discrete value or give an option to user to enter min-max integer value.
Note that there are three different _block_count (SCHK_block_count, SLDiag_block_count and C_corpus_blk_count) in the table. Essentially, there are 3 tools to get block counts of Simulink models. So in the UI, you can have 3-option drop down menu (1. Exclude library-imported block, 2. Include library-imported block via sldiagnostics and 3. Include library-imported block via custom tool) alongside
Block Count
for user to choose from. For Exclude library-imported block, query SCHK_block_count. For Include library-imported block via sldiagnostics, query SLDiag_block_count. The actually name of the 3-options may need to be changed later