Skip to content
Snippets Groups Projects
Commit d66ab195 authored by Titus Netland's avatar Titus Netland
Browse files

Merge branch 'user-feedback-no-items' into 'main'

User feedback no items

See merge request !106
parents 738894c7 861f8cc2
Branches
No related tags found
1 merge request!106User feedback no items
Pipeline #181177 failed
...@@ -6,6 +6,10 @@ ...@@ -6,6 +6,10 @@
<section v-else class="w-full px-5 py-4 mx-auto rounded-md"> <section v-else class="w-full px-5 py-4 mx-auto rounded-md">
<CommunityHeader :admin="false" class="mb-5" /> <CommunityHeader :admin="false" class="mb-5" />
<div v-if="!items.length" class="flex place-content-center text-gray-400">
Ingen gjenstander å vise 🥺 👉👈
</div>
<div v-else>
<!-- Search field --> <!-- Search field -->
<div class="relative" id="searchComponent"> <div class="relative" id="searchComponent">
<span class="absolute inset-y-0 left-0 flex items-center pl-3"> <span class="absolute inset-y-0 left-0 flex items-center pl-3">
...@@ -70,6 +74,7 @@ ...@@ -70,6 +74,7 @@
/> />
</div> </div>
</div> </div>
</div>
</section> </section>
</div> </div>
</template> </template>
......
<template> <template>
<ul> <p v-if="!communities.length" class="flex place-content-center text-gray-400">
Ingen grupper
</p>
<ul v-else>
<li v-for="community in communities" :key="community"> <li v-for="community in communities" :key="community">
<CommunityListItem <CommunityListItem
:community="community" :community="community"
......
...@@ -95,7 +95,9 @@ ...@@ -95,7 +95,9 @@
</ul> </ul>
</div> </div>
<!-- Error message for community --> <!-- Error message for community -->
<label class="text-error-medium text-sm block">{{ groupErrorMessage }}</label> <label class="text-error-medium text-sm block">{{
groupErrorMessage
}}</label>
</div> </div>
<!-- price --> <!-- price -->
......
// Jest Snapshot v1, https://goo.gl/fbAQLP // Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`CommunityList component renders correctly 1`] = ` exports[`CommunityList component renders correctly 1`] = `
<ul <ul>
grouplist="[object Object],[object Object]"
<li>
<div
class="border-black"
> >
<!-- Main modal -->
<!--v-if-->
<div
class="bg-white shadow dark:bg-gray-800 select-none cursor-pointer hover:bg-gray-50 flex items-center p-2"
>
<div
class="h-3 w-14 flex flex-col justify-center items-center ml-2 mt-4 mb-4 mr-2"
>
<img
alt="Fellsekaps bilde"
class="rounded-md"
src="string"
/>
</div>
<div
class="flex-1 pl-1 overflow-hidden"
>
<div
class="font-medium dark:text-white truncate"
>
string
</div>
</div>
<div
class="flex flex-row justify-center items-center"
>
<svg
aria-hidden="true"
class="max-h-6 max-w-6 shrink m-2"
fill="none"
stroke="currentColor"
stroke-width="2"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
</div>
</div>
</li>
<li>
<div
class="border-black"
>
<!-- Main modal -->
<!--v-if-->
<div
class="bg-white shadow dark:bg-gray-800 select-none cursor-pointer hover:bg-gray-50 flex items-center p-2"
>
<div
class="h-3 w-14 flex flex-col justify-center items-center ml-2 mt-4 mb-4 mr-2"
>
<img
alt="Fellsekaps bilde"
class="rounded-md"
src="string"
/>
</div>
<div
class="flex-1 pl-1 overflow-hidden"
>
<div
class="font-medium dark:text-white truncate"
>
string
</div>
</div>
<div
class="flex flex-row justify-center items-center"
>
<svg
aria-hidden="true"
class="max-h-6 max-w-6 shrink m-2"
fill="none"
stroke="currentColor"
stroke-width="2"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
</div>
</div>
</li>
</ul> </ul>
`; `;
...@@ -7,7 +7,7 @@ describe("CommunityList component", () => { ...@@ -7,7 +7,7 @@ describe("CommunityList component", () => {
beforeEach(() => { beforeEach(() => {
wrapper = mount(CommunityList, { wrapper = mount(CommunityList, {
props: { props: {
groupList: [ communities: [
{ {
communityId: 0, communityId: 0,
name: "string", name: "string",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment