feat(dashboard): change cardsheader to display name when sorting/searching by it
This commit is contained in:
parent
a52c4833e6
commit
e60eeba6ed
@ -7,13 +7,17 @@
|
|||||||
import twemoji from 'twemoji';
|
import twemoji from 'twemoji';
|
||||||
|
|
||||||
export let item: any;
|
export let item: any;
|
||||||
|
export let searchBy: string;
|
||||||
|
export let sortBy: string;
|
||||||
|
|
||||||
let htmlName: string;
|
let htmlName: string;
|
||||||
let nameElement: any;
|
let nameElement: any;
|
||||||
let settings = JSON.parse(localStorage.getItem("pk-settings"));
|
let settings = JSON.parse(localStorage.getItem("pk-settings"));
|
||||||
|
|
||||||
$: if (item.name) htmlName = toHTML(item.name);
|
$: if (item.name) {
|
||||||
else htmlName = "";
|
if ((searchBy === "display name" || sortBy === "display name") && item.display_name) htmlName = toHTML(item.display_name);
|
||||||
|
else htmlName = toHTML(item.name);
|
||||||
|
} else htmlName = "";
|
||||||
|
|
||||||
$: if (settings && settings.appearance.twemoji) {
|
$: if (settings && settings.appearance.twemoji) {
|
||||||
if (nameElement) twemoji.parse(nameElement);
|
if (nameElement) twemoji.parse(nameElement);
|
||||||
|
@ -25,6 +25,9 @@
|
|||||||
|
|
||||||
export let openByDefault = false;
|
export let openByDefault = false;
|
||||||
|
|
||||||
|
export let searchBy = "name";
|
||||||
|
export let sortBy = "name";
|
||||||
|
|
||||||
$: indexStart = itemsPerPage * (currentPage - 1);
|
$: indexStart = itemsPerPage * (currentPage - 1);
|
||||||
|
|
||||||
function getItemLink(item: Member | Group): string {
|
function getItemLink(item: Member | Group): string {
|
||||||
@ -110,7 +113,7 @@
|
|||||||
<Card>
|
<Card>
|
||||||
<h2 class="accordion-header">
|
<h2 class="accordion-header">
|
||||||
<button class="w-100 accordion-button collapsed card-header" id={`${itemType}-card-${indexStart + index}`} on:click={() => toggleCard(indexStart + index)} on:keydown={(e) => skipToNextItem(e, indexStart + index)}>
|
<button class="w-100 accordion-button collapsed card-header" id={`${itemType}-card-${indexStart + index}`} on:click={() => toggleCard(indexStart + index)} on:keydown={(e) => skipToNextItem(e, indexStart + index)}>
|
||||||
<CardsHeader {item}>
|
<CardsHeader {item} {sortBy} {searchBy}>
|
||||||
<div slot="icon" style="cursor: pointer;" id={`${itemType}-copy-${item.id}-${indexStart + index}`} on:click|stopPropagation={() => copyShortLink(indexStart + index, item.id)} on:keydown={(e) => copyShortLink(indexStart + index, item.id, e)} tabindex={0} >
|
<div slot="icon" style="cursor: pointer;" id={`${itemType}-copy-${item.id}-${indexStart + index}`} on:click|stopPropagation={() => copyShortLink(indexStart + index, item.id)} on:keydown={(e) => copyShortLink(indexStart + index, item.id, e)} tabindex={0} >
|
||||||
{#if isPublic || item.privacy.visibility === "public"}
|
{#if isPublic || item.privacy.visibility === "public"}
|
||||||
{#if itemType === "member"}
|
{#if itemType === "member"}
|
||||||
@ -143,7 +146,7 @@
|
|||||||
<Card class="mb-3">
|
<Card class="mb-3">
|
||||||
<div class="accordion-button collapsed p-0" id={`${itemType}-card-${indexStart + index}`} on:keydown={(e) => skipToNextItem(e, indexStart + index)} tabindex={0}>
|
<div class="accordion-button collapsed p-0" id={`${itemType}-card-${indexStart + index}`} on:keydown={(e) => skipToNextItem(e, indexStart + index)} tabindex={0}>
|
||||||
<CardHeader class="w-100">
|
<CardHeader class="w-100">
|
||||||
<CardsHeader {item}>
|
<CardsHeader {item} {sortBy} {searchBy}>
|
||||||
<div slot="icon" style="cursor: pointer;" id={`${itemType}-copy-${item.id}-${indexStart + index}`} on:click|stopPropagation={() => copyShortLink(indexStart + index, item.id)} on:keydown|stopPropagation={(e) => copyShortLink(indexStart + index, item.id, e)} tabindex={0} >
|
<div slot="icon" style="cursor: pointer;" id={`${itemType}-copy-${item.id}-${indexStart + index}`} on:click|stopPropagation={() => copyShortLink(indexStart + index, item.id)} on:keydown|stopPropagation={(e) => copyShortLink(indexStart + index, item.id, e)} tabindex={0} >
|
||||||
{#if isPublic || item.privacy.visibility === "public"}
|
{#if isPublic || item.privacy.visibility === "public"}
|
||||||
{#if itemType === "member"}
|
{#if itemType === "member"}
|
||||||
|
@ -44,7 +44,8 @@
|
|||||||
export let itemType: string;
|
export let itemType: string;
|
||||||
|
|
||||||
let searchValue: string = "";
|
let searchValue: string = "";
|
||||||
let searchBy: string = "name";
|
let searchBy: string = "name";
|
||||||
|
let sortBy: string = "name";
|
||||||
|
|
||||||
let params = useParams();
|
let params = useParams();
|
||||||
$: id = $params.id;
|
$: id = $params.id;
|
||||||
@ -116,7 +117,7 @@
|
|||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<ListControl {itemType} {isPublic} {memberList} {groups} {groupList} {list} bind:finalList={processedList} bind:searchValue bind:searchBy bind:itemsPerPageValue bind:currentPage />
|
<ListControl {itemType} {isPublic} {memberList} {groups} {groupList} {list} bind:finalList={processedList} bind:searchValue bind:searchBy bind:sortBy bind:itemsPerPageValue bind:currentPage />
|
||||||
|
|
||||||
{#if listLoading && !err}
|
{#if listLoading && !err}
|
||||||
<div class="mx-auto text-center">
|
<div class="mx-auto text-center">
|
||||||
@ -143,6 +144,6 @@
|
|||||||
<NewGroup on:create={addItemToList} />
|
<NewGroup on:create={addItemToList} />
|
||||||
{/if}
|
{/if}
|
||||||
{/if}
|
{/if}
|
||||||
<CardsList on:update={update} on:deletion={updateDelete} list={slicedList} groups={groups} members={members} isPublic={isPublic} itemType={itemType} itemsPerPage={itemsPerPage} currentPage={currentPage} fullLength={list.length} />
|
<CardsList on:update={update} on:deletion={updateDelete} list={slicedList} groups={groups} members={members} isPublic={isPublic} itemType={itemType} itemsPerPage={itemsPerPage} currentPage={currentPage} fullLength={list.length} {sortBy} {searchBy} />
|
||||||
<ListPagination bind:currentPage {pageAmount} />
|
<ListPagination bind:currentPage {pageAmount} />
|
||||||
{/if}
|
{/if}
|
||||||
|
@ -17,7 +17,7 @@ export let searchBy = "name";
|
|||||||
export let searchValue: string;
|
export let searchValue: string;
|
||||||
export let itemsPerPageValue: string;
|
export let itemsPerPageValue: string;
|
||||||
|
|
||||||
let sortBy = "name";
|
export let sortBy = "name";
|
||||||
let sortOrder = "ascending";
|
let sortOrder = "ascending";
|
||||||
let privacyFilter = "all";
|
let privacyFilter = "all";
|
||||||
let groupSearchMode = "include";
|
let groupSearchMode = "include";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user