mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-16 02:06:18 +01:00
97 lines
2.9 KiB
TypeScript
97 lines
2.9 KiB
TypeScript
|
|
/*
|
||
|
|
* MIT License
|
||
|
|
*
|
||
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
||
|
|
*
|
||
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
|
* of this software and associated documentation files (the "Software"), to deal
|
||
|
|
* in the Software without restriction, including without limitation the rights
|
||
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
|
* copies of the Software, and to permit persons to whom the Software is
|
||
|
|
* furnished to do so, subject to the following conditions:
|
||
|
|
*
|
||
|
|
* The above copyright notice and this permission notice shall be included in all
|
||
|
|
* copies or substantial portions of the Software.
|
||
|
|
*
|
||
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||
|
|
* SOFTWARE.
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { useEffect, useRef, useState } from "react";
|
||
|
|
|
||
|
|
import { nanoid } from "nanoid";
|
||
|
|
import type { HighlightingRequest, RefractorNode, Response, ResponseMessage, SuccessResponse } from "./types";
|
||
|
|
import useSyntaxHighlightingWorker from "./useSyntaxHighlightingWorker";
|
||
|
|
|
||
|
|
const isSuccess = (response: Response): response is SuccessResponse => {
|
||
|
|
return response.type === "success";
|
||
|
|
};
|
||
|
|
|
||
|
|
export type UseSyntaxHighlightingOptions = {
|
||
|
|
value: string;
|
||
|
|
language: string;
|
||
|
|
nodeLimit: number;
|
||
|
|
groupByLine?: boolean;
|
||
|
|
markedTexts?: string[];
|
||
|
|
};
|
||
|
|
|
||
|
|
const useSyntaxHighlighting = ({
|
||
|
|
value,
|
||
|
|
language,
|
||
|
|
nodeLimit,
|
||
|
|
groupByLine = false,
|
||
|
|
markedTexts,
|
||
|
|
}: UseSyntaxHighlightingOptions) => {
|
||
|
|
const worker = useSyntaxHighlightingWorker();
|
||
|
|
const job = useRef(nanoid());
|
||
|
|
const [isLoading, setIsLoading] = useState(true);
|
||
|
|
const [tree, setTree] = useState<Array<RefractorNode> | undefined>(undefined);
|
||
|
|
const [error, setError] = useState<string | undefined>(undefined);
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
setIsLoading(true);
|
||
|
|
setError(undefined);
|
||
|
|
setTree(undefined);
|
||
|
|
|
||
|
|
const payload: HighlightingRequest["payload"] = {
|
||
|
|
value,
|
||
|
|
language,
|
||
|
|
nodeLimit,
|
||
|
|
groupByLine,
|
||
|
|
markedTexts,
|
||
|
|
};
|
||
|
|
|
||
|
|
worker.postMessage({
|
||
|
|
id: job.current,
|
||
|
|
payload,
|
||
|
|
} as HighlightingRequest);
|
||
|
|
|
||
|
|
const listener = ({ data }: ResponseMessage) => {
|
||
|
|
if (data.id === job.current) {
|
||
|
|
if (isSuccess(data)) {
|
||
|
|
setTree(data.payload.tree);
|
||
|
|
} else {
|
||
|
|
setError(data.payload.reason);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
setIsLoading(false);
|
||
|
|
};
|
||
|
|
|
||
|
|
worker.addEventListener("message", listener);
|
||
|
|
return () => worker.removeEventListener("message", listener);
|
||
|
|
}, [value, language, nodeLimit, groupByLine, worker, markedTexts]);
|
||
|
|
|
||
|
|
return {
|
||
|
|
tree,
|
||
|
|
isLoading,
|
||
|
|
error,
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
export default useSyntaxHighlighting;
|