🔧 Tweaking the dashboard
This commit is contained in:
@@ -43,7 +43,7 @@ export const getWeeklyPullList = (options) => async (dispatch) => {
|
|||||||
url: `${COMICVINE_SERVICE_URI}/getWeeklyPullList`,
|
url: `${COMICVINE_SERVICE_URI}/getWeeklyPullList`,
|
||||||
method: "get",
|
method: "get",
|
||||||
params: {
|
params: {
|
||||||
startDate: "2022-2-15",
|
startDate: "2022-2-21",
|
||||||
pageSize: "15",
|
pageSize: "15",
|
||||||
currentPage: "1",
|
currentPage: "1",
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -14,13 +14,11 @@ export const Menu = (props): ReactElement => {
|
|||||||
let issueSearchQuery: IComicVineSearchQuery = {} as IComicVineSearchQuery;
|
let issueSearchQuery: IComicVineSearchQuery = {} as IComicVineSearchQuery;
|
||||||
|
|
||||||
if (!isUndefined(data.rawFileDetails)) {
|
if (!isUndefined(data.rawFileDetails)) {
|
||||||
console.log(data.rawFileDetails);
|
|
||||||
issueSearchQuery = refineQuery(data.rawFileDetails.name);
|
issueSearchQuery = refineQuery(data.rawFileDetails.name);
|
||||||
} else if (!isEmpty(data.sourcedMetadata)) {
|
} else if (!isEmpty(data.sourcedMetadata)) {
|
||||||
issueSearchQuery = refineQuery(data.sourcedMetadata.comicvine.name);
|
issueSearchQuery = refineQuery(data.sourcedMetadata.comicvine.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(seriesSearchQuery);
|
|
||||||
dispatch(fetchComicVineMatches(data, issueSearchQuery, seriesSearchQuery));
|
dispatch(fetchComicVineMatches(data, issueSearchQuery, seriesSearchQuery));
|
||||||
setSlidingPanelContentId("CVMatches");
|
setSlidingPanelContentId("CVMatches");
|
||||||
setVisible(true);
|
setVisible(true);
|
||||||
|
|||||||
@@ -25,6 +25,9 @@ export const RecentlyImported = ({
|
|||||||
<>
|
<>
|
||||||
<div className="content">
|
<div className="content">
|
||||||
<h4 className="title is-4">Recently Imported</h4>
|
<h4 className="title is-4">Recently Imported</h4>
|
||||||
|
<p className="subtitle is-7">
|
||||||
|
Recent Library activity such as imports, tagging, etc.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<Masonry
|
<Masonry
|
||||||
breakpointCols={breakpointColumnsObj}
|
breakpointCols={breakpointColumnsObj}
|
||||||
|
|||||||
Reference in New Issue
Block a user