Skip to content
Snippets Groups Projects
Commit ada332ed authored by Jean-Baptiste Pasquier's avatar Jean-Baptiste Pasquier
Browse files

fix: got the resource/container in js

parent 4bc2f321
No related branches found
Tags v1.1.2
No related merge requests found
Pipeline #17174 passed
...@@ -11,7 +11,16 @@ import("./utils.js").then((utils) => { ...@@ -11,7 +11,16 @@ import("./utils.js").then((utils) => {
import(/* @vite-ignore */ utils.coreVersion()).then((core) => { import(/* @vite-ignore */ utils.coreVersion()).then((core) => {
const expand = async function(resource, predicate) { const expand = async function(resource, predicate) {
return await resource[core.store.getExpandedPredicate(predicate, utils.CLIENT_CONTEXT)]; let r = '';
if(await resource["@type"] != "ldp:Container") {
r = await resource[await core.store.getExpandedPredicate(predicate, utils.CLIENT_CONTEXT)];
} else {
r = await resource.getResourceData()[predicate];
}
// if(!r) {
// console.warn(`No ${predicate} within ${resource["@id"]}`);
// }
return r;
} }
// Custom widget for producer description, original contains some unsafe html // Custom widget for producer description, original contains some unsafe html
customElements.define( customElements.define(
...@@ -154,6 +163,7 @@ import("./utils.js").then((utils) => { ...@@ -154,6 +163,7 @@ import("./utils.js").then((utils) => {
this.element.innerHTML += ` this.element.innerHTML += `
<div class="row">`; <div class="row">`;
for(let social of await expand(this.resource, "ldp:contains")) { for(let social of await expand(this.resource, "ldp:contains")) {
social = await core.store.getData(social["@id"], utils.CLIENT_CONTEXT);
let app = (await expand(social, "dfc-b:name")).replace("_phone", ""); let app = (await expand(social, "dfc-b:name")).replace("_phone", "");
let link = await expand(social, "dfc-b:URL"); let link = await expand(social, "dfc-b:URL");
if (!/^https?:\/\//i.test(link)) { if (!/^https?:\/\//i.test(link)) {
...@@ -223,30 +233,31 @@ import("./utils.js").then((utils) => { ...@@ -223,30 +233,31 @@ import("./utils.js").then((utils) => {
addresses = []; addresses = [];
producers.then(async (p) => { producers.then(async (p) => {
for (let producer of await expand(p, "ldp:contains")) { for (let producer of await expand(p, "ldp:contains")) {
let producerName = await expand(producer['@id'], "dfc-b:name"); producer = await core.store.getData(producer["@id"], utils.CLIENT_CONTEXT);
let producerName = await expand(producer, "dfc-b:name");
if (producerName) { if (producerName) {
producerNames.push(producerName); producerNames.push(producerName);
} }
let producerCategories = await expand(producer['@id'], "ofn:Produce_category"); let producerCategories = await expand(producer, "ofn:Produce_category");
if (producerCategories) { if (producerCategories) {
productCategories = productCategories =
productCategories.concat(producerCategories); productCategories.concat(producerCategories);
} }
let producerAddress = await expand(producer['@id'], "dfc-b:hasAddress"); let producerAddress = await expand(producer, "dfc-b:hasAddress");
if (producerAddress) { if (producerAddress) {
let producerStreet = await expand(producer['@id'], "dfc-b:hasStreet"); let producerStreet = await expand(producer, "dfc-b:hasStreet");
if (producerStreet) { if (producerStreet) {
addresses.push(producerStreet); addresses.push(producerStreet);
} }
let producerPostalCode = await expand(producer['@id'], "dfc-b:hasPostalCode"); let producerPostalCode = await expand(producer, "dfc-b:hasPostalCode");
if (producerStreet) { if (producerStreet) {
addresses.push(producerPostalCode); addresses.push(producerPostalCode);
} }
let producerCity = await expand(producer['@id'], "dfc-b:hasCity"); let producerCity = await expand(producer, "dfc-b:hasCity");
if (producerStreet) { if (producerStreet) {
addresses.push(producerCity); addresses.push(producerCity);
} }
let producerCountry = await expand(producer['@id'], "dfc-b:hasCountry"); let producerCountry = await expand(producer, "dfc-b:hasCountry");
if (producerStreet) { if (producerStreet) {
addresses.push(producerCountry); addresses.push(producerCountry);
} }
...@@ -482,11 +493,12 @@ import("./utils.js").then((utils) => { ...@@ -482,11 +493,12 @@ import("./utils.js").then((utils) => {
productCategories = []; productCategories = [];
products.then(async (p) => { products.then(async (p) => {
for (let product of await expand(p, "ldp:contains")) { for (let product of await expand(p, "ldp:contains")) {
let productName = await expand(product['@id'], "dfc-b:name"); product = await core.store.getData(product["@id"], utils.CLIENT_CONTEXT);
let productName = await expand(product, "dfc-b:name");
if (productName) { if (productName) {
productNames.push(productName); productNames.push(productName);
} }
let productCategory = await expand(product['@id'], "ofn:Type"); let productCategory = await expand(product, "ofn:Type");
if (productCategory) { if (productCategory) {
productCategories.push(productCategory); productCategories.push(productCategory);
} }
......
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