Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[登壇スライドあれば、その動線を追加] update archive #383

Merged
merged 3 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions apps/web/app/components/time-table/TimeTableCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,16 @@ const { range } = useRange()
>
{{ currentLocale === 'en' ? session.name_en : session.name_ja }}
</p>
<div class="session-archives">
<VFIconButton
v-if="session.session_doc_url"
:href="session.session_doc_url"
target-blank
color="vue-blue"
name="slide"
class="session-archive-slide"
/>
</div>
</div>
</div>
</div>
Expand Down Expand Up @@ -196,4 +206,15 @@ const { range } = useRange()
font-weight: 700;
line-height: 1.5;
}
.session-archives {
display: flex;
gap: var(calc(var(--unit) * 1.5));
}
.session-archive-slide {
margin-top: 5px;
}
.session-archive-slide:hover {
opacity: 0.6;
transition: opacity 0.2s;
}
</style>
21 changes: 21 additions & 0 deletions apps/web/app/components/time-table/TimeTableRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,16 @@ const { range } = useRange()
>
{{ currentLocale === 'en' ? session.name_en : session.name_ja }}
</p>
<div class="session-archives">
<VFIconButton
v-if="session.session_doc_url"
:href="session.session_doc_url"
target-blank
color="vue-blue"
name="slide"
class="session-archive-slide"
/>
</div>
</div>
</div>
</VFSessionContent>
Expand Down Expand Up @@ -182,4 +192,15 @@ const { range } = useRange()
font-size: 18px;
font-weight: 700;
}
.session-archives {
display: flex;
gap: var(calc(var(--unit) * 1.5));
}
.session-archive-slide {
margin-top: 5px;
}
.session-archive-slide:hover {
opacity: 0.6;
transition: opacity 0.2s;
}
</style>
3 changes: 2 additions & 1 deletion apps/web/app/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"end_hour": "12",
"end_minute": "00",
"end_ampm": "pm",
"lt_description": "A 5-minute lightning talk! As a special feature of this event, we will be distributing glow sticks to all participants. When you feel a \"thumbs up!\" moment, resonate with the content, or gain new insights during the LT, please wave your glow stick in response! Let's all create an exciting atmosphere for the LT together!"
"lt_description": "A 5-minute lightning talk! As a special feature of this event, we will be distributing glow sticks to all participants. When you feel a \"thumbs up!\" moment, resonate with the content, or gain new insights during the LT, please wave your glow stick in response! Let's all create an exciting atmosphere for the LT together!",
"archive_slide": "Archive Slide:"
},
"event": {
"title": "Event",
Expand Down
3 changes: 2 additions & 1 deletion apps/web/app/lang/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"end_date": "7.21",
"end_hour": "24",
"end_minute": "00",
"lt_description": "制限時間5分のライトニングトーク! 今回の特別企画として、参加者全員にサイリウムをお配りします。LTの内容に「いいね!」と思ったときや、共感したり、新たな気づきを得たりしたときに、サイリウムを振ってリアクションをお願いします! みなさんでLTを盛り上げていきましょう!"
"lt_description": "制限時間5分のライトニングトーク! 今回の特別企画として、参加者全員にサイリウムをお配りします。LTの内容に「いいね!」と思ったときや、共感したり、新たな気づきを得たりしたときに、サイリウムを振ってリアクションをお願いします! みなさんでLTを盛り上げていきましょう!",
"archive_slide": "登壇スライド:"
},
"volunteer": {
"title": "当日ボランティア募集",
Expand Down
37 changes: 37 additions & 0 deletions apps/web/app/pages/sessions/[id]/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@ useHead({
{{ currentLocale === 'ja' ? (speakerData[0].session_description_ja ?? 'TBD') : (speakerData[0].session_description_en ?? 'TBD') }}
</div>

<div v-if="speakerData[0].session_doc_url" class="detailbody-archives">
<span>{{ $t('speaker.archive_slide') }}</span>
<VFTextLink
:href="speakerData[0].session_doc_url"
target="_blank"
color="vue-blue"
class="detailbody-archive-slide"
>
{{ currentLocale === 'ja' ? speakerData[0].session_doc_title_ja : speakerData[0].session_doc_title_en }}
</VFTextLink>
</div>

<div class="detailbody-persons">
<VFSpeaker
:image="speakerData[0].image_url"
Expand Down Expand Up @@ -199,6 +211,31 @@ useHead({
transition: 0.2s;
}

.detailbody-archives {
margin-top: calc(var(--unit) * 5);
display: flex;
align-items: center;
justify-content: flex-start;
gap: calc(var(--unit) * 1.5);
@media (--tablet) {
flex-direction: column;
align-items: flex-start;
gap: 0;
}
}

.detailbody-archives span {
color: var(--color-vue-blue);
}

.detailbody-archive-slide {
--body-font-size: 1.125rem;

font-size: var(--body-font-size);
line-height: 1.8;
white-space: pre-wrap;
}

.detailbody-persons {
font-size: 18px;
display: grid;
Expand Down
1 change: 1 addition & 0 deletions packages/model/lib/icon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ export type IconName =
| 'external'
| 'alert'
| 'translation'
| 'slide'
6 changes: 6 additions & 0 deletions packages/ui/assets/icon/slide_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions packages/ui/components/icon/Icon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ const svgComponent = match<IconName>(props.name)
.with('translation', () =>
defineAsyncComponent(() => import('../../assets/icon/translation.svg?component')),
)
.with('slide', () =>
defineAsyncComponent(() => import('../../assets/icon/slide_icon.svg?component')),
)
.exhaustive()

const { color: fillColor } = useColor()
Expand Down
Loading