Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Wiki
Manage
Activity
Members
Labels
Plan
Issues
53
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MDM Lab
Wiki
Commits
2c4edf56
Commit
2c4edf56
authored
2 years ago
by
Remi PLANEL
Browse files
Options
Downloads
Patches
Plain Diff
Add ReferenceList components
parent
69bdd31c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
components/content/ReferencesList.vue
+83
-0
83 additions, 0 deletions
components/content/ReferencesList.vue
with
83 additions
and
0 deletions
components/content/ReferencesList.vue
0 → 100644
+
83
−
0
View file @
2c4edf56
<
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
>
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment