mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-12-25 02:44:18 +00:00
Change logic for colorization of followed corpora in corpus Lists
This commit is contained in:
parent
47b9a90cb6
commit
c3306563f0
@ -20,8 +20,9 @@ class CorpusList extends ResourceList {
|
||||
|
||||
// #region Mandatory getters and methods to implement
|
||||
get item() {
|
||||
return (values) => {
|
||||
return `
|
||||
<tr class="list-item clickable hoverable">
|
||||
<tr class="${values['is-owner'] ? '' : 'deep-purple lighten-5'} list-item clickable hoverable">
|
||||
<td><a class="btn-floating disabled"><i class="material-icons service-color darken" data-service="corpus-analysis">book</i></a></td>
|
||||
<td><b class="title"></b><br><i class="description"></i></td>
|
||||
<td><span class="owner"></span></td>
|
||||
@ -32,6 +33,7 @@ class CorpusList extends ResourceList {
|
||||
</td>
|
||||
</tr>
|
||||
`.trim();
|
||||
};
|
||||
}
|
||||
|
||||
get valueNames() {
|
||||
@ -42,7 +44,6 @@ class CorpusList extends ResourceList {
|
||||
'description',
|
||||
'title',
|
||||
'owner',
|
||||
{data: ['is-owner']}
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -147,9 +147,5 @@
|
||||
{% endfor %}
|
||||
]
|
||||
);
|
||||
corpusItems = document.querySelectorAll('[data-is-owner="false"]');
|
||||
corpusItems.forEach((item) => {
|
||||
item.classList.add('deep-purple', 'lighten-5');
|
||||
});
|
||||
</script>
|
||||
{% endblock scripts %}
|
||||
|
Loading…
Reference in New Issue
Block a user