Skip to content

use/listSort

Interfaces

ListSortOptions

The configuration options for initializing a list sort instance.

Properties

orderByRules

orderByRules: OrderByRule[] | Ref<OrderByRule[], OrderByRule[]>

Rules defining how the list should be sorted, including key and direction.

parentState

parentState: object

The parent state containing the list data and any associated state needed for sorting.

allowedFilter?

optional allowedFilter?: Function

Function to determine if an item should be included based on custom logic.

calculatedObjects?

optional calculatedObjects?: object

The calculated objects, by object pk and then rule name. Each entry is backed by a computed, but it is read through a reactive proxy that unwraps it, so reads yield the calculated value and never carry a .value.

Index Signature

[pk: string]: object

calculatedObjectsParentStateObjectsWatchRunning?

optional calculatedObjectsParentStateObjectsWatchRunning?: boolean

Whether the parent state objects watch is running.

calculatedObjectsRules?

optional calculatedObjectsRules?: ListCalculatedRules

The rules for the calculated objects.

calculatedObjectsWatchRunning?

optional calculatedObjectsWatchRunning?: boolean

Whether the calculated objects watch is running.

calculatedRunning?

optional calculatedRunning?: boolean

Whether the calculated properties are running.

columnTotals

columnTotals: ShallowReactive<ColumnTotals>

Column totals for the list.

crud

crud: object

CRUD handlers and their configurations for the list.

crud.args

args: Reactive<{ } | TargetArgs>

The arguments to be passed to the crud handlers.

crud.bulkDelete

bulkDelete: CrudBulkDeleteFn

The bulk delete function.

crud.executeAction

executeAction: CrudExecuteActionFn

The execute action function.

crud.list

list: CrudListFn

The list function.

crud.subscribe

subscribe: CrudListSubscribeFn

The subscribe function.

customDocumentOptions?

optional customDocumentOptions?: any

Configuration options for the search document, used by FlexSearch.

customSearchOptions?

optional customSearchOptions?: any

Additional search options for FlexSearch.

error

error: Error

The error that occurred.

errored

errored: boolean

Whether an error has occurred.

excludedFilter?

optional excludedFilter?: Function

Function to determine if an item should be excluded based on custom logic.

fkForPkAndRule?

optional fkForPkAndRule?: object

The foreign key for each object pk and rule, crucial for navigating complex data relationships. Each entry is backed by a computed that the reactive proxy unwraps on read.

Index Signature

[pk: string]: object

intendToList?

optional intendToList?: boolean

If this is true, the list should be fetched, or re-fetched if arguments change.

intendToSubscribe?

optional intendToSubscribe?: boolean

If this is true, the subscription should start or restart if arguments change.

loading

loading: boolean

Whether the component is loading.

objAndKeyForPkAndRule?

optional objAndKeyForPkAndRule?: object

Maps each object pk and rule to a tuple consisting of the related object and its respective key, facilitating direct data manipulation. Reads through the reactive state unwrap the computed to the tuple itself, so .value is not used.

Index Signature

[pk: string]: object

objectIndexes?

optional objectIndexes?: any

Indexes built for quick search across objects based on rules.

objects

objects: ObjectsByPk

The list objects stored by their pks.

objectsInOrder

objectsInOrder: ExistingCrudObject[]

The objects in the order specified by the list.

objectsMap

objectsMap: Map<string, ExistingCrudObject> & Omit<ObjectsMap, keyof Map<any, any>>

The map of objects stored by their pks.

objectsVersion

objectsVersion: number

Increments when the set of object keys changes.

order

order: string[]

The order of objects in the list.

paginateInfo

paginateInfo: ShallowReactive<PaginateInfo>

Pagination information for the list.

params

params: any

Arguments passed to the server for listing operations.

pkKey

pkKey: string

The primary key field for the list objects.

relatedObjects?

optional relatedObjects?: object

The related objects, by object pk and then rule name. Each entry is backed by a computed, but it is read through a reactive proxy that unwraps it, so reads yield the related object (or array of related objects) and never carry a .value.

Index Signature

[pk: string]: object

relatedObjectsParentStateObjectsWatchRunning?

optional relatedObjectsParentStateObjectsWatchRunning?: boolean

Flags whether the watch on parent state objects is currently active, ensuring updates trigger as needed.

relatedObjectsRules?

optional relatedObjectsRules?: ListRelatedRules

Defines the rules for establishing relationships, such as foreign key links and sorting orders.

relatedObjectsWatchRunning?

optional relatedObjectsWatchRunning?: boolean

Indicates if watches on the related objects themselves are active, managing updates efficiently.

relatedRunning?

optional relatedRunning?: boolean

Signals whether any computations related to object relationships are currently in progress.

running?

optional running?: boolean

General flag that indicates if the list-related logic is processing, used to manage UI feedback or prevent concurrent operations.

searched?

optional searched?: boolean

Flag indicating if a search has been performed.

subscribed?

optional subscribed?: boolean

Whether the subscription is active.

textSearchRules?

optional textSearchRules?: any

Rules defining how text search should be applied on list items. Each rule specifies a key and a function to extract the searchable text.

textSearchValue?

optional textSearchValue?: string

The current value used for searching.

sortThrottleWait

sortThrottleWait: number | symbol

Optional throttle wait time to limit the frequency of sort operations, enhancing performance.


ListSortProperties

The properties available on a list sort instance.

Properties

parentState

parentState: object

The parent state.

allowedFilter?

optional allowedFilter?: Function

Function to determine if an item should be included based on custom logic.

calculatedObjects?

optional calculatedObjects?: object

The calculated objects, by object pk and then rule name. Each entry is backed by a computed, but it is read through a reactive proxy that unwraps it, so reads yield the calculated value and never carry a .value.

Index Signature

[pk: string]: object

calculatedObjectsParentStateObjectsWatchRunning?

optional calculatedObjectsParentStateObjectsWatchRunning?: boolean

Whether the parent state objects watch is running.

calculatedObjectsRules?

optional calculatedObjectsRules?: ListCalculatedRules

The rules for the calculated objects.

calculatedObjectsWatchRunning?

optional calculatedObjectsWatchRunning?: boolean

Whether the calculated objects watch is running.

calculatedRunning?

optional calculatedRunning?: boolean

Whether the calculated properties are running.

columnTotals

columnTotals: ShallowReactive<ColumnTotals>

Column totals for the list.

crud

crud: object

CRUD handlers and their configurations for the list.

crud.args

args: Reactive<{ } | TargetArgs>

The arguments to be passed to the crud handlers.

crud.bulkDelete

bulkDelete: CrudBulkDeleteFn

The bulk delete function.

crud.executeAction

executeAction: CrudExecuteActionFn

The execute action function.

crud.list

list: CrudListFn

The list function.

crud.subscribe

subscribe: CrudListSubscribeFn

The subscribe function.

customDocumentOptions?

optional customDocumentOptions?: any

Configuration options for the search document, used by FlexSearch.

customSearchOptions?

optional customSearchOptions?: any

Additional search options for FlexSearch.

error

error: Error

The error that occurred.

errored

errored: boolean

Whether an error has occurred.

excludedFilter?

optional excludedFilter?: Function

Function to determine if an item should be excluded based on custom logic.

fkForPkAndRule?

optional fkForPkAndRule?: object

The foreign key for each object pk and rule, crucial for navigating complex data relationships. Each entry is backed by a computed that the reactive proxy unwraps on read.

Index Signature

[pk: string]: object

intendToList?

optional intendToList?: boolean

If this is true, the list should be fetched, or re-fetched if arguments change.

intendToSubscribe?

optional intendToSubscribe?: boolean

If this is true, the subscription should start or restart if arguments change.

loading

