Might as well re-use it for instances search
This commit is contained in:
parent
65a4c3441c
commit
5c9a47c31e
1 changed files with 7 additions and 14 deletions
|
@ -1,5 +1,6 @@
|
||||||
import './login.css';
|
import './login.css';
|
||||||
|
|
||||||
|
import Fuse from 'fuse.js';
|
||||||
import { useEffect, useRef, useState } from 'preact/hooks';
|
import { useEffect, useRef, useState } from 'preact/hooks';
|
||||||
import { useSearchParams } from 'react-router-dom';
|
import { useSearchParams } from 'react-router-dom';
|
||||||
|
|
||||||
|
@ -27,12 +28,14 @@ function Login() {
|
||||||
);
|
);
|
||||||
|
|
||||||
const [instancesList, setInstancesList] = useState([]);
|
const [instancesList, setInstancesList] = useState([]);
|
||||||
|
const searcher = useRef();
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
(async () => {
|
(async () => {
|
||||||
try {
|
try {
|
||||||
const res = await fetch(instancesListURL);
|
const res = await fetch(instancesListURL);
|
||||||
const data = await res.json();
|
const data = await res.json();
|
||||||
setInstancesList(data);
|
setInstancesList(data);
|
||||||
|
searcher.current = new Fuse(data);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// Silently fail
|
// Silently fail
|
||||||
console.error(e);
|
console.error(e);
|
||||||
|
@ -90,21 +93,11 @@ function Login() {
|
||||||
!/[\s\/\\@]/.test(cleanInstanceText);
|
!/[\s\/\\@]/.test(cleanInstanceText);
|
||||||
|
|
||||||
const instancesSuggestions = cleanInstanceText
|
const instancesSuggestions = cleanInstanceText
|
||||||
? instancesList
|
? searcher.current
|
||||||
.filter((instance) => instance.includes(instanceText))
|
?.search(cleanInstanceText, {
|
||||||
.sort((a, b) => {
|
limit: 10,
|
||||||
// Move text that starts with instanceText to the start
|
|
||||||
const aStartsWith = a
|
|
||||||
.toLowerCase()
|
|
||||||
.startsWith(instanceText.toLowerCase());
|
|
||||||
const bStartsWith = b
|
|
||||||
.toLowerCase()
|
|
||||||
.startsWith(instanceText.toLowerCase());
|
|
||||||
if (aStartsWith && !bStartsWith) return -1;
|
|
||||||
if (!aStartsWith && bStartsWith) return 1;
|
|
||||||
return 0;
|
|
||||||
})
|
})
|
||||||
.slice(0, 10)
|
?.map((match) => match.item)
|
||||||
: [];
|
: [];
|
||||||
|
|
||||||
const selectedInstanceText = instanceTextLooksLikeDomain
|
const selectedInstanceText = instanceTextLooksLikeDomain
|
||||||
|
|
Loading…
Add table
Reference in a new issue