Skip to content
Snippets Groups Projects
Commit f0d69787 authored by Esko Ikkala's avatar Esko Ikkala
Browse files

Add object mapper for SPARQL results

parent 1597c097
No related branches found
No related tags found
No related merge requests found
...@@ -135,6 +135,7 @@ let MapApp = (props) => { ...@@ -135,6 +135,7 @@ let MapApp = (props) => {
// console.log('oneColumnView', oneColumnView) // console.log('oneColumnView', oneColumnView)
// console.log('resultFormat', resultFormat) // console.log('resultFormat', resultFormat)
// console.log('mapMode', mapMode) // console.log('mapMode', mapMode)
console.log(props.results)
let table = ''; let table = '';
if ((oneColumnView && options.resultFormat === 'table') || (!oneColumnView)) { if ((oneColumnView && options.resultFormat === 'table') || (!oneColumnView)) {
...@@ -173,7 +174,6 @@ let MapApp = (props) => { ...@@ -173,7 +174,6 @@ let MapApp = (props) => {
/> />
); );
} else { } else {
console.log(props.results)
mapElement = ( mapElement = (
<LeafletMap <LeafletMap
results={props.results} results={props.results}
...@@ -267,7 +267,8 @@ const mapStateToProps = (state) => { ...@@ -267,7 +267,8 @@ const mapStateToProps = (state) => {
browser: state.browser, browser: state.browser,
search: state.search, search: state.search,
map: state.map, map: state.map,
results: getVisibleResults(state.search), // results: getVisibleResults(state.search),
results: state.search.results,
resultValues: getVisibleValues(state.search), resultValues: getVisibleValues(state.search),
}; };
}; };
......
...@@ -17,36 +17,39 @@ module.exports = { ...@@ -17,36 +17,39 @@ module.exports = {
PREFIX mmm-schema: <http://ldf.fi/mmm/schema/> PREFIX mmm-schema: <http://ldf.fi/mmm/schema/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX sdbm: <https://sdbm.library.upenn.edu/> PREFIX sdbm: <https://sdbm.library.upenn.edu/>
SELECT ?id ?label ?sdbm_id ?material ?author ?timespan ?place ?lat ?long ?language { SELECT * WHERE {
?id a frbroo:F4_Manifestation_Singleton . ?id a frbroo:F4_Manifestation_Singleton .
?id rdfs:label ?label . ?id rdfs:label ?label .
?id crm:P1_is_identified_by ?sdbm_id . ?id crm:P1_is_identified_by ?sdbm_id .
OPTIONAL { OPTIONAL {
?id crm:P45_consists_of ?material . ?id crm:P45_consists_of ?material__id .
BIND (?material__id AS ?material__label)
} }
?expression_creation frbroo:R18_created ?id . ?expression_creation frbroo:R18_created ?id .
OPTIONAL { OPTIONAL {
?expression_creation crm:P14_carried_out_by ?author_id . ?expression_creation crm:P14_carried_out_by ?author .
?author_id skos:prefLabel ?author . ?author skos:prefLabel ?author__label .
OPTIONAL { ?author_id mmm-schema:person_place/skos:prefLabel ?author_place . } OPTIONAL { ?author mmm-schema:person_place/skos:prefLabel ?author__place . }
} }
OPTIONAL { OPTIONAL {
?expression_creation crm:P4_has_time_span ?timespan_id . ?expression_creation crm:P4_has_time_span ?timespan .
?timespan_id rdfs:label ?timespan . ?timespan rdfs:label ?timespan__id .
?timespan crm:P79_beginning_is_qualified_by ?timespan_start . ?timespan crm:P79_beginning_is_qualified_by ?timespan__start .
?timespan crm:P80_end_is_qualified_by ?timespan_end . ?timespan crm:P80_end_is_qualified_by ?timespan__end .
BIND (?timespan__id AS ?timespan__label)
} }
OPTIONAL { OPTIONAL {
?expression_creation crm:P7_took_place_at ?place_id . ?expression_creation crm:P7_took_place_at ?creation_place .
?place_id skos:prefLabel ?place . ?creation_place skos:prefLabel ?creation_place__id .
OPTIONAL { OPTIONAL {
?place_id wgs84:lat ?lat . ?creation_place wgs84:lat ?creation_place__lat .
?place_id wgs84:long ?long . ?creation_place wgs84:long ?creation_place__long .
} }
} }
OPTIONAL { OPTIONAL {
?id crm:P128_carries ?expression . ?id crm:P128_carries ?expression .
?expression crm:P72_has_language ?language . ?expression crm:P72_has_language ?language__id .
BIND (?language__id AS ?language__label)
} }
} }
LIMIT 5000 LIMIT 5000
......
import _ from 'lodash';
/**
* @param {Array} objects A list of objects as SPARQL results.
* @returns {Array} The mapped object list.
* @description
* Map the SPARQL results as objects, and return a list where result rows with the same
* id are merged into one object.
*/
export const makeObjectList = (objects) => {
let objList = _.transform(objects, function(result, obj) {
if (!obj.id) {
return null;
}
//let orig = obj;
obj = makeObject(obj);
//obj = reviseObject(obj, orig);
mergeValueToList(result, obj);
});
return objList;
//return self.postProcess(objList);
};
/**
* @param {Object} obj A single SPARQL result row object.
* @returns {Object} The mapped object.
* @description
* Flatten the result object. Discard everything except values.
* Assume that each property of the obj has a value property with
* the actual value.
*/
const makeObject = (obj) => {
let o = new Object;
_.forIn(obj, function(value, key) {
// If the variable name contains "__", an object
// will be created as the value
// E.g. { place__id: '1' } -> { place: { id: '1' } }
_.set(o, key.replace(/__/g, '.'), value.value);
});
return o;
};
/**
* @param {Array} valueList A list to which the value should be added.
* @param {Object} value The value to add to the list.
* @returns {Array} The merged list.
* @description
* Add the given value to the given list, merging an object value to and
* object in the list if both have the same id attribute.
* A value already present in valueList is discarded.
*/
const mergeValueToList = (valueList, value) => {
let old;
if (_.isObject(value) && value.id) {
// Check if this object has been constructed earlier
old = _.findLast(valueList, function(e) {
return e.id === value.id;
});
if (old) {
// Merge this object to the object constructed earlier
mergeObjects(old, value);
}
} else {
// Check if this value is present in the list
old = _.findLast(valueList, function(e) {
return _.isEqual(e, value);
});
}
if (!old) {
// This is a distinct value
valueList.push(value);
}
return valueList;
};
/**
* @param {Object} first An object as returned by makeObject.
* @param {Object} second The object to merge with the first.
* @returns {Object} The merged object.
* @description
* Merges two objects.
*/
const mergeObjects = (first, second) => {
// Merge two objects into one object.
return _.mergeWith(first, second, merger);
};
const merger = (a, b) => {
if (_.isEqual(a, b)) {
return a;
}
if (a && !b) {
return a;
}
if (b && !a) {
return b;
}
if (_.isArray(a)) {
if (_.isArray(b)) {
b.forEach(function(bVal) {
return mergeValueToList(a, bVal);
});
return a;
}
return mergeValueToList(a, b);
}
if (_.isArray(b)) {
return mergeValueToList(b, a);
}
if (!(_.isObject(a) && _.isObject(b) && a.id === b.id)) {
return [a, b];
}
return mergeObjects(a, b);
};
...@@ -4,6 +4,7 @@ import { ...@@ -4,6 +4,7 @@ import {
mapAllResults, mapAllResults,
mergeAllResults mergeAllResults
} from './Mappers'; } from './Mappers';
import { makeObjectList } from './SparqlObjectMapper';
class SparqlSearchEngine { class SparqlSearchEngine {
...@@ -13,6 +14,7 @@ class SparqlSearchEngine { ...@@ -13,6 +14,7 @@ class SparqlSearchEngine {
if (data.results.bindings.length === 0) { if (data.results.bindings.length === 0) {
return []; return [];
} }
console.log(data.results.bindings)
return mapper ? mapper(data.results.bindings) : data.results.bindings; return mapper ? mapper(data.results.bindings) : data.results.bindings;
}); });
} }
...@@ -20,8 +22,8 @@ class SparqlSearchEngine { ...@@ -20,8 +22,8 @@ class SparqlSearchEngine {
getAllManuscripts(datasetId) { getAllManuscripts(datasetId) {
const { endpoint, getAllQuery } = datasetConfig[datasetId]; const { endpoint, getAllQuery } = datasetConfig[datasetId];
const sparqlApi = new SparqlApi({ endpoint }); const sparqlApi = new SparqlApi({ endpoint });
console.log(getAllQuery) //console.log(getAllQuery)
return this.doSearch(getAllQuery, sparqlApi, mapAllResults); return this.doSearch(getAllQuery, sparqlApi, makeObjectList);
} }
getFederatedManuscripts(datasets) { getFederatedManuscripts(datasets) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment