-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbase-card.vue
203 lines (193 loc) · 6.06 KB
/
base-card.vue
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<template>
<div
:class="tool.deprecated ? 'deprecated' : ''"
class="card"
>
<div class="card-header">
<a
v-if="tool.url"
:href="tool.url"
target="_blank"
rel="noopener noreferrer"
>{{ tool.title }}</a>
<span v-else>{{ tool.title }}</span>
<span
class="expand"
@click="$emit('expandcard', tool)"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
role="img"
aria-label="Expand this card, hiding the rest. Updates URL for linking to this tool."
>
<path
d="M16 0H9.5L12 2.5l-3 3L10.5 7l3-3L16 6.5zM16 16V9.5L13.5 12l-3-3L9 10.5l3 3L9.5 16zM0 16h6.5L4 13.5l3-3L5.5 9l-3 3L0 9.5zM0 0v6.5L2.5 4l3 3L7 5.5l-3-3L6.5 0z"
/>
</svg>
</span>
<span
class="shrink"
@click="$emit('shrinkcard')"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
role="img"
aria-label="Shrink the size of the card and show other tools. Updates URL to no longer be just for this tool."
>
<path
d="M9 7h6.5L13 4.5l3-3L14.5 0l-3 3L9 .5zM9 9v6.5l2.5-2.5 3 3 1.5-1.5-3-3L15.5 9zM7 9H.5L3 11.5l-3 3L1.5 16l3-3L7 15.5zM7 7V.5L4.5 3l-3-3L0 1.5l3 3L.5 7z"
/>
</svg>
</span>
</div>
<div class="card-body">
<a
v-if="tool.logo && tool.url"
:href="tool.url"
target="_blank"
rel="noopener noreferrer"
><img
:src="'_imgs/logos/' + tool.logo"
:alt="tool.title + ' logo'"
class="logo"
/></a>
<img
v-else-if="tool.logo"
:src="'_imgs/logos/' + tool.logo"
:alt="tool.title + ' logo'"
class="logo"
/>
<div v-if="tool.languages.length" class="section">
<strong>Languages:</strong> {{ tool.languages.join(', ') }}
</div>
<!-- Platforms/OS's -->
<div v-if="tool.platforms && tool.platforms.length" class="section">
<strong>Supported platforms:</strong> {{ tool.platforms.join(', ') }}
</div>
<!-- Pros and Cons -->
<div v-if="tool.pros && tool.pros.length" class="section">
<strong>Pros:</strong>
<ul>
<li v-for="(pro, proIndex) in tool.pros" :key="'pro' + proIndex">
{{ pro }}
</li>
</ul>
</div>
<div v-if="tool.cons && tool.cons.length" class="section">
<strong>Cons:</strong>
<ul>
<li v-for="(con, conIndex) in tool.cons" :key="'con' + conIndex">
{{ con }}
</li>
</ul>
</div>
<!-- Notable Projects -->
<div v-if="tool.notableTrailingLink || tool.notableProjects && tool.notableProjects.length">
<strong>Notable Projects made with {{ tool.title }}:</strong>
<ul>
<li
v-for="(notableProject, notableProjectIndex) in tool.notableProjects"
:key="'notableProject' + notableProjectIndex"
>
<template v-if="notableProject.url">
<a :href="notableProject.url" target="_blank" rel="noopener noreferrer">{{ notableProject.title }}</a>
</template>
<template v-else>
{{ notableProject.title }}
</template>
<template v-if="notableProject.description">
- {{ notableProject.description }}
</template>
</li>
<li v-if="tool.notableTrailingLink">
<a
:href="'https://github.com/xpdanet/xpdanet.github.io/issues/new?title=Notable+project+made+with+' + encodeURI(tool.title) + '&body=*+**Name:**+%0A*+**URL:**+%0A*+**Description:**+'"
target="_blank"
rel="noopener noreferrer"
>
Add a notable project made with this tool
</a>
</li>
</ul>
</div>
<!-- Frameworks and boilerplates -->
<div v-if="tool.frameworks && tool.frameworks.length" class="section">
<strong>Frameworks:</strong>
<ul>
<li
v-for="(framework, frameworkIndex) in tool.frameworks"
:key="'framework' + frameworkIndex"
>
{{ framework.framework }} -
<a
v-if="framework.url"
:href="framework.url"
target="_blank"
rel="noopener noreferrer"
>{{ framework.title }}</a>
<span v-else>{{ framework.title }}</span>
</li>
</ul>
</div>
<!-- Tools, build systems -->
<div v-if="tool.tools && tool.tools.length" class="section">
<strong>Tools:</strong>
<ul>
<li
v-for="(subTool, subToolIndex) in tool.tools"
:key="'subTool' + subToolIndex"
>
{{ subTool.type }} -
<a
v-if="subTool.url"
:href="subTool.url"
target="_blank"
rel="noopener noreferrer"
>{{ subTool.title }}</a>
<span v-else>{{ subTool.title }}</span>
</li>
</ul>
</div>
<!-- Tutorials -->
<div v-if="tool.tutorials && tool.tutorials.length" class="section">
<strong>Tutorials:</strong>
<ul>
<li
v-for="(tutorial, tutorialIndex) in tool.tutorials"
:key="'tutorial' + tutorialIndex"
>
<strong>{{ tutorial.site }}</strong> -
<a
v-if="tutorial.url"
:href="tutorial.url"
target="_blank"
rel="noopener noreferrer"
>{{ tutorial.title }}</a>
<span v-else>{{ tutorial.title }}</span>
{{ ' ' }}
<em v-if="tutorial.author">by {{ tutorial.author }}</em>
</li>
</ul>
</div>
</div> <!-- end .card-body -->
</div> <!-- end .card -->
</template>
<script>
export default {
name: 'BaseCard',
emits: [
'expandcard',
'shrinkcard'
],
props: {
tool: {
type: Object,
required: true
}
}
};
</script>