Skip to content

Commit

Permalink
optimize tooltip rendering (#708), cleanup DataCellRenderer
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Nov 25, 2019
1 parent 35cd804 commit 6212fef
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 18 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Changed
- Move UI notifications to ``NotifyBadge.vue`` (#718)
- Refactor column data retrieval in ``ColumnToggleModal`` (#710)
- Rename ``getGridOptions()`` to ``initGridOptions()`` (#721)
- Dynamically add cell tooltip in rendering if value is defined (#708)

Fixed
-----
Expand Down
4 changes: 3 additions & 1 deletion samplesheets/rendering.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,11 @@ def _add_cell(
'value': value.strip() if isinstance(value, str) else value,
'unit': unit.strip() if isinstance(unit, str) else unit,
'link': link,
'tooltip': tooltip,
}

if tooltip:
cell['tooltip'] = tooltip

# Add extra data for editing
if self._edit:
cell['uuid'] = str(obj.sodar_uuid)
Expand Down
34 changes: 17 additions & 17 deletions samplesheets/src/components/renderers/DataCellRenderer.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<div class="sodar-ss-data"
:row-num="this.params.node.data.rowNum"
:col-num="this.params.colDef.field.substring(3)"
:row-id="this.params.node.id"
:row-num="params.node.data.rowNum"
:col-num="params.colDef.field.substring(3)"
:row-id="params.node.id"
@mouseover="onMouseOver"
@mouseout="onMouseOut">
<!-- Plain/empty value -->
Expand All @@ -26,7 +26,7 @@
</span>
<span v-for="(link, index) in links = renderData.links" :key="index">
<a :href="link.url"
:title="value.tooltip"
:title="getTooltip()"
v-b-tooltip.hover.d300
target="_blank">{{ link.value }}</a><span v-if="index + 1 < links.length">; </span>
</span>
Expand All @@ -48,7 +48,7 @@
<!-- File link -->
<span v-else-if="colType === 'LINK_FILE' && renderData">
<a :href="renderData.url"
:title="value.tooltip"
:title="getTooltip()"
v-b-tooltip.hover.d300
target="_blank">{{ renderData.value }}</a>
</span>
Expand All @@ -69,17 +69,16 @@ export default Vue.extend(
}
},
methods: {
/* Event handling ----------------------------------------------------- */
onMouseOver (event) {
if (this.enableHover &&
event.currentTarget.scrollWidth > event.currentTarget.clientWidth) {
event.currentTarget.className += ' sodar-ss-data-hover'
}
},
onMouseOut (event) {
event.currentTarget.className = 'sodar-ss-data'
},
onCopyHpoTerms () {
let hpoIds = []
Expand All @@ -92,14 +91,13 @@ export default Vue.extend(
this.$copyText(hpoIds.join(';'))
this.params.app.showNotification('Copied', 'success', 1000)
},
// Get header name and place in this.headerName
/* Helpers ------------------------------------------------------------ */
getHeaderName () {
// Get header name and place in this.headerName
return this.params.colDef.headerName.toLowerCase()
},
// Return one or more ontology links for field
getOntologyLinks () {
// Return one or more ontology links for field
let links = []
if (Array.isArray(this.value.value)) {
Expand All @@ -123,9 +121,8 @@ export default Vue.extend(
}
return {'links': links}
},
// Return contact name and email
getContact () {
// Return contact name and email
let contactRegex = /(.+?)(?:[<[])(.+?)(?=[>\]])/
if (contactRegex.test(this.value.value) === true) {
Expand All @@ -135,9 +132,8 @@ export default Vue.extend(
this.colType = null // Fall back to standard field
}
},
// Return external links
getExternalLinks () {
// Return external links
let linkLabels = this.params.context
.componentParent.sodarContext['external_link_labels']
let ret = []
Expand All @@ -158,13 +154,17 @@ export default Vue.extend(
return {'extIds': ret}
},
// Get file link
getFileLink () {
// Get file link
return {
value: this.value.value,
url: this.value.link
}
},
getTooltip () {
if (this.value.hasOwnProperty('tooltip')) {
return this.value.tooltip
}
}
},
beforeMount () {
Expand Down

0 comments on commit 6212fef

Please sign in to comment.