loading: boolean

Whether the component is loading.

objAndKeyForPkAndRule?

optional objAndKeyForPkAndRule?: object

Maps each object pk and rule to a tuple consisting of the related object and its respective key, facilitating direct data manipulation. Reads through the reactive state unwrap the computed to the tuple itself, so .value is not used.

Index Signature

[pk: string]: object

objectIndexes?

optional objectIndexes?: any

Indexes built for quick search across objects based on rules.

objects

objects: ObjectsByPk

The list objects stored by their pks.

objectsInOrder

objectsInOrder: ExistingCrudObject[]

The objects in the order specified by the list.

objectsMap

objectsMap: Map<string, ExistingCrudObject> & Omit<ObjectsMap, keyof Map<any, any>>

The map of objects stored by their pks.

objectsVersion

objectsVersion: number

Increments when the set of object keys changes.

order

order: string[]

The order of objects in the list.

paginateInfo

paginateInfo: ShallowReactive<PaginateInfo>

Pagination information for the list.

params

params: any

Arguments passed to the server for listing operations.

pkKey

pkKey: string

The primary key field for the list objects.

relatedObjects?

optional relatedObjects?: object

The related objects, by object pk and then rule name. Each entry is backed by a computed, but it is read through a reactive proxy that unwraps it, so reads yield the related object (or array of related objects) and never carry a .value.

Index Signature

[pk: string]: object

relatedObjectsParentStateObjectsWatchRunning?

optional relatedObjectsParentStateObjectsWatchRunning?: boolean

Flags whether the watch on parent state objects is currently active, ensuring updates trigger as needed.

relatedObjectsRules?

optional relatedObjectsRules?: ListRelatedRules

Defines the rules for establishing relationships, such as foreign key links and sorting orders.

relatedObjectsWatchRunning?

optional relatedObjectsWatchRunning?: boolean

Indicates if watches on the related objects themselves are active, managing updates efficiently.

relatedRunning?

optional relatedRunning?: boolean

Signals whether any computations related to object relationships are currently in progress.

running?

optional running?: boolean

General flag that indicates if the list-related logic is processing, used to manage UI feedback or prevent concurrent operations.

searched?

optional searched?: boolean

Flag indicating if a search has been performed.

subscribed?

optional subscribed?: boolean

Whether the subscription is active.

textSearchRules?

optional textSearchRules?: any

Rules defining how text search should be applied on list items. Each rule specifies a key and a function to extract the searchable text.

textSearchValue?

optional textSearchValue?: string

The current value used for searching.

state

state: object

The reactive state for the list sort.

allowedFilter?

optional allowedFilter?: Function

Function to determine if an item should be included based on custom logic.

calculatedObjects?

optional calculatedObjects?: object

The calculated objects, by object pk and then rule name. Each entry is backed by a computed, but it is read through a reactive proxy that unwraps it, so reads yield the calculated value and never carry a .value.

Index Signature

[pk: string]: object

calculatedObjectsParentStateObjectsWatchRunning?

optional calculatedObjectsParentStateObjectsWatchRunning?: boolean

Whether the parent state objects watch is running.

calculatedObjectsRules?

optional calculatedObjectsRules?: ListCalculatedRules

The rules for the calculated objects.

calculatedObjectsWatchRunning?

optional calculatedObjectsWatchRunning?: boolean

Whether the calculated objects watch is running.

calculatedRunning?

optional calculatedRunning?: boolean

Whether the calculated properties are running.

columnTotals

columnTotals: ShallowReactive<ColumnTotals>

Column totals for the list.

crud

crud: object

CRUD handlers and their configurations for the list.

crud.args

args: Reactive<{ } | TargetArgs>

The arguments to be passed to the crud handlers.

crud.bulkDelete

bulkDelete: CrudBulkDeleteFn

The bulk delete function.

crud.executeAction

executeAction: CrudExecuteActionFn

The execute action function.

crud.list

