@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
59 lines (58 loc) • 2.14 kB
JavaScript
import Fuse from 'fuse.js';
import memoizeOne from 'memoize-one';
const processQuickInsertItems = (items, intl) => {
return items.reduce((acc, item) => {
if (typeof item === 'function' &&
// we preserve handler items with disableMemo so that we
// can process them in a later step outside of memoizations
!item.disableMemo) {
const quickInsertItems = item(intl);
return acc.concat(quickInsertItems);
}
return acc.concat(item);
}, []);
};
const memoizedProcessQuickInsertItems = memoizeOne(processQuickInsertItems);
export const memoProcessQuickInsertItems = (items, intl) => {
const memoizedResults = memoizedProcessQuickInsertItems(items, intl);
const hasDisabledMemos = items.some(item => typeof item === 'function' && item.disableMemo);
if (!hasDisabledMemos) {
return memoizedResults;
}
return memoizedResults.flatMap(item => typeof item === 'function' && item.disableMemo ? item(intl) : item);
};
const options = {
threshold: 0.3,
keys: [{
name: 'title',
weight: 0.57
}, {
name: 'priority',
weight: 0.3
}, {
name: 'keywords',
weight: 0.08
}, {
name: 'description',
weight: 0.04
}, {
name: 'keyshortcut',
weight: 0.01
}]
};
/**
* This function is used to find and sort QuickInsertItems based on a given query string.
*
* @export
* @param {string} query - The query string to be used in the search.
* @param {QuickInsertItem[]} items - An array of QuickInsertItems to be searched.
* @returns {QuickInsertItem[]} - Returns a sorted array of QuickInsertItems based on the priority. If the query string is empty, it will return the array sorted by priority. If a query string is provided, it will return an array of QuickInsertItems that match the query string, sorted by relevance to the query.
*/
export function find(query, items) {
const fuse = new Fuse(items, options);
if (query === '') {
// Copy and sort list by priority
return items.slice(0).sort((a, b) => (a.priority || Number.POSITIVE_INFINITY) - (b.priority || Number.POSITIVE_INFINITY));
}
return fuse.search(query).map(result => result.item);
}