From e217d615e16a28a9e87f3ca3cf5eecb4f5224edb Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Mon, 18 Sep 2023 19:54:05 +0200 Subject: [PATCH] can set title and abstract on article --- components/content/ArticleDoi.vue | 9 ++++++--- components/content/ArticleDoiList.vue | 7 ++++--- content/2.defense-systems/abia.md | 9 ++++++--- content/2.defense-systems/rst_paris.md | 3 ++- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/components/content/ArticleDoi.vue b/components/content/ArticleDoi.vue index 4464434b..f453ffe4 100644 --- a/components/content/ArticleDoi.vue +++ b/components/content/ArticleDoi.vue @@ -2,6 +2,8 @@ const props = defineProps<{ doi: string; divider: boolean + title?: string + abstract?: string }>(); const { article } = useFetchArticle(props.doi) @@ -20,12 +22,13 @@ console.log(article) <v-card flat color="transparent" density="compact"> <v-card-item density="compact"> - <v-card-title><span class="text-subtitle-1 font-weight-bold">{{ article?.title ?? 'no title' }}</span></v-card-title> + <v-card-title><span class="text-subtitle-1 font-weight-bold">{{ article?.title ?? props?.title ?? props.doi + }}</span></v-card-title> <v-card-subtitle> {{ article?.subtitle ?? "no subtitle" }}</v-card-subtitle> <v-card-subtitle> {{ article?.containerTitle ?? "no containerTitle" }} ({{ article?.year }})</v-card-subtitle> </v-card-item> - <v-card-actions v-if="article?.abstract" density="compact"> + <v-card-actions v-if="article?.abstract ?? props.abstract" density="compact"> <v-btn size="x-small" variant="outlined" :append-icon="show ? 'mdi-chevron-up' : 'mdi-chevron-down'" @click.stop.prevent="show = !show">Abstract</v-btn> </v-card-actions> @@ -33,7 +36,7 @@ console.log(article) <v-expand-transition> <v-card v-show="show" flat color="transparent"> <v-card-text> - {{ article?.abstract }} + {{ article?.abstract ?? props.abstract }} </v-card-text> </v-card> diff --git a/components/content/ArticleDoiList.vue b/components/content/ArticleDoiList.vue index c436e9ab..9f9eef6a 100644 --- a/components/content/ArticleDoiList.vue +++ b/components/content/ArticleDoiList.vue @@ -1,11 +1,12 @@ <script setup lang="ts"> const props = defineProps<{ - items: string[]; + items: { doi: string, title?: string, divider: boolean, abstract?: string }[]; }>(); </script> <template> <v-list> - <ArticleDoi v-for="item in items" :key="item" :doi="item" /> - + <ArticleDoi v-for="item in props.items" :key="item.doi" :doi="item.doi" :title="item?.title" + :divider="item.divider" :abstract="item?.abstract" /> + </v-list> </template> \ No newline at end of file diff --git a/content/2.defense-systems/abia.md b/content/2.defense-systems/abia.md index bb5ea851..fd1b4e47 100644 --- a/content/2.defense-systems/abia.md +++ b/content/2.defense-systems/abia.md @@ -37,9 +37,12 @@ A system from *lactococcal plasmid* in *lactococci* has an anti-phage effect aga ::article-doi-list --- items: - - 10.1023/A:1002027321171 - - 10.1016/j.mib.2005.06.006 - - 10.1093/nar/gkac467 + - doi: 10.1023/A:1002027321171 + title: Bacteriophage defence systems in lactic acid bacteria + - doi: 10.1016/j.mib.2005.06.006 + abstract: | + Abortive infection (Abi) systems, also called phage exclusion, block phage multiplication and cause premature bacterial cell death upon phage infection. This decreases the number of progeny particles and limits their spread to other cells allowing the bacterial population to survive. Twenty Abi systems have been isolated in Lactococcus lactis, a bacterium used in cheese-making fermentation processes, where phage attacks are of economical importance. Recent insights in their expression and mode of action indicate that, behind diverse phenotypic and molecular effects, lactococcal Abis share common traits with the well-studied Escherichia coli systems Lit and Prr. Abis are widespread in bacteria, and recent analysis indicates that Abis might have additional roles other than conferring phage resistance. + - doi: 10.1093/nar/gkac467 --- :: diff --git a/content/2.defense-systems/rst_paris.md b/content/2.defense-systems/rst_paris.md index 3e49e7b8..acdd06f1 100644 --- a/content/2.defense-systems/rst_paris.md +++ b/content/2.defense-systems/rst_paris.md @@ -55,7 +55,8 @@ Subsystem Paris 2 with a system from *Escherichia coli (P4 loci)* in *Escherichi ::article-doi-list --- items: - - 10.1016/j.chom.2022.02.018 + - doi: 10.1016/j.chom.2022.02.018 + --- :: -- GitLab