list: CrudListFn

The list function.

crud.subscribe

subscribe: CrudListSubscribeFn

The subscribe function.

customDocumentOptions?

optional customDocumentOptions?: any

Configuration options for the search document, used by FlexSearch.

customSearchOptions?

optional customSearchOptions?: any

Additional search options for FlexSearch.

error

error: Error

The error that occurred.

errored

errored: boolean

Whether an error has occurred.

excludedFilter?

optional excludedFilter?: Function

Function to determine if an item should be excluded based on custom logic.

fkForPkAndRule?

optional fkForPkAndRule?: object

The foreign key for each object pk and rule, crucial for navigating complex data relationships. Each entry is backed by a computed that the reactive proxy unwraps on read.

Index Signature

[pk: string]: object

intendToList?

optional intendToList?: boolean

If this is true, the list should be fetched, or re-fetched if arguments change.

intendToSubscribe?

optional intendToSubscribe?: boolean

If this is true, the subscription should start or restart if arguments change.

loading

loading: boolean

Whether the component is loading.

objAndKeyForPkAndRule?

optional objAndKeyForPkAndRule?: object

Maps each object pk and rule to a tuple consisting of the related object and its respective key, facilitating direct data manipulation. Reads through the reactive state unwrap the computed to the tuple itself, so .value is not used.

Index Signature

[pk: string]: object

objectIndexes?

optional objectIndexes?: any

Indexes built for quick search across objects based on rules.

objects

objects: ObjectsByPk

The list objects stored by their pks.

objectsInOrder

objectsInOrder: ExistingCrudObject[]

The objects in the order specified by the list.

objectsMap

objectsMap: Map<string, ExistingCrudObject> & Omit<ObjectsMap, keyof Map<any, any>>

The map of objects stored by their pks.

objectsVersion

objectsVersion: number

Increments when the set of object keys changes.

order

order: string[]

The order of objects in the list.

orderByDesc

orderByDesc: boolean[]

Flags indicating whether each sort criterion is in descending order.

orderByRules

orderByRules: object[]

Current sorting rules applied to the list.

paginateInfo

paginateInfo: ShallowReactive<PaginateInfo>

Pagination information for the list.

params

params: any

Arguments passed to the server for listing operations.

pkKey

pkKey: string

The primary key field for the list objects.

relatedObjects?

optional relatedObjects?: object

The related objects, by object pk and then rule name. Each entry is backed by a computed, but it is read through a reactive proxy that unwraps it, so reads yield the related object (or array of related objects) and never carry a .value.

Index Signature

[pk: string]: object

relatedObjectsParentStateObjectsWatchRunning?

optional relatedObjectsParentStateObjectsWatchRunning?: boolean

Flags whether the watch on parent state objects is currently active, ensuring updates trigger as needed.

relatedObjectsRules?

optional relatedObjectsRules?: ListRelatedRules

Defines the rules for establishing relationships, such as foreign key links and sorting orders.

relatedObjectsWatchRunning?

optional relatedObjectsWatchRunning?: boolean

Indicates if watches on the related objects themselves are active, managing updates efficiently.

relatedRunning?

optional relatedRunning?: boolean

Signals whether any computations related to object relationships are currently in progress.

running

running: boolean

General flag that indicates if the list-related logic is processing, used to manage UI feedback or prevent concurrent operations.

searched?

optional searched?: boolean

Flag indicating if a search has been performed.

subscribed?

optional subscribed?: boolean

Whether the subscription is active.

textSearchRules?

optional textSearchRules?: any

Rules defining how text search should be applied on list items. Each rule specifies a key and a function to extract the searchable text.

textSearchValue?

optional textSearchValue?: string

The current value used for searching.

stop

stop: () => void

A function to stop the effect scope and clean up resources.

Returns

void


ListSortRawState

Represents the raw state used by the list sorting functionality. Includes all configurations and state necessary to manage sorting operations within a Vue application.

