rsuite
Version:
A suite of react components
11 lines (10 loc) • 403 B
JavaScript
'use client';
import { isSearching } from "./isSearching.js";
/**
* Determines whether the tree node should be expanded based on the search keyword and expand flag.
* If a search keyword is provided, the node is always expanded.
* Otherwise, the node is expanded if the expand flag is true.
*/
export function isExpand(searchKeyword, expand) {
return isSearching(searchKeyword) ? true : expand;
}