mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00
Fix: listview filter (#225)
* chore: bump desktop package version to 0.1.30 * chore: increase Node.js memory limit for desktop build process * chore: configure Node.js memory limit for desktop build * fix(desktop): list view filter mode
This commit is contained in:
parent
41302a29ff
commit
5fc99ca26c
3
.github/workflows/desktop-publish.yml
vendored
3
.github/workflows/desktop-publish.yml
vendored
@ -87,6 +87,8 @@ jobs:
|
|||||||
# pnpm --filter=@kksh/ci run ci-env-check
|
# pnpm --filter=@kksh/ci run ci-env-check
|
||||||
bun packages/ci/scripts/ci-env-check.ts
|
bun packages/ci/scripts/ci-env-check.ts
|
||||||
- name: Build Packages
|
- name: Build Packages
|
||||||
|
env:
|
||||||
|
NODE_OPTIONS: --max-old-space-size=4096
|
||||||
run: pnpm build
|
run: pnpm build
|
||||||
- name: Get App Version
|
- name: Get App Version
|
||||||
if: matrix.settings.platform == 'windows-latest'
|
if: matrix.settings.platform == 'windows-latest'
|
||||||
@ -98,6 +100,7 @@ jobs:
|
|||||||
CI: false
|
CI: false
|
||||||
KUNKUN_PUBLISH: true
|
KUNKUN_PUBLISH: true
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
NODE_OPTIONS: --max-old-space-size=4096
|
||||||
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
|
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
|
||||||
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
|
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
|
||||||
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
|
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@kksh/desktop",
|
"name": "@kksh/desktop",
|
||||||
"version": "0.1.29",
|
"version": "0.1.32",
|
||||||
"description": "",
|
"description": "",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -51,7 +51,6 @@
|
|||||||
import Inspect from "svelte-inspect-value"
|
import Inspect from "svelte-inspect-value"
|
||||||
import { type CommandEvent } from "tauri-plugin-shellx-api"
|
import { type CommandEvent } from "tauri-plugin-shellx-api"
|
||||||
import * as v from "valibot"
|
import * as v from "valibot"
|
||||||
import Listview2 from "./listview2.svelte"
|
|
||||||
|
|
||||||
const { data } = $props()
|
const { data } = $props()
|
||||||
let listviewInputRef = $state<HTMLInputElement | null>(null)
|
let listviewInputRef = $state<HTMLInputElement | null>(null)
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
<script lang="ts">
|
|
||||||
import { ListSchema } from "@kunkunapi/src/models"
|
|
||||||
|
|
||||||
let { listViewContent }: { listViewContent: ListSchema.List } = $props()
|
|
||||||
let detailWidth = $derived(listViewContent.detail ? (listViewContent.detail?.width ?? 70) : 0)
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<div>detailWidth: {detailWidth}</div>
|
|
@ -144,10 +144,10 @@
|
|||||||
let resultingItems = $derived<ListSchema.Item[]>(
|
let resultingItems = $derived<ListSchema.Item[]>(
|
||||||
// when search term changes, update the resulting items
|
// when search term changes, update the resulting items
|
||||||
listViewContent.filter === "none"
|
listViewContent.filter === "none"
|
||||||
? searchTerm.length > 0
|
? (listViewContent.items ?? [])
|
||||||
|
: searchTerm.length > 0
|
||||||
? itemsFuse.search(searchTerm).map((item) => item.item)
|
? itemsFuse.search(searchTerm).map((item) => item.item)
|
||||||
: srcItems
|
: srcItems
|
||||||
: (listViewContent.items ?? [])
|
|
||||||
)
|
)
|
||||||
// section total height is auto derived from section refs
|
// section total height is auto derived from section refs
|
||||||
let sectionTotalHeight = $derived(srcSections.reduce((acc, s) => acc + (s.sectionHeight ?? 0), 0))
|
let sectionTotalHeight = $derived(srcSections.reduce((acc, s) => acc + (s.sectionHeight ?? 0), 0))
|
||||||
|
@ -48,10 +48,10 @@
|
|||||||
let resultingItems = $derived(
|
let resultingItems = $derived(
|
||||||
// when search term changes, update the resulting items
|
// when search term changes, update the resulting items
|
||||||
filterMode === "none"
|
filterMode === "none"
|
||||||
? searchTerm.length > 0
|
? items
|
||||||
|
: searchTerm.length > 0
|
||||||
? fuse.search(searchTerm).map((item) => item.item)
|
? fuse.search(searchTerm).map((item) => item.item)
|
||||||
: items
|
: items
|
||||||
: items
|
|
||||||
)
|
)
|
||||||
|
|
||||||
$effect(() => {
|
$effect(() => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user