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

Add ReferenceList components

parent 69bdd31c
No related branches found
No related tags found
No related merge requests found
<template>
<ProseOl v-if="computedItems.length > 0">
<ProseLi v-for="item in computedItems" :key="item.DOI" class="refArticle">
<div class="ref-title">{{ item.title }}.</div>
<div class="ref-authors">{{ item.authorsString }}</div>
<div>{{ item?.containerTitle }}</div>
</ProseLi>
</ProseOl>
</template>
<script setup lang="ts">
import { computed, ref } from "vue";
import { useFetch as useFetchVueUse } from "@vueuse/core";
const props = defineProps<{
items: string[];
}>();
const fetchedDoi = ref(
await Promise.all(
props.items.map(async (doi) => {
const url = new URL(`/works/${doi}`, " https://api.crossref.org/").href;
const { data, error } = await useFetchVueUse<{
message: {
DOI: string;
issue: number;
title: string;
author: Array<{ family: string; given: string }>;
"container-title-short": string;
"container-title": string;
abstract: string;
};
}>(url)
.get()
.json();
return data.value;
})
)
);
const computedItems = computed(() => {
return fetchedDoi.value.map((doi) => {
if (doi) {
const {
DOI,
title,
"container-title-short": cts,
"container-title": ct,
abstract,
...rest
} = doi.message;
return {
DOI,
title: title[0],
authorsString: toAuthorsString(doi?.message?.author ?? []),
containerTitle: cts?.length > 0 ? cts[0] : ct?.length > 0 ? ct[0] : "",
abstract,
};
} else {
return {};
}
});
});
function toAuthorsString(authors: Array<{ family: string; given: string }>) {
return authors
.map((curr) => {
return `${curr.family} ${curr.given}`;
})
.join(", ");
}
</script>
<style lang="ts">
css({
'.refArticle': {
'margin-top': '{space.4}',
},
'.ref-title': {
fontWeight: '{fontWeight.bold}',
},
'.ref-authors': {
fontSize: '{fontSize.sm}',
}})
</style>
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