Browse Source

feat(gui-v2,testing): use 5 col grid for grid view

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
pull/2716/head
Braks 2 years ago committed by Pranav C
parent
commit
98dd7043b3
  1. 28
      packages/nc-gui-v2/pages/projects/index/index.vue

28
packages/nc-gui-v2/pages/projects/index/index.vue

@ -16,7 +16,7 @@ const { projects } = defineProps<Props>()
const { $e } = useNuxtApp() const { $e } = useNuxtApp()
const { getColorByIndex } = useColors() const { getColorByIndex } = useColors(true)
const openProject = async (project: ProjectType) => { const openProject = async (project: ProjectType) => {
await navigateTo(`/nc/${project.id}`) await navigateTo(`/nc/${project.id}`)
@ -32,12 +32,13 @@ const formatTitle = (title: string) =>
</script> </script>
<template> <template>
<div class="grid grid-cols-2 md:grid-cols-4 3xl:grid-cols-6 gap-6 md:gap-12"> <div class="grid grid-cols-2 md:grid-cols-5 3xl:grid-cols-6 gap-6 md:(gap-y-16)">
<div class="group flex flex-col items-center gap-2"> <div class="group flex flex-col items-center gap-2">
<v-menu> <v-menu>
<template #activator="{ props }"> <template #activator="{ props }">
<div <div
class="thumbnail !bg-gradient-to-br from-primary to-gray-500 !opacity-25 hover:(!opacity-100 shadow-lg to-primary/50) bg-gray-400" class="thumbnail hover:(after:!opacity-100 shadow-lg to-primary/50)"
:style="{ '--thumbnail-color': '#1348ba' }"
@click="props.onClick" @click="props.onClick"
> >
<MdiPlus /> <MdiPlus />
@ -66,14 +67,14 @@ const formatTitle = (title: string) =>
</div> </div>
<div v-for="(project, i) of projects" :key="project.id" class="group flex flex-col items-center gap-2"> <div v-for="(project, i) of projects" :key="project.id" class="group flex flex-col items-center gap-2">
<div class="thumbnail" :style="{ backgroundColor: getColorByIndex(i) }" @click="openProject(project)"> <div class="thumbnail" :style="{ '--thumbnail-color': getColorByIndex(i) }" @click="openProject(project)">
{{ formatTitle(project.title) }} {{ formatTitle(project.title) }}
<MdiStarOutline class="star-icon group-hover:opacity-100" @click.stop /> <MdiStarOutline class="star-icon" @click.stop />
<v-menu> <v-menu>
<template #activator="{ props }"> <template #activator="{ props }">
<MdiMenuDown class="menu-icon group-hover:opacity-100" @click.stop="props.onClick" /> <MdiMenuDown class="menu-icon" @click.stop="props.onClick" />
</template> </template>
<v-list class="!py-0 flex flex-col bg-white rounded-lg shadow-md border-1 border-gray-300"> <v-list class="!py-0 flex flex-col bg-white rounded-lg shadow-md border-1 border-gray-300">
@ -94,13 +95,22 @@ const formatTitle = (title: string) =>
<style scoped> <style scoped>
.thumbnail { .thumbnail {
@apply relative rounded-md opacity-75 font-bold text-white text-[75px] h-[150px] w-full max-w-[150px] md:w-1/2 min-w-[150px] shadow-md cursor-pointer uppercase flex items-center justify-center transition-color ease-in duration-300 hover:(shadow-lg opacity-100); @apply relative rounded-md opacity-75 font-bold text-white text-[75px] h-[150px] w-full max-w-[150px] shadow-md cursor-pointer uppercase flex items-center justify-center transition-color ease-in duration-100 hover:(after:opacity-100 shadow-none);
background-image: linear-gradient(#0002, #0002); }
.thumbnail::after {
@apply rounded-md absolute top-0 left-0 right-0 bottom-0 transition-all duration-150 ease-in-out opacity-75;
background-color: var(--thumbnail-color);
content: '';
z-index: -1;
}
.thumbnail:hover::after {
@apply shadow-2xl transform scale-110;
} }
.menu-icon, .menu-icon,
.star-icon { .star-icon {
@apply w-auto opacity-0 absolute h-[1.75rem] transition-opacity duration-300; @apply w-auto opacity-0 absolute h-[1.75rem] transition-opacity !duration-200 group-hover:opacity-100;
} }
.star-icon { .star-icon {

Loading…
Cancel
Save