1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-06-26 07:13:26 +00:00
awesome-cheatsheets/components/BaseCheatsheet.vue

115 lines
2.2 KiB
Vue
Raw Normal View History

<!-- *************************************************************************
TEMPLATE
************************************************************************* -->
<template lang="pug">
.c-base-cheatsheet
a(
:href="link"
class="c-base-cheatsheet__link"
target="_blank"
)
img(
:src="baseUrl + '/images/components/BaseCheatsheet/' + thumbnail"
class="c-base-cheatsheet__thumbnail"
)
.c-base-cheatsheet__content
a(
:href="link"
class="c-base-cheatsheet__name"
target="_blank"
) The {{ name }} Cheatsheet
2018-09-09 18:07:59 +00:00
.c-base-cheatsheet__share
base-share(
2018-09-09 18:07:59 +00:00
v-for="network in networks"
:key="network"
:network="network"
class="c-base-cheatsheet__network"
2018-09-09 18:07:59 +00:00
)
</template>
<!-- *************************************************************************
SCRIPT
************************************************************************* -->
<script>
export default {
props: {
2018-09-09 18:07:59 +00:00
link: {
type: String,
required: true
},
name: {
type: String,
required: true
},
thumbnail: {
type: String,
required: true
}
2018-09-09 18:07:59 +00:00
},
data() {
return {
// --> STATE <--
baseUrl: process.env.baseUrl,
2018-09-09 18:07:59 +00:00
// --> COMPONENTS <--
2018-09-09 21:41:06 +00:00
networks: ["Slack", "Messenger", "Telegram", "Twitter", "LinkedIn"]
2018-09-09 18:07:59 +00:00
};
}
};
</script>
<!-- *************************************************************************
STYLE
************************************************************************* -->
<style lang="scss">
$c: ".c-base-cheatsheet";
#{$c} {
2018-09-09 18:07:59 +00:00
display: block;
padding: 10px;
border: 1px solid #313d4f;
border-radius: 6px;
background: #273142;
#{$c}__link {
#{$c}__thumbnail {
width: 100%;
height: 160px;
border-radius: 4px;
user-select: none;
}
}
#{$c}__content {
padding: 10px;
text-align: left;
#{$c}__name {
margin-bottom: 20px;
color: #ffffff;
font-size: 18px;
}
#{$c}__share {
margin-top: 12px;
display: flex;
user-select: none;
#{$c}__network {
margin-right: 6px;
&:last-of-type {
margin-right: 0;
}
}
}
}
}
</style>