@paris-ias/list 1.0.111 → 1.0.113
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/module.json +1 -1
- package/dist/runtime/components/events/DenseItem.vue +24 -15
- package/dist/runtime/components/fellowships/DenseItem.vue +1 -1
- package/dist/runtime/components/list/atoms/SearchInput.vue +4 -2
- package/dist/runtime/components/list/molecules/Pagination.vue +2 -0
- package/dist/runtime/components/list/organisms/List.vue +16 -2
- package/dist/runtime/components/list/views/Dense.vue +0 -1
- package/dist/runtime/components/news/DenseItem.vue +24 -23
- package/dist/runtime/components/people/Badges.vue +74 -0
- package/dist/runtime/components/people/DenseItem.vue +11 -8
- package/dist/runtime/components/people/RowsItem.vue +2 -2
- package/dist/runtime/components/people/View.vue +1 -1
- package/dist/runtime/components/publications/DenseItem.vue +14 -7
- package/dist/runtime/graphql/list/publications.gql +2 -0
- package/dist/runtime/runtime/components/actions/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/actions/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/actions/View.vue +20 -0
- package/dist/runtime/runtime/components/affiliations/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/affiliations/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/affiliations/View.vue +20 -0
- package/dist/runtime/runtime/components/apps/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/apps/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/apps/View.vue +20 -0
- package/dist/runtime/runtime/components/disciplines/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/disciplines/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/disciplines/View.vue +20 -0
- package/dist/runtime/runtime/components/events/Badges.vue +73 -0
- package/dist/runtime/runtime/components/events/DateTimePlace.vue +77 -0
- package/dist/runtime/runtime/components/events/DenseItem.vue +60 -0
- package/dist/runtime/runtime/components/events/ExpandedItem.vue +9 -0
- package/dist/runtime/runtime/components/events/RegisterModal.vue +50 -0
- package/dist/runtime/runtime/components/events/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/events/RowsItem.vue +118 -0
- package/dist/runtime/runtime/components/events/SlidingItem.vue +63 -0
- package/dist/runtime/runtime/components/events/View.vue +333 -0
- package/dist/runtime/runtime/components/fellowships/Badges.vue +47 -0
- package/dist/runtime/runtime/components/fellowships/DenseItem.vue +42 -0
- package/dist/runtime/runtime/components/fellowships/ExpandedItem.vue +7 -0
- package/dist/runtime/runtime/components/fellowships/RegisterModal.vue +41 -0
- package/dist/runtime/runtime/components/fellowships/RowsItem.vue +58 -0
- package/dist/runtime/runtime/components/fellowships/View.vue +203 -0
- package/dist/runtime/runtime/components/files/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/files/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/files/View.vue +20 -0
- package/dist/runtime/runtime/components/list/atoms/FiltersMenu.vue +44 -0
- package/dist/runtime/runtime/components/list/atoms/ResetButton.vue +33 -0
- package/dist/runtime/runtime/components/list/atoms/ResultsList.vue +27 -0
- package/dist/runtime/runtime/components/list/atoms/SearchInput.vue +59 -0
- package/dist/runtime/runtime/components/list/atoms/SearchItem.vue +65 -0
- package/dist/runtime/runtime/components/list/atoms/SearchString.vue +160 -0
- package/dist/runtime/runtime/components/list/atoms/SortMenu.vue +80 -0
- package/dist/runtime/runtime/components/list/atoms/ViewMenu.vue +63 -0
- package/dist/runtime/runtime/components/list/atoms/itemsPerPage.vue +33 -0
- package/dist/runtime/runtime/components/list/inputs/AutoComplete.vue +24 -0
- package/dist/runtime/runtime/components/list/inputs/BooleanSwitch.vue +20 -0
- package/dist/runtime/runtime/components/list/inputs/Checkbox.vue +20 -0
- package/dist/runtime/runtime/components/list/inputs/Select.vue +28 -0
- package/dist/runtime/runtime/components/list/molecules/Filters.vue +98 -0
- package/dist/runtime/runtime/components/list/molecules/GlobalSearchInput.vue +131 -0
- package/dist/runtime/runtime/components/list/molecules/Header.vue +51 -0
- package/dist/runtime/runtime/components/list/molecules/Pagination.vue +194 -0
- package/dist/runtime/runtime/components/list/molecules/ResultsContainer.vue +78 -0
- package/dist/runtime/runtime/components/list/organisms/List.vue +110 -0
- package/dist/runtime/runtime/components/list/organisms/Results.vue +72 -0
- package/dist/runtime/runtime/components/list/organisms/Slider.vue +180 -0
- package/dist/runtime/runtime/components/list/views/Dense.vue +12 -0
- package/dist/runtime/runtime/components/list/views/Expanded.vue +10 -0
- package/dist/runtime/runtime/components/list/views/Grid.vue +13 -0
- package/dist/runtime/runtime/components/list/views/Rows.vue +12 -0
- package/dist/runtime/runtime/components/list/views/Slider.vue +147 -0
- package/dist/runtime/runtime/components/list/views/Table.vue +13 -0
- package/dist/runtime/runtime/components/mailing/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/mailing/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/mailing/View.vue +20 -0
- package/dist/runtime/runtime/components/misc/atoms/DateStamp.vue +101 -0
- package/dist/runtime/runtime/components/misc/atoms/ImageContainer.vue +127 -0
- package/dist/runtime/runtime/components/misc/atoms/ShareMenu.vue +61 -0
- package/dist/runtime/runtime/components/misc/atoms/Socials.vue +120 -0
- package/dist/runtime/runtime/components/misc/molecules/ChipContainer.vue +31 -0
- package/dist/runtime/runtime/components/misc/molecules/Related.vue +28 -0
- package/dist/runtime/runtime/components/misc/molecules/RelatedItems.vue +27 -0
- package/dist/runtime/runtime/components/misc/molecules/SearchItem.vue +26 -0
- package/dist/runtime/runtime/components/news/DenseItem.vue +73 -0
- package/dist/runtime/runtime/components/news/ExpandedItem.vue +145 -0
- package/dist/runtime/runtime/components/news/Header.vue +7 -0
- package/dist/runtime/runtime/components/news/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/news/RowsItem.vue +182 -0
- package/dist/runtime/runtime/components/news/View.vue +174 -0
- package/dist/runtime/runtime/components/people/DenseItem.vue +60 -0
- package/dist/runtime/runtime/components/people/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/people/RelatedItem.vue +41 -0
- package/dist/runtime/runtime/components/people/RowsItem.vue +93 -0
- package/dist/runtime/runtime/components/people/View.vue +172 -0
- package/dist/runtime/runtime/components/projects/DenseItem.vue +77 -0
- package/dist/runtime/runtime/components/projects/ExpandedItem.vue +12 -0
- package/dist/runtime/runtime/components/projects/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/projects/RowsItem.vue +103 -0
- package/dist/runtime/runtime/components/projects/View.vue +130 -0
- package/dist/runtime/runtime/components/publications/DenseItem.vue +89 -0
- package/dist/runtime/runtime/components/publications/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/publications/RowsItem.vue +105 -0
- package/dist/runtime/runtime/components/publications/View.vue +132 -0
- package/dist/runtime/runtime/components/tags/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/tags/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/tags/View.vue +20 -0
- package/dist/runtime/runtime/components/users/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/users/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/users/View.vue +20 -0
- package/dist/runtime/runtime/composables/useFetchItem.d.ts +6 -0
- package/dist/runtime/runtime/composables/useFetchItem.js +49 -0
- package/dist/runtime/runtime/composables/useIcons.d.ts +1 -0
- package/dist/runtime/runtime/composables/useIcons.js +30 -0
- package/dist/runtime/runtime/composables/useUtils.d.ts +12 -0
- package/dist/runtime/runtime/composables/useUtils.js +48 -0
- package/dist/runtime/runtime/graphql/buildFiltersValues.gql +35 -0
- package/dist/runtime/runtime/graphql/item/action.gql +22 -0
- package/dist/runtime/runtime/graphql/item/affiliations.gql +37 -0
- package/dist/runtime/runtime/graphql/item/apps.gql +34 -0
- package/dist/runtime/runtime/graphql/item/disciplines.gql +17 -0
- package/dist/runtime/runtime/graphql/item/events.gql +120 -0
- package/dist/runtime/runtime/graphql/item/fellowships.gql +164 -0
- package/dist/runtime/runtime/graphql/item/files.gql +25 -0
- package/dist/runtime/runtime/graphql/item/mailing.gql +10 -0
- package/dist/runtime/runtime/graphql/item/news.gql +129 -0
- package/dist/runtime/runtime/graphql/item/people.gql +174 -0
- package/dist/runtime/runtime/graphql/item/projects.gql +171 -0
- package/dist/runtime/runtime/graphql/item/publications.gql +169 -0
- package/dist/runtime/runtime/graphql/item/tags.gql +13 -0
- package/dist/runtime/runtime/graphql/item/users.gql +14 -0
- package/dist/runtime/runtime/graphql/list/action.gql +31 -0
- package/dist/runtime/runtime/graphql/list/affiliations.gql +42 -0
- package/dist/runtime/runtime/graphql/list/apps.gql +42 -0
- package/dist/runtime/runtime/graphql/list/disciplines.gql +22 -0
- package/dist/runtime/runtime/graphql/list/events.gql +44 -0
- package/dist/runtime/runtime/graphql/list/fellowships.gql +53 -0
- package/dist/runtime/runtime/graphql/list/files.gql +37 -0
- package/dist/runtime/runtime/graphql/list/mailing.gql +22 -0
- package/dist/runtime/runtime/graphql/list/news.gql +40 -0
- package/dist/runtime/runtime/graphql/list/people.gql +50 -0
- package/dist/runtime/runtime/graphql/list/projects.gql +37 -0
- package/dist/runtime/runtime/graphql/list/publications.gql +38 -0
- package/dist/runtime/runtime/graphql/list/search.gql +161 -0
- package/dist/runtime/runtime/graphql/list/tags.gql +22 -0
- package/dist/runtime/runtime/graphql/list/users.gql +38 -0
- package/dist/runtime/runtime/graphql/login.gql +0 -0
- package/dist/runtime/runtime/plugins/pinia.d.ts +2 -0
- package/dist/runtime/runtime/plugins/pinia.js +134 -0
- package/dist/runtime/runtime/plugins/vuetify.d.ts +2 -0
- package/dist/runtime/runtime/plugins/vuetify.js +21 -0
- package/dist/runtime/runtime/public/default.png +0 -0
- package/dist/runtime/runtime/public/filters.json +72 -0
- package/dist/runtime/runtime/server/tsconfig.json +3 -0
- package/dist/runtime/runtime/stores/factory.d.ts +25 -0
- package/dist/runtime/runtime/stores/factory.js +19 -0
- package/dist/runtime/runtime/stores/root.d.ts +60 -0
- package/dist/runtime/runtime/stores/root.js +315 -0
- package/dist/runtime/runtime/translations/en.json +350 -0
- package/dist/runtime/runtime/translations/fr.json +349 -0
- package/dist/runtime/runtime/types/imports.d.ts +13 -0
- package/dist/runtime/runtime/types/stores.d.ts +11 -0
- package/dist/runtime/translations/en.json +1 -1
- package/package.json +2 -2
- /package/dist/runtime/{components → runtime/components}/people/GroupBadges.vue +0 -0
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="">
|
|
3
|
+
<v-row>
|
|
4
|
+
<v-col v-if="mdAndUp" cols="12" md="3">
|
|
5
|
+
<MiscAtomsImageContainer
|
|
6
|
+
cover
|
|
7
|
+
:src="
|
|
8
|
+
item && item.image && item.image.url ? item.image : '/default.png'
|
|
9
|
+
"
|
|
10
|
+
:ratio="1 / 1"
|
|
11
|
+
:loading="loading"
|
|
12
|
+
/>
|
|
13
|
+
</v-col>
|
|
14
|
+
|
|
15
|
+
<v-col
|
|
16
|
+
cols="12"
|
|
17
|
+
md="9"
|
|
18
|
+
class="d-flex flex-sm-column flex-md-column justify-md-end flex-wrap"
|
|
19
|
+
>
|
|
20
|
+
<v-skeleton-loader
|
|
21
|
+
v-if="loading"
|
|
22
|
+
width="100%"
|
|
23
|
+
:type="
|
|
24
|
+
[
|
|
25
|
+
'subtitle, heading@2, text, button',
|
|
26
|
+
'subtitle, heading@2, text, button',
|
|
27
|
+
'subtitle, heading@2, text, button',
|
|
28
|
+
'subtitle, heading@2, text, button',
|
|
29
|
+
'subtitle, heading@2, text, button',
|
|
30
|
+
'subtitle, heading@2, text, button',
|
|
31
|
+
][['xs', 'sm', 'md', 'lg', 'xl', 'xxl'].indexOf(name || 'md')]
|
|
32
|
+
"
|
|
33
|
+
/>
|
|
34
|
+
|
|
35
|
+
<template v-else>
|
|
36
|
+
<div class="d-flex align-center flex-column">
|
|
37
|
+
<div class="d-flex text-center text-wrap text-h3 text-black">
|
|
38
|
+
{{ item.name }}
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<v-divider width="154px" class="mb-1 mt-6" />
|
|
42
|
+
<v-divider width="154px" />
|
|
43
|
+
|
|
44
|
+
<div
|
|
45
|
+
v-if="item && item.category"
|
|
46
|
+
class="d-flex text-center text-wrap text-h5 font-weight-black mt-6"
|
|
47
|
+
>
|
|
48
|
+
{{ $t("list.filters.events.category." + item.category) }}
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
<MDC
|
|
52
|
+
v-if="item.subtitle"
|
|
53
|
+
class="d-flex text-center text-wrap text-h5 text-black mt-4"
|
|
54
|
+
:value="item.subtitle"
|
|
55
|
+
/>
|
|
56
|
+
|
|
57
|
+
<div class="d-flex text-center text-wrap text-h5 text-black mt-4">
|
|
58
|
+
<!-- <EventsBadges :item="item" /> -->
|
|
59
|
+
</div>
|
|
60
|
+
|
|
61
|
+
<v-divider width="154px" class="mb-1 mt-6" />
|
|
62
|
+
<v-divider width="154px" />
|
|
63
|
+
</div>
|
|
64
|
+
</template>
|
|
65
|
+
</v-col>
|
|
66
|
+
</v-row>
|
|
67
|
+
|
|
68
|
+
<v-row class="mt-md-3 mt-lg-10 mt-xl-12">
|
|
69
|
+
<v-col v-if="mdAndUp" class="d-flex flex-column" cols="12" md="3">
|
|
70
|
+
<v-skeleton-loader
|
|
71
|
+
v-if="loading"
|
|
72
|
+
height="100%"
|
|
73
|
+
:type="
|
|
74
|
+
[
|
|
75
|
+
'',
|
|
76
|
+
'',
|
|
77
|
+
'image, image, heading, list-item@2',
|
|
78
|
+
'image, image, heading, list-item@2',
|
|
79
|
+
'image, image, heading, list-item@2',
|
|
80
|
+
'image, image, heading, list-item@2',
|
|
81
|
+
][['xs', 'sm', 'md', 'lg', 'xl', 'xxl'].indexOf(name || 'md')]
|
|
82
|
+
"
|
|
83
|
+
/>
|
|
84
|
+
|
|
85
|
+
<template v-else>
|
|
86
|
+
<div class="bg-grey-lighten-4">
|
|
87
|
+
<div class="ma-md-4 ma-lg-8">
|
|
88
|
+
<EventsDateTimePlace :item="item" />
|
|
89
|
+
<template v-if="bookingState === 'OPEN'">
|
|
90
|
+
<div class="mt-md-4">
|
|
91
|
+
<!-- TODO: bind -->
|
|
92
|
+
{{ $t("register-until-0", [getLocalizedDate(item.stop)]) }}
|
|
93
|
+
</div>
|
|
94
|
+
<div class="mt-md-4">
|
|
95
|
+
{{ $t("inscription-gratuite-et-obligatoire") }}
|
|
96
|
+
</div>
|
|
97
|
+
</template>
|
|
98
|
+
</div>
|
|
99
|
+
</div>
|
|
100
|
+
|
|
101
|
+
<div class="mt-md-4 mt-lg-6 mt-xl-8 d-flex">
|
|
102
|
+
<EventsRegisterModal
|
|
103
|
+
v-if="!loading && bookingState === 'OPEN'"
|
|
104
|
+
:item="item"
|
|
105
|
+
>
|
|
106
|
+
<template #activator="activatorProps">
|
|
107
|
+
<v-btn
|
|
108
|
+
color="grey-lighten-3"
|
|
109
|
+
v-bind="activatorProps"
|
|
110
|
+
flat
|
|
111
|
+
tile
|
|
112
|
+
block
|
|
113
|
+
class="my-2"
|
|
114
|
+
style="height: auto"
|
|
115
|
+
>
|
|
116
|
+
<template #append>
|
|
117
|
+
<v-icon class="text-green" size="x-large">
|
|
118
|
+
mdi-circle-medium
|
|
119
|
+
</v-icon>
|
|
120
|
+
</template>
|
|
121
|
+
{{ $t("inscription-ouverte") }}
|
|
122
|
+
</v-btn>
|
|
123
|
+
</template>
|
|
124
|
+
</EventsRegisterModal>
|
|
125
|
+
</div>
|
|
126
|
+
|
|
127
|
+
<v-sheet class="mt-md-0 mt-lg-2 mt-xl-4">
|
|
128
|
+
<v-list v-if="!loading && item.files && item.files.length">
|
|
129
|
+
<v-list-subheader class="text-overline font-weight-bold">
|
|
130
|
+
{{ $t("document") }}
|
|
131
|
+
</v-list-subheader>
|
|
132
|
+
|
|
133
|
+
<v-list-item
|
|
134
|
+
v-for="(file, i) in item.files"
|
|
135
|
+
:key="i"
|
|
136
|
+
:value="file"
|
|
137
|
+
>
|
|
138
|
+
<template #prepend>
|
|
139
|
+
<v-icon v-if="mdAndUp" :icon="getFileIcon(file.url)" />
|
|
140
|
+
</template>
|
|
141
|
+
<v-list-item-title class="text-wrap" v-text="file.name" />
|
|
142
|
+
</v-list-item>
|
|
143
|
+
</v-list>
|
|
144
|
+
</v-sheet>
|
|
145
|
+
</template>
|
|
146
|
+
</v-col>
|
|
147
|
+
|
|
148
|
+
<v-col v-if="sm" class="d-flex flex-row" cols="12">
|
|
149
|
+
<v-row class="ml-sm-1">
|
|
150
|
+
<v-col cols="6">
|
|
151
|
+
<MiscAtomsImageContainer
|
|
152
|
+
cover
|
|
153
|
+
:src="item.image.url ? item.image : '/default.png'"
|
|
154
|
+
:ratio="1 / 1"
|
|
155
|
+
:loading="loading"
|
|
156
|
+
/>
|
|
157
|
+
</v-col>
|
|
158
|
+
<v-col cols="6">
|
|
159
|
+
<v-skeleton-loader
|
|
160
|
+
v-if="loading"
|
|
161
|
+
type="heading, subtitle, heading, subtitle, ossein, button"
|
|
162
|
+
/>
|
|
163
|
+
<EventsDateTimePlace v-else :item="item" />
|
|
164
|
+
</v-col>
|
|
165
|
+
</v-row>
|
|
166
|
+
</v-col>
|
|
167
|
+
|
|
168
|
+
<v-col v-if="xs" class="ml-2" cols="12">
|
|
169
|
+
<MiscAtomsImageContainer
|
|
170
|
+
cover
|
|
171
|
+
:src="item.image.url ? item.image : '/default.png'"
|
|
172
|
+
:ratio="1 / 1"
|
|
173
|
+
:loading="loading"
|
|
174
|
+
/>
|
|
175
|
+
</v-col>
|
|
176
|
+
|
|
177
|
+
<v-col v-if="xs" class="ml-2" cols="12">
|
|
178
|
+
<v-skeleton-loader
|
|
179
|
+
v-if="loading"
|
|
180
|
+
type="heading, subtitle, heading, subtitle, ossein, button"
|
|
181
|
+
/>
|
|
182
|
+
<EventsDateTimePlace v-else :item="item" />
|
|
183
|
+
</v-col>
|
|
184
|
+
|
|
185
|
+
<v-col cols="12" md="9" class="px-0">
|
|
186
|
+
<v-skeleton-loader
|
|
187
|
+
v-if="loading"
|
|
188
|
+
:type="
|
|
189
|
+
[
|
|
190
|
+
'avatar, text, ossein, avatar, text, ossein, avatar, text',
|
|
191
|
+
'avatar, text, ossein, avatar, text, ossein, avatar, text',
|
|
192
|
+
'button, button, ossein, text@40',
|
|
193
|
+
'button, button, ossein, text@50',
|
|
194
|
+
'button, button, ossein, text@50',
|
|
195
|
+
'button, button, ossein, text@50',
|
|
196
|
+
][['xs', 'sm', 'md', 'lg', 'xl', 'xxl'].indexOf(name || 'md')]
|
|
197
|
+
"
|
|
198
|
+
/>
|
|
199
|
+
|
|
200
|
+
<template v-else>
|
|
201
|
+
<div class="ml-md-8 ml-lg-10 ml-xl-12">
|
|
202
|
+
<v-expansion-panels
|
|
203
|
+
v-model="panel"
|
|
204
|
+
outlined
|
|
205
|
+
flat
|
|
206
|
+
eager
|
|
207
|
+
ripple
|
|
208
|
+
variant="accordion"
|
|
209
|
+
class="py-8"
|
|
210
|
+
>
|
|
211
|
+
<v-expansion-panel
|
|
212
|
+
v-if="item.description"
|
|
213
|
+
:value="panel[0]"
|
|
214
|
+
class="border-thin text-black"
|
|
215
|
+
:color="key === accordeon ? 'light-grey' : 'white'"
|
|
216
|
+
>
|
|
217
|
+
<v-expansion-panel-title
|
|
218
|
+
collapse-icon="mdi-minus"
|
|
219
|
+
expand-icon="mdi-plus"
|
|
220
|
+
class="text-h6"
|
|
221
|
+
:class="{ 'font-weight-black': key === accordeon }"
|
|
222
|
+
>
|
|
223
|
+
{{ $t("presentation") }}
|
|
224
|
+
</v-expansion-panel-title>
|
|
225
|
+
<v-expansion-panel-text
|
|
226
|
+
class="py-2"
|
|
227
|
+
style="white-space: pre; text-wrap: auto"
|
|
228
|
+
>
|
|
229
|
+
<MDC v-if="item.description" :value="item.description" />
|
|
230
|
+
</v-expansion-panel-text>
|
|
231
|
+
</v-expansion-panel>
|
|
232
|
+
|
|
233
|
+
<v-expansion-panel
|
|
234
|
+
v-if="item.program"
|
|
235
|
+
class="border-thin text-black"
|
|
236
|
+
:color="key === accordeon ? 'light-grey' : 'white'"
|
|
237
|
+
>
|
|
238
|
+
<v-expansion-panel-title
|
|
239
|
+
collapse-icon="mdi-minus"
|
|
240
|
+
expand-icon="mdi-plus"
|
|
241
|
+
class="text-h6"
|
|
242
|
+
:class="{ 'font-weight-black': key === accordeon }"
|
|
243
|
+
>
|
|
244
|
+
{{ $t("programme") }}
|
|
245
|
+
</v-expansion-panel-title>
|
|
246
|
+
<v-expansion-panel-text>
|
|
247
|
+
<MDC v-if="item.program" :value="item.program" />
|
|
248
|
+
|
|
249
|
+
>
|
|
250
|
+
</v-expansion-panel-text>
|
|
251
|
+
</v-expansion-panel>
|
|
252
|
+
|
|
253
|
+
<v-expansion-panel
|
|
254
|
+
v-if="item.details"
|
|
255
|
+
class="border-thin text-black"
|
|
256
|
+
:color="key === accordeon ? 'light-grey' : 'white'"
|
|
257
|
+
>
|
|
258
|
+
<v-expansion-panel-title
|
|
259
|
+
collapse-icon="mdi-minus"
|
|
260
|
+
expand-icon="mdi-plus"
|
|
261
|
+
class="text-h6"
|
|
262
|
+
:class="{ 'font-weight-black': key === accordeon }"
|
|
263
|
+
>
|
|
264
|
+
{{ $t("details-0") }}
|
|
265
|
+
</v-expansion-panel-title>
|
|
266
|
+
<v-expansion-panel-text
|
|
267
|
+
class="border-thin text-black"
|
|
268
|
+
:color="key === accordeon ? 'light-grey' : 'white'"
|
|
269
|
+
>
|
|
270
|
+
<MDC v-if="item.details" :value="item.details" />
|
|
271
|
+
</v-expansion-panel-text>
|
|
272
|
+
</v-expansion-panel>
|
|
273
|
+
</v-expansion-panels>
|
|
274
|
+
</div>
|
|
275
|
+
</template>
|
|
276
|
+
</v-col>
|
|
277
|
+
</v-row>
|
|
278
|
+
|
|
279
|
+
<!-- DIVIDERS -->
|
|
280
|
+
<v-responsive class="mx-auto my-9" width="120">
|
|
281
|
+
<v-divider class="mb-1" />
|
|
282
|
+
<v-divider />
|
|
283
|
+
</v-responsive>
|
|
284
|
+
<MiscAtomsSlidingCarousel
|
|
285
|
+
v-if="!loading && item && item.gallery && item.gallery.length"
|
|
286
|
+
ref="MiscAtomsImage"
|
|
287
|
+
key="MiscAtomsImage"
|
|
288
|
+
:items="item.gallery"
|
|
289
|
+
type="MiscAtomsImage"
|
|
290
|
+
:loading="false"
|
|
291
|
+
:more="false"
|
|
292
|
+
>
|
|
293
|
+
<div :class="mdAndUp ? 'text-h5' : 'text-h6'">
|
|
294
|
+
{{ $t("gallery") }}
|
|
295
|
+
</div>
|
|
296
|
+
</MiscAtomsSlidingCarousel>
|
|
297
|
+
<v-responsive class="mx-auto my-9" width="120">
|
|
298
|
+
<v-divider class="mb-1" />
|
|
299
|
+
<v-divider />
|
|
300
|
+
</v-responsive>
|
|
301
|
+
<MiscMoleculesRelated
|
|
302
|
+
v-if="!loading && item && item.related"
|
|
303
|
+
:related="item.related"
|
|
304
|
+
/>
|
|
305
|
+
</div>
|
|
306
|
+
</template>
|
|
307
|
+
|
|
308
|
+
<script setup>
|
|
309
|
+
import { useDisplay } from "vuetify";
|
|
310
|
+
import { useRouter } from "vue-router";
|
|
311
|
+
import getFileIcon from "../../composables/useIcons";
|
|
312
|
+
import { getLocalizedDate } from "../../composables/useUtils";
|
|
313
|
+
import { ref } from "#imports";
|
|
314
|
+
const { name, mdAndUp, sm, xs } = useDisplay();
|
|
315
|
+
const router = useRouter();
|
|
316
|
+
const props = defineProps({
|
|
317
|
+
item: {
|
|
318
|
+
type: Object,
|
|
319
|
+
required: true
|
|
320
|
+
},
|
|
321
|
+
loading: {
|
|
322
|
+
type: Boolean,
|
|
323
|
+
required: false,
|
|
324
|
+
default: false
|
|
325
|
+
}
|
|
326
|
+
});
|
|
327
|
+
const panel = ref(["presentation"]);
|
|
328
|
+
function redirectToMap(long, lat) {
|
|
329
|
+
router.push(
|
|
330
|
+
`https://www.openstreetmap.org/?mlat=${lat}&mlon=${long}#map=19/${lat}/${long}`
|
|
331
|
+
);
|
|
332
|
+
}
|
|
333
|
+
</script>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div v-if="registrationStatus === 0" class="text-overline">
|
|
3
|
+
{{
|
|
4
|
+
$t("opening-applications-on-0", [getLocalizedDate(item.applicationStart)])
|
|
5
|
+
}}
|
|
6
|
+
</div>
|
|
7
|
+
|
|
8
|
+
<FellowshipsRegisterModal
|
|
9
|
+
v-else-if="registrationStatus === 1"
|
|
10
|
+
:item="item"
|
|
11
|
+
:view="view"
|
|
12
|
+
class="mr-2"
|
|
13
|
+
/>
|
|
14
|
+
|
|
15
|
+
<div v-else-if="registrationStatus === 2" class="my-2 text-overline">
|
|
16
|
+
<v-icon class="text-grey" size="x-large"> mdi-circle-medium </v-icon>
|
|
17
|
+
{{
|
|
18
|
+
$t("applications-closed-since-0", [
|
|
19
|
+
getLocalizedDate(item.applicationStop),
|
|
20
|
+
])
|
|
21
|
+
}}
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
|
|
25
|
+
<script setup>
|
|
26
|
+
import { getLocalizedDate } from "../../composables/useUtils";
|
|
27
|
+
import { computed } from "#imports";
|
|
28
|
+
const props = defineProps({
|
|
29
|
+
item: { type: Object, required: true },
|
|
30
|
+
view: { type: Boolean, required: false, default: false }
|
|
31
|
+
});
|
|
32
|
+
const registrationStatus = computed(() => {
|
|
33
|
+
const currentDate = /* @__PURE__ */ new Date();
|
|
34
|
+
const startDate = new Date(props.item.applicationStart);
|
|
35
|
+
const endDate = new Date(props.item.applicationStop);
|
|
36
|
+
switch (true) {
|
|
37
|
+
case currentDate < startDate:
|
|
38
|
+
return 0;
|
|
39
|
+
case (currentDate > startDate && currentDate < endDate):
|
|
40
|
+
return 1;
|
|
41
|
+
case (currentDate > startDate && currentDate > endDate):
|
|
42
|
+
return 2;
|
|
43
|
+
default:
|
|
44
|
+
return false;
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
</script>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-row
|
|
3
|
+
v-ripple
|
|
4
|
+
no-gutters
|
|
5
|
+
class="cursor-pointer highlight-on-hover"
|
|
6
|
+
@click="
|
|
7
|
+
$router.push(localePath('/activities/fellowships' + item.slug[locale]))
|
|
8
|
+
"
|
|
9
|
+
>
|
|
10
|
+
<v-col align-self="center" cols="8" class="text-h5 dense">
|
|
11
|
+
{{ item.name }}
|
|
12
|
+
<FellowshipsBadges :item="item" />
|
|
13
|
+
</v-col>
|
|
14
|
+
<v-col align-self="center" cols="4">
|
|
15
|
+
<MiscMoleculesChipContainer
|
|
16
|
+
:items="[
|
|
17
|
+
$t('list.filters.fellowships.fellowshipType.' + item.fellowshipType),
|
|
18
|
+
...(props.item && props.item.disciplines
|
|
19
|
+
? props.item.disciplines.map((discipline) => discipline.name)
|
|
20
|
+
: []),
|
|
21
|
+
]"
|
|
22
|
+
class="mt-2"
|
|
23
|
+
/>
|
|
24
|
+
</v-col>
|
|
25
|
+
</v-row>
|
|
26
|
+
</template>
|
|
27
|
+
|
|
28
|
+
<script setup>
|
|
29
|
+
import { useLocalePath, useI18n } from "#imports";
|
|
30
|
+
const { locale } = useI18n();
|
|
31
|
+
const localePath = useLocalePath();
|
|
32
|
+
const props = defineProps({
|
|
33
|
+
item: {
|
|
34
|
+
type: Object,
|
|
35
|
+
required: true
|
|
36
|
+
},
|
|
37
|
+
index: {
|
|
38
|
+
type: Number,
|
|
39
|
+
required: true
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
</script>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-dialog max-width="500">
|
|
3
|
+
<template #activator="{ props: activatorProps }">
|
|
4
|
+
<v-btn
|
|
5
|
+
v-bind="activatorProps"
|
|
6
|
+
tile
|
|
7
|
+
:variant="view ? 'outlined' : 'text'"
|
|
8
|
+
class="text-overline"
|
|
9
|
+
>
|
|
10
|
+
{{ $t("register-until-0", [getLocalizedDate(item.applicationStop)]) }}
|
|
11
|
+
</v-btn>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<template #default="{ isActive }">
|
|
15
|
+
<v-card :title="$t('fellowship-register')">
|
|
16
|
+
<v-card-text>
|
|
17
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
|
|
18
|
+
eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
|
19
|
+
</v-card-text>
|
|
20
|
+
|
|
21
|
+
<v-card-actions>
|
|
22
|
+
<v-spacer />
|
|
23
|
+
|
|
24
|
+
<v-btn :text="$t('cancel')" @click="isActive.value = false" />
|
|
25
|
+
<v-btn
|
|
26
|
+
:text="$t('events.register-me')"
|
|
27
|
+
@click="isActive.value = false"
|
|
28
|
+
/>
|
|
29
|
+
</v-card-actions>
|
|
30
|
+
</v-card>
|
|
31
|
+
</template>
|
|
32
|
+
</v-dialog>
|
|
33
|
+
</template>
|
|
34
|
+
|
|
35
|
+
<script setup>
|
|
36
|
+
import { getLocalizedDate } from "../../composables/useUtils";
|
|
37
|
+
const props = defineProps({
|
|
38
|
+
item: { type: Object, required: true },
|
|
39
|
+
view: { type: Boolean, required: false, default: false }
|
|
40
|
+
});
|
|
41
|
+
</script>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-col cols="12" md="6" class="highlight-on-hover">
|
|
3
|
+
<div v-ripple class="border-thin pa-6">
|
|
4
|
+
<FellowshipsBadges :item="item" />
|
|
5
|
+
<div class="d-flex">
|
|
6
|
+
<nuxt-link
|
|
7
|
+
:to="
|
|
8
|
+
localePath({
|
|
9
|
+
name: 'activities-fellowships-slug',
|
|
10
|
+
params: { slug: item.slug[locale] },
|
|
11
|
+
})
|
|
12
|
+
"
|
|
13
|
+
class="text-h4 text-black text-wrap mt-4 pb-4"
|
|
14
|
+
>
|
|
15
|
+
{{ item.name }}
|
|
16
|
+
</nuxt-link>
|
|
17
|
+
</div>
|
|
18
|
+
<div
|
|
19
|
+
class="text-wrap clamped-text d-flex"
|
|
20
|
+
:style="
|
|
21
|
+
'-webkit-line-clamp:' +
|
|
22
|
+
[5, 5, 5, 10, 12, 14][
|
|
23
|
+
['xs', 'sm', 'md', 'lg', 'xl', 'xxl'].indexOf(name || 'md')
|
|
24
|
+
]
|
|
25
|
+
"
|
|
26
|
+
>
|
|
27
|
+
<MDC v-if="item.description" :value="item.description" />
|
|
28
|
+
</div>
|
|
29
|
+
<MiscMoleculesChipContainer
|
|
30
|
+
:items="[
|
|
31
|
+
$t('list.filters.fellowships.fellowshipType.' + item.fellowshipType),
|
|
32
|
+
...(props.item && props.item.disciplines
|
|
33
|
+
? props.item.disciplines.map((discipline) => discipline.name)
|
|
34
|
+
: []),
|
|
35
|
+
]"
|
|
36
|
+
class="mt-2"
|
|
37
|
+
/>
|
|
38
|
+
</div>
|
|
39
|
+
</v-col>
|
|
40
|
+
</template>
|
|
41
|
+
|
|
42
|
+
<script setup>
|
|
43
|
+
import { useDisplay } from "vuetify";
|
|
44
|
+
import { useLocalePath, useI18n } from "#imports";
|
|
45
|
+
const { name } = useDisplay();
|
|
46
|
+
const localePath = useLocalePath();
|
|
47
|
+
const { locale } = useI18n();
|
|
48
|
+
const props = defineProps({
|
|
49
|
+
item: {
|
|
50
|
+
type: Object,
|
|
51
|
+
required: true
|
|
52
|
+
},
|
|
53
|
+
index: {
|
|
54
|
+
type: Number,
|
|
55
|
+
required: true
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
</script>
|