Skip to content
Snippets Groups Projects
Commit f596221d authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

Make reference a link

parent 9b41c3e5
No related branches found
No related tags found
No related merge requests found
<template> <template>
<ProseOl v-if="computedItems.length > 0"> <ProseOl v-if="computedItems.length > 0">
<ProseLi v-for="item in computedItems" :key="item.DOI" class="refArticle"> <ProseA
<div class="ref-title">{{ item.title }}.</div> v-for="item in computedItems"
<div class="ref-authors">{{ item.authorsString }}</div> :key="item.DOI"
<div>{{ item?.containerTitle }}</div> :href="item.href"
</ProseLi> target="blank"
>
<ProseLi class="refArticle">
<div class="ref-title">{{ item.title }}.</div>
<div class="ref-authors">{{ item.authorsString }}</div>
<div>{{ item?.containerTitle }}</div>
</ProseLi>
</ProseA>
</ProseOl> </ProseOl>
</template> </template>
...@@ -15,6 +22,7 @@ const props = defineProps<{ ...@@ -15,6 +22,7 @@ const props = defineProps<{
items: string[]; items: string[];
}>(); }>();
const doiBaseUrl = ref(new URL("https://doi.org/"));
const fetchedDoi = ref( const fetchedDoi = ref(
await Promise.all( await Promise.all(
props.items.map(async (doi) => { props.items.map(async (doi) => {
...@@ -53,6 +61,7 @@ const computedItems = computed(() => { ...@@ -53,6 +61,7 @@ const computedItems = computed(() => {
authorsString: toAuthorsString(doi?.message?.author ?? []), authorsString: toAuthorsString(doi?.message?.author ?? []),
containerTitle: cts?.length > 0 ? cts[0] : ct?.length > 0 ? ct[0] : "", containerTitle: cts?.length > 0 ? cts[0] : ct?.length > 0 ? ct[0] : "",
abstract, abstract,
href: getReferenceUrl(DOI),
}; };
} else { } else {
return {}; return {};
...@@ -67,6 +76,10 @@ function toAuthorsString(authors: Array<{ family: string; given: string }>) { ...@@ -67,6 +76,10 @@ function toAuthorsString(authors: Array<{ family: string; given: string }>) {
}) })
.join(", "); .join(", ");
} }
function getReferenceUrl(doi) {
return new URL(doi, doiBaseUrl.value).href;
}
</script> </script>
<style lang="ts"> <style lang="ts">
......
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