forked from innovationSoomgo1/soomgo_FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.js
48 lines (43 loc) · 1.14 KB
/
util.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import React from 'react';
import { api } from './api/index';
import { useQuery } from '@tanstack/react-query';
export const debounce = (callback, duration) => {
let timer;
return (...args) => {
clearTimeout(timer);
timer = setTimeout(() => callback(...args), duration);
};
};
const getResultByKeyword = async (keyword, lastId) => {
const res = await api.get(
`/posts/search?lastId=${lastId ?? '%20'}&size=10&keyword=${keyword}`,
);
console.log(res.data.content);
return res.data.content;
};
export const useResults = (keyword) => {
return useQuery(['keyword', keyword], () => getResultByKeyword(keyword), {
enabled: !!keyword,
suspense: false,
onSuccess: () => {
console.log('검색중');
},
});
};
export const highlightText = (text, query) => {
if (query !== '' && text.includes(query)) {
const parts = text.split(new RegExp(`(${query})`, 'gi'));
return (
<>
{parts.map((part, index) =>
part.toLowerCase() === query.toLowerCase() ? (
<mark key={index}>{part}</mark>
) : (
part
),
)}
</>
);
}
return text;
};