Skip to content
Snippets Groups Projects
Commit d2a5e050 authored by Moises Sacal's avatar Moises Sacal
Browse files

cleaning views

parent dd5b84df
Branches
No related merge requests found
......@@ -72,6 +72,7 @@ const Router = async function (state) {
}
}
} else {
// TODO: Move some of these config data to config
const res = await solrService.search({api: state.config.api}, {
start: state.main.start,
page: state.main.page,
......@@ -86,6 +87,7 @@ const Router = async function (state) {
state.main.searchText = '';
state.facetResult = res.facets;
const facetContent = FacetController.get({data: state.facetResult['facet_fields'][state.facets[0]], toJSON: true});
// TODO: Move this to config
const facetData = FacetController.display({data: facetContent, config: {
name: 'Dataset_author_facetmulti',
route: '#view/',
......
......@@ -5,24 +5,28 @@ const SubDocHorizontal = function (data) {
const div = $('<div class="row">');
const headerDiv = $('<div class="col-sm-2">').html(data.fieldName);
div.append(headerDiv);
if (isIterable(data.value)) {
for (let key of data.value) {
try {
const a = $('<a>');
const subDiv = $('<div class="col-sm">');
const subEle = $('<span class="">');
const sub = JSON.parse(key);
const href = `/#view/${sub['@id']}`;
a.attr('href', href);
a.attr('title', sub['name']);
a.text(sub['name']);
a.addClass("link");
subDiv.append(a);
div.append(subDiv);
subEle.append(a);
div.append(subEle);
} catch (e) {
div.append('')
div.append('');
}
}
}
return div;
}
......
......@@ -38,6 +38,7 @@ let state = {
related: [],
viewFields: [
{display: "SubDocHorizontal", field: "author", fieldName: 'Author/s'},
{display: "", field: "affiliation", fieldName: 'Affiliation'},
{display: "", field: "license", fieldName: 'Licence'},
{display: "SubDocDate", field: "datePublished", fieldName: 'Date Published'},
{display: "SubDoc", field: "contactPoint", fieldName: 'Contact Point', template: '${item.name} ${item.email}'},
......@@ -46,7 +47,7 @@ let state = {
facets: ['Dataset_author_facetmulti'],
facetsDisplay: [
{name: 'Dataset_author_facetmulti', displayText: 'Top Authors'},
//{name: 'Keywords', displayText: 'Top Keywords'}
{name: 'Keywords', displayText: 'Top Keywords'}
],
facetData: [],
facetLimit: 5,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment