🔧 Debugging

This commit is contained in:
2022-05-17 10:31:34 -07:00
parent 45be01a140
commit 6c673dff2b
4 changed files with 90 additions and 123 deletions

View File

@@ -1,7 +1,7 @@
import React, { ReactElement, useCallback, useState } from "react";
import { useSelector, useDispatch } from "react-redux";
import { DnD } from "../../DnD";
import { isEmpty, isNil, isUndefined } from "lodash";
import { isEmpty } from "lodash";
import Sticky from "react-stickynode";
import SlidingPane from "react-sliding-pane";
import { extractComicArchive } from "../../../actions/fileops.actions";
@@ -24,7 +24,7 @@ export const ArchiveOperations = (props): ReactElement => {
const dispatch = useDispatch();
const unpackComicArchive = useCallback(() => {
dispatch(extractComicArchive(data.rawFileDetails.filePath));
}, [dispatch, data]);
}, []);
// sliding panel config
const [visible, setVisible] = useState(false);
@@ -55,7 +55,6 @@ export const ArchiveOperations = (props): ReactElement => {
// sliding panel handlers
const openImageAnalysisPanel = useCallback((imageFilePath) => {
console.log(imageFilePath);
setSlidingPanelContentId("imageAnalysis");
dispatch(analyzeImage(imageFilePath));
setCurrentImage(imageFilePath);

View File

@@ -1,3 +1,4 @@
import { isUndefined } from "lodash";
import React, { ReactElement } from "react";
export const ComicInfoXML = (data): ReactElement => {
@@ -20,7 +21,7 @@ export const ComicInfoXML = (data): ReactElement => {
<span className="tags has-addons">
<span className="tag">Issue #</span>
<span className="tag is-warning is-light">
{parseInt(json.number[0], 10)}
{!isUndefined(json.number) && parseInt(json.number[0], 10)}
</span>
</span>
</div>