8a976ba8ab
* style: UI fixes for frappe_theme compatibility * chore: minor ui fixes
82 lines
2.7 KiB
Vue
82 lines
2.7 KiB
Vue
<template>
|
|
<div class='py-3 col-md-4 col-sm-12'>
|
|
<div class="card h-100">
|
|
<router-link :to="'/Program/' + program.name">
|
|
<div class="card-hero-img" v-if="program.hero_image" v-bind:style="{ 'background-image': 'url(' + image + ')' }"></div>
|
|
<div v-else class="card-image-wrapper text-center">
|
|
<div class="image-body">{{ program.program_name }}</div>
|
|
</div>
|
|
<div class='card-body'>
|
|
<h5 class='card-title'>{{ program.program_name }}</h5>
|
|
<div class="text-muted">{{ program.description.substring(0,120) }}...</div>
|
|
</div>
|
|
</router-link>
|
|
<div class='text-right p-3'>
|
|
<button v-if="program.intro_video" class='btn btn-light btn-sm' data-toggle="modal" data-target="#videoModal">Watch Intro</button>
|
|
<a-button v-if="enrolled" type="dark" size="sm" :route="programPageRoute">
|
|
{{ buttonName }}
|
|
</a-button>
|
|
<button v-else-if="isLogin" class='btn btn-dark btn-sm' @click="enroll()">{{ enrollButton }}</button>
|
|
<a v-else class='btn btn-secondary btn-sm' href="/login#signup">Sign Up</a>
|
|
</div>
|
|
<VideoModal v-if="program.intro_video" :title="program.program_name" :video="program.intro_video"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import AButton from './Button.vue';
|
|
import VideoModal from './VideoModal.vue';
|
|
export default {
|
|
props: ['program', 'enrolled'],
|
|
name: "ProgramCard",
|
|
data() {
|
|
return {
|
|
isLogin: frappe.is_user_logged_in(),
|
|
enrollButton: 'Enroll Now',
|
|
programRoute: { name: 'program', params: { program_name: this.program.name }},
|
|
image: "'" + this.program.hero_image + "'"
|
|
};
|
|
},
|
|
methods: {
|
|
enroll() {
|
|
this.enrollButton = 'Enrolling...'
|
|
lms.call('enroll_in_program', {
|
|
program_name: this.program.name,
|
|
}).then(data => {
|
|
lms.store.updateEnrolledPrograms()
|
|
this.$router.push(this.programRoute)
|
|
})
|
|
}
|
|
},
|
|
computed: {
|
|
buttonName() {
|
|
if(this.enrolled){
|
|
return "Start Program"
|
|
}
|
|
else {
|
|
return "Enroll"
|
|
}
|
|
},
|
|
programPageRoute() {
|
|
return this.programRoute
|
|
},
|
|
isEnrolled() {
|
|
return lms.store.enrolledPrograms.includes(this.program.name)
|
|
}
|
|
},
|
|
components: {
|
|
AButton,
|
|
VideoModal
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
a.btn-secondary {
|
|
color: white !important;
|
|
}
|
|
</style> |