import React, { useEffect, useRef } from "react";
import styled from "styled-components";
import { Classes } from "@blueprintjs/core";
import { useParams } from "react-router";
import { useDispatch, useSelector } from "react-redux";
import EntityNotFoundPane from "pages/Editor/EntityNotFoundPane";
import type { Template as TemplateInterface } from "api/TemplatesApi";
import {
getActiveTemplateSelector,
getForkableWorkspaces,
isFetchingTemplateSelector,
} from "selectors/templatesSelectors";
import {
getSimilarTemplatesInit,
getTemplateInformation,
} from "actions/templateActions";
import type { AppState } from "@appsmith/reducers";
import history from "utils/history";
import { TEMPLATES_PATH } from "constants/routes";
import { Colors } from "constants/Colors";
import AnalyticsUtil from "utils/AnalyticsUtil";
import ReconnectDatasourceModal from "pages/Editor/gitSync/ReconnectDatasourceModal";
import TemplateDescription from "./Template/TemplateDescription";
import SimilarTemplates from "./Template/SimilarTemplates";
import { templateIdUrl } from "@appsmith/RouteBuilder";
import TemplateViewHeader from "./TemplateViewHeader";
import { registerEditorWidgets } from "utils/editor/EditorUtils";
const breakpointColumnsObject = {
default: 4,
3000: 3,
1500: 3,
1024: 2,
800: 1,
};
const Wrapper = styled.div`
overflow: auto;
position: relative;
`;
const TemplateViewWrapper = styled.div`
padding-right: 132px;
padding-left: 132px;
padding-top: var(--ads-v2-spaces-7);
padding-bottom: 80px;
background-color: var(--ads-v2-color-bg);
`;
export const IframeWrapper = styled.div`
border-radius: 16px;
margin-top: ${(props) => props.theme.spaces[12]}px;
iframe {
border-radius: 0px 0px 16px 16px;
box-shadow:
0px 20px 24px -4px rgba(16, 24, 40, 0.1),
0px 8px 8px -4px rgba(16, 24, 40, 0.04);
width: 100%;
height: 734px;
}
`;
export const IframeTopBar = styled.div`
width: 100%;
background-color: var(--ads-v2-color-bg-muted);
border-radius: 8px 8px 0px 0px;
display: flex;
gap: ${(props) => props.theme.spaces[3]}px;
height: 41px;
align-items: center;
padding-left: ${(props) => props.theme.spaces[5]}px;
.round {
height: 12px;
width: 12px;
border-radius: var(--ads-v2-border-radius-circle);
}
.red {
background-color: ${Colors.PERSIMMON};
}
.yellow {
background-color: ${Colors.SUNGLOW_2};
}
.green {
background-color: ${Colors.MOUNTAIN_MEADOW};
}
`;
const PageWrapper = styled.div`
display: flex;
margin-top: ${(props) => props.theme.homePage.header}px;
height: calc(100vh - ${(props) => props.theme.homePage.header}px);
`;
const LoadingWrapper = styled.div`
width: calc(100vw);
.title-placeholder {
margin-top: ${(props) => props.theme.spaces[11]}px;
height: 28px;
width: 100%;
}
.iframe-placeholder {
margin-top: ${(props) => props.theme.spaces[12]}px;
height: 500px;
width: 100%;
}
`;
function TemplateViewLoader() {
return (
);
}
function TemplateNotFound() {
return ;
}
interface TemplateViewProps {
onClickUseTemplate?: (id: string) => void;
showBack?: boolean;
showSimilarTemplate?: boolean;
templateId: string;
}
export function TemplateView({
onClickUseTemplate,
showBack = true,
showSimilarTemplate = true,
templateId,
}: TemplateViewProps) {
const dispatch = useDispatch();
const similarTemplates = useSelector(
(state: AppState) => state.ui.templates.similarTemplates,
);
const isFetchingTemplate = useSelector(isFetchingTemplateSelector);
const workspaceList = useSelector(getForkableWorkspaces);
const currentTemplate = useSelector(getActiveTemplateSelector);
const containerRef = useRef(null);
const goToTemplateListView = () => {
history.push(TEMPLATES_PATH);
};
useEffect(() => {
registerEditorWidgets();
}, []);
useEffect(() => {
dispatch(getTemplateInformation(templateId));
dispatch(getSimilarTemplatesInit(templateId));
if (containerRef.current) {
containerRef.current.scrollTo({ top: 0 });
}
}, [templateId]);
const onSimilarTemplateClick = (template: TemplateInterface) => {
AnalyticsUtil.logEvent("SIMILAR_TEMPLATE_CLICK", {
from: {
id: currentTemplate?.id,
name: currentTemplate?.title,
},
to: {
id: template.id,
name: template.title,
},
});
history.push(templateIdUrl({ id: template.id }));
};
return isFetchingTemplate ? (
) : !currentTemplate ? (
) : (
{showSimilarTemplate && (
)}
);
}
function TemplateViewContainer() {
const params = useParams<{ templateId: string }>();
return (
);
}
export default TemplateViewContainer;