forked from ontoportal/ontoportal_web_ui
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Open to add values to some metadata attribute in the submission …
…edit form (#392) * show ontology groups in the ontology summary page * updatr account page to show empty state of Subscriptions, Submitted and projects * don't stop the API server after running the tests * add chrome-server service to run integration test * add users creation & login flow tests * add submission creation system tests * add system tests CI * fix development environnement not raising exception * if submission status icon helper with the correct conditions * not show the ontology data section if the submission is not ready * add an alert message in summary page, to give information about this submission statueses * add remote api of Stageportal tests CI * add option to the ontoportal script to run test with a remote API * fix ontologies with no submissions summary page state * build docker images in github hub in addition of docker * add test coverage report * fix ontology viewer sections order * fix summary icons, by adding publication, title and enforce disabled * add admin block helper * add to the ontology viewer private, hasLanguage and retired badges * add a title to the json and subscribe button to give their usages * fix summary usage and methodology properties not showing * add :award to summary page "usage" block * add :exampleIdentifier to the summary identifiers block * add ::associatedMedia, :bugDatabase, :mailingList, :uriRegexPattern to summary links block * add :toDoList and :notes to summary methodology block * add a an admin block in the summary page for the configuration metadata * lazy load the ontology view section in development mode for better perf * add the abstract to ontology summary description block * update the summary page description text to integrate multiple metadata alternative, hasLicense, prefix, namespace, metadataVoc * add ontology edit metadata tests * fix browse not working in local french * remove reset button in submission forms * fix metrics evolution popup title * add in summary page show all metrics popup * don't humanize agent name and show them as saved * fix the new hasOntologyLanguage badge for the one that are nil * fix landscape average metrics all NaN * fix metadata curator returning content missing * fix subscribe button unwatch state title * hide topnav "Recently Viewed" if empty * fix user edit form button style * add useGuidelines and copyrightHolder to the ontology licenses popup * add submission hasDomain to the summary general information block * fix agent input for single fields * fix select input not removing the text written after select * add no list agents input support * fix missing translate for concept selector in mappings page * fix recemender insert text missing translation * use the select component for the relations inputs * fix ontologies tries not opening for OWL ones * handle the case of an ontology with no submission * disable copryright holder editing * add again remove images that are still used * add rest_url helper, that clean the give $REST_URL in the configuration * make the stop_api script also remove the volumes * add agent creation system tests * fix submission single agent input ( e.g copyrightHolder ) * open to add ontology relation inputs except hasPriorVersion * fix the edition of curatedOn metadata and also the display as a list * update submission flow tests to the remaining tests (agent, curatedOn) * update some attribute in submission from to be open to add values * fix switch input for boolean type as Deprecated * update retired badge to have two state deprecated in orange or retired in red * add codevoc generation * update trancate text to not be hidden but scrollable * move the alternative and hiddenLabel as tooltip of the ontology name * add community and content blocks in summary page * add ontology license badge in the ontology viewer header * add required option to select input used for hasOntologyLanguage * auto select person type in the agent from if new * don't show the cancel button in agent input if the agent is not a list * add submission description filter to the browse page * remove a slow call the tree display and fix the language all display * fix agent input been removed from submission after edited * add admin agents edition system tests * fix user subscription if subscribed to a no more existent ontology
- Loading branch information
1 parent
dcff39f
commit 9d99d87
Showing
37 changed files
with
408 additions
and
265 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
app/components/chip_button_component/chip_button_component.html.haml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
- if @type == "static" | ||
%span.chip_button_container{@html_options} | ||
= @text || content | ||
%span.chip_button_container{@html_options} | ||
= @text || content | ||
- else | ||
%a.chip_button_container_clickable{@html_options}= @text || content | ||
%span.chip_button_container_clickable{@html_options} | ||
= @text || content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
app/components/switch_input_component/switch_input_component.html.haml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
%div.switch-filter | ||
- if @boolean_switch | ||
= hidden_field_tag @name, @value | ||
- if content || [email protected]? | ||
= content_tag(:div, content || @label, style: @style) | ||
- if @boolean_switch | ||
= hidden_field_tag @name, @value | ||
%label.switch{for: check_box_id} | ||
= check_box_tag check_box_name, @value, @checked, class: '', id: check_box_id, onChange: "#{boolean_switch_action}" | ||
%span.slider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.