This repository has been archived on 2025-01-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-acquia/src/components/Application/ApplicationCard.vue

72 lines
2.4 KiB
Vue
Raw Normal View History

2018-12-23 13:17:39 +00:00
<template>
2018-12-23 22:42:45 +00:00
<div>
2019-03-21 00:42:57 +00:00
<div v-if="display == 'grid'" class="bg-white p-4 border-grey-400 rounded border flex-1">
2018-12-26 12:21:36 +00:00
<div class="flex h-full">
2018-12-26 12:36:48 +00:00
<div class="flex-1 w-5/6 flex flex-col justify-between">
2018-12-23 13:17:39 +00:00
<div>
2018-12-23 22:42:45 +00:00
<div>
2019-03-21 00:42:57 +00:00
<router-link :to="{name: 'environments', params: {id: id}}" class="text-blue-300 no-underline hover:underline focus:underline focus:outline-none"><h2 class="mb-1">{{ application.name }}</h2></router-link>
2018-12-23 22:42:45 +00:00
</div>
2018-12-26 12:21:36 +00:00
2019-03-21 00:42:57 +00:00
<div class="truncate text-blue-300">
2018-12-26 12:36:48 +00:00
<a href="#0" class="text-inherit no-underline hover:underline focus:underline focus:outline-none">{{ application.environments['prod'].url }}</a>
2018-12-23 22:42:45 +00:00
</div>
2018-12-23 13:17:39 +00:00
</div>
2018-12-23 22:42:45 +00:00
2018-12-26 12:21:36 +00:00
<application-tags :type="application.type" :level="application.level" class="mt-6"></application-tags>
2018-12-23 13:17:39 +00:00
</div>
2018-12-26 12:36:48 +00:00
<div class="flex-none w-1/6 text-right">
2018-12-26 13:37:23 +00:00
<star-toggle :application="application"></star-toggle>
2018-12-26 12:21:36 +00:00
</div>
2018-12-23 13:17:39 +00:00
</div>
</div>
2018-12-24 08:46:33 +00:00
2019-03-21 00:42:57 +00:00
<div v-if="display == 'list'" class="bg-white p-3 border-grey-400 border-b">
2018-12-25 21:04:17 +00:00
<div class="-mx-2">
2018-12-26 01:32:37 +00:00
<div class="flex flex-row-reverse items-center justify-between">
<div class="flex flex-1 justify-between items-center -mx-2">
<div class="flex-1 px-2">
2019-03-21 00:42:57 +00:00
<router-link :to="{name: 'environments', params: {id: id}}" class="text-blue-300 no-underline hover:underline focus:underline"><h2 class="text-base font-normal mb-1">{{ application.name }}</h2></router-link>
2018-12-26 01:32:37 +00:00
</div>
2018-12-24 08:46:33 +00:00
2018-12-26 01:32:37 +00:00
<application-tags :type="application.type" :level="application.level" class="w-1/4 px-2"></application-tags>
2018-12-24 08:46:33 +00:00
2018-12-26 01:32:37 +00:00
<div class="w-2/5 px-2">
2019-03-21 00:42:57 +00:00
<a href="#0" class="text-blue-300 no-underline hover:underline focus:underline">{{ application.environments['prod'].url }}</a>
2018-12-26 01:32:37 +00:00
</div>
2018-12-24 08:46:33 +00:00
</div>
2018-12-26 01:32:37 +00:00
<div class="px-2">
2018-12-26 13:37:23 +00:00
<star-toggle :application="application"></star-toggle>
2018-12-26 01:32:37 +00:00
</div>
2018-12-24 08:46:33 +00:00
</div>
</div>
</div>
2018-12-23 13:17:39 +00:00
</div>
</template>
<script>
2018-12-26 01:26:09 +00:00
import ApplicationTags from '@/components/Application/ApplicationTags'
2018-12-26 13:37:23 +00:00
import StarToggle from '@/components/Application/StarToggle'
2018-12-23 13:17:39 +00:00
export default {
components: {
ApplicationTags,
2018-12-26 13:37:23 +00:00
StarToggle,
2018-12-23 13:17:39 +00:00
},
props: {
application: Object,
2018-12-24 08:46:33 +00:00
display: String,
2018-12-23 13:17:39 +00:00
id: Number,
},
data() {
return {
starred: false,
}
}
}
</script>