about summary refs log tree commit diff
path: root/components/Posts/PostLink.vue
blob: 8d0a66963a88c90a957583e032e95c769fe18649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<template>
  <div class="post-link">
    <a :href="route">
      <div class="post-container">
        <h4 class="post-title">{{ title }}</h4>
        <p class="post-description">{{ shortenedDescription }}...</p>
      </div>
    </a>
  </div>
</template>

<script>
export default {
  name: 'PostLink',
  props: {
    title: {
      type: String,
      required: true
    },
    description: {
      type: String,
      default: ''
    },
    route: {
      type: String,
      required: true
    }
  },
  computed: {
    shortenedDescription() {
      const first30Words = this.description.split(' ').slice(0, 30)
      return first30Words.join(' ')
    }
  }
}
</script>

<style scoped>
.post-link {
  margin: 20px;
  flex-basis: 410px;
  max-width: 410px;
  /* height: 250px; */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  text-align: left;
  transition: all 300ms ease-in-out;
}

.post-link:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

.post-link > a {
  text-decoration: none;
  height: 100%;
}

.post-link .post-container {
  padding: 20px;
  height: 100%;
}

.post-link .post-title {
  color: #181818;
  font-size: 1.3em;
}

.post-link .post-description {
  color: #484848;
  font-size: 0.9em;
}
</style>