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

The mission #517

Merged
merged 4 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface Config {
const config: Config = {
// fakeStartTime: '29/4/2022 21:59:55',
disabled: false,
hideChallengesAndPrizes: false,
hideChallengesAndPrizes: true,
}

export default config
30 changes: 13 additions & 17 deletions src/data/missions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,29 @@ export interface Mission {
export const missions: Mission[] = [
{
title: 'The Mission',
description: `We want your experience at HackUPC to be more than just creating a project, we want you to have a great time attending talks and workshops, meeting new people and having fun with the activities that we have prepared for you.

To achieve that, we have created a mission for you to complete. So, let's get to it! To start the mission, you will need:

- **The mission card** that you will find in your swag bag received at check-in.
- Your own copy of **the tracking spreadsheet** that you will find **[here](https://docs.google.com/spreadsheets/d/16M5zLWoqDwzYZNwg1gOq-D0h3x5SEdXao2RQlP5UMc0/)**.

In the mission card, you will find the tasks that you can complete during the event. Each task has a different amount of points, and you can complete them in any order you want. You can also find a list of activities that you can participate in. These activities will be announced during the event, and you will have to complete them in order to get the points. You can find more information on when the activities are happening in the **[Schedule section](https://live.hackupc.com/schedule)**.`,
description: `The main goal of **HackUPC** is not to create a project or win a prize, but to have a great time and create lasting memories. It is for this reason that we have prepared The Mission.
To participate, you only need **the Mission card**, that can be found in your swag bag received at check-in. Complete the tasks and **win prizes** of all kinds!`,
size: 'big',
},
{
title: 'Your Mission Card',
description: `Keep in mind that in order to get the points for each mission task, you must show the card to the organizer in charge of the activity so that they can stamp it.
If there isn't an organizer to stamp your card, you should go to the infoDesk (the same location as baggage) and show a proof that you have completed the task, and they will take care of it.`,
description: `\n-(logo Talk) Learn new things going to a talk or workshop from our sponsors :speech_balloon:
\n-(slideshare) Have some laughs with our SlideShare Show Karaoke activity :circus_tent:
\n-(lego) Let your creativity flow with the Lego Tournament :magic_wand:
\n-(Find The Biene) Take a photo with at least 15 Bienes hidden through the venue :biene-default:
\n-(demo) Expose your challenge to the judges! :speaking_head_in_silhouette:
\n-(Photocall) Post a photo of you and your friends at the photocall! :camera_with_flash:
\n-(Dodgeball) Come join our epic Dodge Ball tournament :volleyball:
\n-(WikiRace) Show your detective skills in the WikiRace :mag_right:`,
size: 'small',
picture: MissionCard,
},
{
title: 'Claiming your rewards',
description: `
As you complete the tasks, you will earn points. The more points you earn, the higher your tier will be.
There are 2 tiers in total:
\n-**Tier 1**: 190 points
\n-**Tier 2**: 250 points
\nWith each tier, **Special prizes** are waiting for you!

Remember, you can check your tier completion in your Tracking spreadsheet, and once you reach it you can go to the infoDesk and claim your reward! Don't forget to bring your card with you to verify your points.
When you have a **line completed**, go to the infoDesk and claim your reward!
Don’t forget to **carry the mission card to all these events**! The organizer in charge of the activity will stamp it. If there isn't an organizer to stamp your card, you should go to the infoDesk (the same location as baggage) and **show a proof** that you have completed the task.
You can find more information on when the activities are happening in the **[Schedule section](https://live.hackupc.com/schedule)**.
`,
size: 'small',
},
Expand Down
16 changes: 7 additions & 9 deletions src/views/Challenges.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,18 @@ const hideChallengesAndPrizes = ref(config.hideChallengesAndPrizes)
<PanelContainer>
<Panel title="HackUPC prizes" size="big">
<div class="prizes-container">
<div class="prize">
<!--Example of prize:
<h3 class="prize__position">1st</h3>
<p class="prize__text">Xbox Series S</p>
<p class="prize__subtext">(For each team member)</p>
<p class="prize__text">Price</p>
<p class="prize__subtext">(For each team member)</p> -->
<div class="prize">
<SecretContent />
</div>
<div class="prize">
<h3 class="prize__position">2nd</h3>
<p class="prize__text">Razer Huntsman V2 TKL</p>
<p class="prize__subtext">(For each team member)</p>
<SecretContent />
</div>
<div class="prize">
<h3 class="prize__position">3rd</h3>
<p class="prize__text">Polaroid Now i-Type</p>
<p class="prize__subtext">(For each team member)</p>
<SecretContent />
</div>
</div>
</Panel>
Expand Down
8 changes: 4 additions & 4 deletions src/views/Mission.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ const hideChallengesAndPrizes = ref(config.hideChallengesAndPrizes)
:title="mission.title"
:size="mission.size"
>
<SecretContent v-if="hideChallengesAndPrizes" />
<VueMarkdownIt v-else :source="mission.description" />
<div
<!--<div
style="
display: flex;
width: 100%;
Expand All @@ -29,7 +27,9 @@ const hideChallengesAndPrizes = ref(config.hideChallengesAndPrizes)
"
>
<img :src="mission.picture" style="width: 75%" />
</div>
</div>-->
<SecretContent v-if="hideChallengesAndPrizes" />
AdriMM26 marked this conversation as resolved.
Show resolved Hide resolved
<VueMarkdownIt v-else :source="mission.description" />
</Panel>
</PanelContainer>
</template>
Expand Down
Loading