Skip to content
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
40 changes: 40 additions & 0 deletions docs/.vitepress/theme/components/lab-access/LinuxJourney.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,14 @@ onMounted(() => {
updateFilter(labAccessGuideFilter, true)
}
})

const openSurvey = () => {
window.open(
'https://www.survio.com/survey/d/onboarding-survey',
'_blank'
).focus()
}

</script>

<template>
Expand Down Expand Up @@ -1273,6 +1281,38 @@ onMounted(() => {

<h2 class="text-h5 mb-6">You have configured your lab access</h2>

<p class="mb-4 text-medium-emphasis text-body-2">
Got 1 minute? Tell us how it went!
</p>
<v-row>
<v-col cols="12">
<v-btn
icon
color="error"
class="mx-1"
@click="openSurvey"
>
<v-icon>mdi-emoticon-sad-outline</v-icon>
</v-btn>
<v-btn
icon
color="warning"
class="mx-1"
@click="openSurvey"
>
<v-icon>mdi-emoticon-neutral-outline</v-icon>
</v-btn>
<v-btn
icon
color="success"
class="mx-1"
@click="openSurvey"
>
<v-icon>mdi-emoticon-happy-outline</v-icon>
</v-btn>
</v-col>
</v-row>

<p class="mb-4 text-medium-emphasis text-body-2">
Feel free to continue reading our <a href="/do-science/hunt-workbench/getting-started/" target="_blank">getting started guides</a> and figure out which <a href="/do-science/tools/" target="_blank">tools</a> do you need for your work.
<br>
Expand Down
40 changes: 40 additions & 0 deletions docs/.vitepress/theme/components/lab-access/MacJourney.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,14 @@ onMounted(() => {
updateFilter(labAccessGuideFilter, true)
}
})

const openSurvey = () => {
window.open(
'https://www.survio.com/survey/d/onboarding-survey',
'_blank'
).focus()
}

</script>

<template>
Expand Down Expand Up @@ -1331,6 +1339,38 @@ onMounted(() => {

<h2 class="text-h5 mb-6">You have configured your lab access</h2>

<p class="mb-4 text-medium-emphasis text-body-2">
Got 1 minute? Tell us how it went!
</p>
<v-row>
<v-col cols="12">
<v-btn
icon
color="error"
class="mx-1"
@click="openSurvey"
>
<v-icon>mdi-emoticon-sad-outline</v-icon>
</v-btn>
<v-btn
icon
color="warning"
class="mx-1"
@click="openSurvey"
>
<v-icon>mdi-emoticon-neutral-outline</v-icon>
</v-btn>
<v-btn
icon
color="success"
class="mx-1"
@click="openSurvey"
>
<v-icon>mdi-emoticon-happy-outline</v-icon>
</v-btn>
</v-col>
</v-row>

<p class="mb-4 text-medium-emphasis text-body-2">
Feel free to continue reading our <a href="/do-science/hunt-workbench/getting-started/" target="_blank">getting started guides</a> and figure out which <a href="/do-science/tools/" target="_blank">tools</a> do you need for your work.
<br>
Expand Down
40 changes: 40 additions & 0 deletions docs/.vitepress/theme/components/lab-access/WindowsJourney.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,14 @@ onMounted(() => {
updateFilter(labAccessGuideFilter, true)
}
})

const openSurvey = () => {
window.open(
'https://www.survio.com/survey/d/onboarding-survey',
'_blank'
).focus()
}

</script>

<template>
Expand Down Expand Up @@ -1586,6 +1594,38 @@ onMounted(() => {

<h2 class="text-h5 mb-6">You have configured your lab access</h2>

<p class="mb-4 text-medium-emphasis text-body-2">
Got 1 minute? Tell us how it went!
</p>
<v-row>
<v-col cols="12">
<v-btn
icon
color="error"
class="mx-1"
@click="openSurvey"
>
<v-icon>mdi-emoticon-sad-outline</v-icon>
</v-btn>
<v-btn
icon
color="warning"
class="mx-1"
@click="openSurvey"
>
<v-icon>mdi-emoticon-neutral-outline</v-icon>
</v-btn>
<v-btn
icon
color="success"
class="mx-1"
@click="openSurvey"
>
<v-icon>mdi-emoticon-happy-outline</v-icon>
</v-btn>
</v-col>
</v-row>

<p class="mb-4 text-medium-emphasis text-body-2">
Feel free to continue reading our <a href="/do-science/hunt-workbench/getting-started/" target="_blank">getting started guides</a> and figure out which <a href="/do-science/tools/" target="_blank">tools</a> do you need for your work.
<br>
Expand Down