Properties

orderByDesc

orderByDesc: boolean[]

Flags indicating whether each sort criterion is in descending order.

orderByRules

orderByRules: OrderByRule[]

Current sorting rules applied to the list.

running

running: ComputedRef<boolean>

Whether the sort is settling a pending reorder, combined with the upstream running state so it propagates through the composed list state. True from when a new order is computed until the throttled reorder lands.

Type Aliases

ListSort

ListSort = ListSortProperties

The list sort instance, including reactive state and utilities to manage list sorting operations.

Type Parameters


ListSortParentRawState

ListSortParentRawState = ListInstanceRawState & Partial<ListSubscriptionRawState> & Partial<ListRelatedRawState> & Partial<ListCalculatedRawState> & Partial<ListFilterRawState> & Partial<ListSearchRawState>

The raw, pre-unwrapped parent state consumed by the list sort mixin, aggregating the upstream list composable states.

Type Parameters


ListSortParentState

ListSortParentState = UnwrapNestedRefs

The unwrapped reactive parent state consumed by the list sort mixin.

Type Parameters


ListSortState

ListSortState = UnwrapNestedRefs

The reactive state used by the list sorting functionality. Includes all configurations and state necessary to manage sorting operations within a Vue application.

Type Parameters


OrderByRule

OrderByRule = object

Describes a rule for ordering elements in a list. Each rule can directly reference a property of the list items, or define a function to compute the value used for sorting. Rules can be configured to sort in ascending or descending order and can utilize locale-aware string comparison if necessary.

Type Parameters

Type Declaration

desc?

optional desc?: boolean

key

key: string

keyFn?

optional keyFn?: (object, state) => any

Parameters
object

any

state

ListSortState

Returns

any

localeCompare?

optional localeCompare?: boolean

Functions

setListSortDefaultOptions()

setListSortDefaultOptions(options): void

Sets default configuration options for all list sorting operations within the application. This function allows global settings to be specified that affect the behaviour of sorting operations unless overridden by specific instance configurations.

Parameters

options

Configuration options to set as defaults for list sorting.

sortThrottleWait

number

Default throttle wait time, in milliseconds, to control the rate at which sorting operations are processed, enhancing performance on large lists.

Returns

void


useListSort()

useListSort(options): ListSortProperties

Initializes and manages sorting for a list of objects. This function sets up a reactive sorting mechanism that automatically updates the sort order of the list based on specified criteria. It supports multiple sorting rules, including direct property comparison and custom comparator functions, providing flexibility in handling various data types and structures.

Parameters

options

ListSortOptions

The configuration options for initializing the list sort instance.

Returns

ListSortProperties

The initialized list sort instance, including reactive state and utilities to manage list sorting.

Example

vue
<script setup>
import { reactive, computed } from 'vue';
import { useListSort, useListInstance } from '@arrai-innovations/reactive-helpers';
const listInstanceProps = reactive({
    target: {},
    params: {},
    pkKey: 'id',
    intendToList: true,
});
const listInstance = useListInstance(listInstanceProps);
const listSortProps = reactive({
    parentState: listInstance.state, // Providing the list instance state as the parent state
    orderByRules: [
        { key: 'name', desc: false }, // Sort by name in ascending order
        { key: 'age', desc: true }, // Sort by age in descending order
        { key: 'relatedItem.name', desc: false }, // Sort by a related item's name
        { key: 'calculatedItem.value', desc: true }, // Sort by a calculated value in descending order
    ],
});
const listSort = useListSort(listSortProps);
</script>
<template>
    <!-- reactive list of items sorted client-side -->
    <div v-for="item in listSort.state.objectsInOrder" :key="item.id">
        {{ item.name }}
    </div>
</template>

useListSorts()

useListSorts(listSortArgs): object

Creates multiple list sort instances.

Parameters

listSortArgs

The options for the list sort.

Returns

object

The list sort instance.