Add overlays to embed

This commit is contained in:
Frank Johnson
2022-01-08 23:33:33 -05:00
parent 9dde0fd8f6
commit 49e8a235ce
6 changed files with 77 additions and 50 deletions

View File

@@ -1,7 +1,7 @@
import useUser from 'src/helpers/hooks/useUser' import useUser from 'src/helpers/hooks/useUser'
import EmbedProject from 'src/components/EmbedProject/EmbedProject'
import { useIdeState } from 'src/helpers/hooks/useIdeState' import { useIdeState } from 'src/helpers/hooks/useIdeState'
import { IdeContext } from 'src/helpers/hooks/useIdeContext' import { IdeContext } from 'src/helpers/hooks/useIdeContext'
import EmbedViewer from '../EmbedViewer/EmbedViewer'
export const QUERY = gql` export const QUERY = gql`
query FIND_PROJECT_BY_USENAME_TITLE( query FIND_PROJECT_BY_USENAME_TITLE(
@@ -65,7 +65,7 @@ export const Success = ({
return ( return (
<IdeContext.Provider value={{ state, thunkDispatch, project }}> <IdeContext.Provider value={{ state, thunkDispatch, project }}>
<EmbedProject project={project} /> <EmbedViewer project={project} />
</IdeContext.Provider> </IdeContext.Provider>
) )
} }

View File

@@ -2,20 +2,31 @@ import { useIdeInit } from 'src/components/EncodedUrl/helpers'
import { useIdeContext } from 'src/helpers/hooks/useIdeContext' import { useIdeContext } from 'src/helpers/hooks/useIdeContext'
import IdeViewer from 'src/components/IdeViewer/IdeViewer' import IdeViewer from 'src/components/IdeViewer/IdeViewer'
import { use3dViewerResize } from 'src/helpers/hooks/use3dViewerResize' import { use3dViewerResize } from 'src/helpers/hooks/use3dViewerResize'
import CadPackage from '../CadPackage/CadPackage'
import LogoType from '../LogoType/LogoType'
import { Link, routes } from '@redwoodjs/router'
function EmbedViewer() { function EmbedViewer() {
const { state, project } = useIdeContext() const { state, project } = useIdeContext()
console.log('from EmbedViewer', { cadPackage: project.cadPackage, code: project.code })
useIdeInit(project?.cadPackage, project?.code || state?.code, "viewer") useIdeInit(project?.cadPackage, project?.code || state?.code, "viewer")
const { viewerDomRef, handleViewerSizeUpdate } = use3dViewerResize() const { viewerDomRef } = use3dViewerResize()
React.useEffect(() => {
handleViewerSizeUpdate()
}, [])
return ( return (
<div className="h-screen flex flex-col" ref={viewerDomRef}> <div className="relative flex flex-col h-screen group" ref={viewerDomRef}>
<IdeViewer isMinimal={true} /> <IdeViewer isMinimal={true} />
<div className="absolute top-5 left-5 text-ch-gray-300">
<h1 className="mb-4 text-4xl font-normal capitalize ">
{project?.title.replace(/-/g, ' ')}
</h1>
<h2 className="mb-2 transition-opacity duration-100 group-hover:opacity-0">by @{ project?.user?.userName }</h2>
<h2 className="transition-opacity duration-100 group-hover:opacity-0">built with <div className="inline-block"><CadPackage cadPackage={project?.cadPackage} className="px-3 py-2"/></div></h2>
</div>
<div className="absolute grid items-center grid-flow-col-dense gap-2 bottom-5 right-5 text-ch-gray-300">
View on <Link className="inline-block" to={routes.project({
userName: project?.user?.userName,
projectTitle: project?.title.toString(),
})}><LogoType className="inline-block" wrappedInLink={true}/></Link>
</div>
</div> </div>
) )
} }

View File

@@ -53,6 +53,7 @@ const IdeViewer = ({
isLoading={state.isLoading} isLoading={state.isLoading}
camera={state?.camera} camera={state?.camera}
ideType={ideType} ideType={ideType}
isMinimal={isMinimal}
/> />
) )
} }

View File

@@ -212,7 +212,7 @@ export function PureIdeViewer({
alt="code-cad preview" alt="code-cad preview"
id="special" id="special"
src={URL.createObjectURL(image)} src={URL.createObjectURL(image)}
className="h-full w-full" className="w-full h-full"
/> />
</div> </div>
)} )}

View File

@@ -0,0 +1,43 @@
import Tooltip from '@material-ui/core/Tooltip'
import { Link, routes } from '@redwoodjs/router'
import Svg from 'src/components/Svg'
export default function LogoType({ className="", wrappedInLink=false }) {
return (
<ul className={"flex items-center " + className}>
<li>
{ (wrappedInLink
? <Link to={routes.home()}>
<div className="ml-2 overflow-hidden rounded-full">
<Svg className="w-10" name="favicon" />
</div>
</Link>
: <div>
<div className="ml-2 overflow-hidden rounded-full">
<Svg className="w-10" name="favicon" />
</div>
</div>
)}
</li>
<li>
<Tooltip title="Very alpha, there's lots of work todo">
<div className="flex ml-4">
{/* Because of how specific these styles are to this heading/logo and it doesn't need to be replicated else where as well as it's very precise with the placement of "pre-alpha" I think it's appropriate. */}
<h2
className="py-1 text-2xl text-indigo-300 md:text-5xl font-ropa-sans md:tracking-wider"
style={{ letterSpacing: '0.3em' }}
>
CadHub
</h2>
<div
className="hidden text-sm font-bold text-pink-400 font-ropa-sans md:block"
style={{ paddingBottom: '2rem', marginLeft: '-1.8rem' }}
>
pre-alpha
</div>
</div>
</Tooltip>
</li>
</ul>
)
}

View File

@@ -2,7 +2,6 @@ import { useState, useEffect } from 'react'
import { Link, routes, navigate } from '@redwoodjs/router' import { Link, routes, navigate } from '@redwoodjs/router'
import { useAuth } from '@redwoodjs/auth' import { useAuth } from '@redwoodjs/auth'
import { Toaster, toast } from '@redwoodjs/web/toast' import { Toaster, toast } from '@redwoodjs/web/toast'
import Tooltip from '@material-ui/core/Tooltip'
import { Popover } from '@headlessui/react' import { Popover } from '@headlessui/react'
import { getActiveClasses } from 'get-active-classes' import { getActiveClasses } from 'get-active-classes'
import Footer from 'src/components/Footer' import Footer from 'src/components/Footer'
@@ -12,11 +11,11 @@ import NavPlusButton from 'src/components/NavPlusButton'
import ReactGA from 'react-ga' import ReactGA from 'react-ga'
import { isBrowser } from '@redwoodjs/prerender/browserUtils' import { isBrowser } from '@redwoodjs/prerender/browserUtils'
import Svg from 'src/components/Svg'
import { ImageFallback } from 'src/components/ImageUploader' import { ImageFallback } from 'src/components/ImageUploader'
import useUser from 'src/helpers/hooks/useUser' import useUser from 'src/helpers/hooks/useUser'
import './MainLayout.css' import './MainLayout.css'
import RecentProjectsCell from 'src/components/RecentProjectsCell' import RecentProjectsCell from 'src/components/RecentProjectsCell'
import LogoType from 'src/components/LogoType'
let previousSubmission = '' let previousSubmission = ''
@@ -72,39 +71,12 @@ const MainLayout = ({ children, shouldRemoveFooterInIde }) => {
}, [hash, client]) }, [hash, client])
return ( return (
<div <div
className="h-full flex flex-col ch-scrollbar overflow-y-scroll overflow-x-hidden" className="flex flex-col h-full overflow-x-hidden overflow-y-scroll ch-scrollbar"
style={{ perspective: '1px', perspectiveOrigin: 'top center' }} style={{ perspective: '1px', perspectiveOrigin: 'top center' }}
> >
<header id="cadhub-main-header"> <header id="cadhub-main-header">
<nav className="flex justify-between h-16 sm:px-4 bg-ch-gray-900"> <nav className="flex justify-between h-16 sm:px-4 bg-ch-gray-900">
<ul className="flex items-center"> <LogoType />
<li>
<Link to={routes.home()}>
<div className="rounded-full overflow-hidden ml-2">
<Svg className="w-10" name="favicon" />
</div>
</Link>
</li>
<li>
<Tooltip title="Very alpha, there's lots of work todo">
<div className="ml-4 flex">
{/* Because of how specific these styles are to this heading/logo and it doesn't need to be replicated else where as well as it's very precise with the placement of "pre-alpha" I think it's appropriate. */}
<h2
className="text-indigo-300 text-2xl md:text-5xl font-ropa-sans py-1 md:tracking-wider"
style={{ letterSpacing: '0.3em' }}
>
CadHub
</h2>
<div
className="text-pink-400 text-sm font-bold font-ropa-sans hidden md:block"
style={{ paddingBottom: '2rem', marginLeft: '-1.8rem' }}
>
pre-alpha
</div>
</div>
</Tooltip>
</li>
</ul>
<ul className="flex items-center"> <ul className="flex items-center">
<li <li
className={getActiveClasses( className={getActiveClasses(
@@ -114,29 +86,29 @@ const MainLayout = ({ children, shouldRemoveFooterInIde }) => {
<NavPlusButton /> <NavPlusButton />
</li> </li>
{isAuthenticated ? ( {isAuthenticated ? (
<li className="h-10 w-10"> <li className="w-10 h-10">
<Popover className="relative outline-none w-full h-full"> <Popover className="relative w-full h-full outline-none">
<Popover.Button <Popover.Button
disabled={!isAuthenticated || !currentUser} disabled={!isAuthenticated || !currentUser}
className="h-full w-full outline-none border-ch-gray-400 border-2 rounded-full" className="w-full h-full border-2 rounded-full outline-none border-ch-gray-400"
> >
{!loading && ( {!loading && (
<ImageFallback <ImageFallback
width={80} width={80}
className="rounded-full object-cover" className="object-cover rounded-full"
imageId={user?.image} imageId={user?.image}
/> />
)} )}
</Popover.Button> </Popover.Button>
{currentUser && ( {currentUser && (
<Popover.Panel className="w-48 absolute z-10 right-0 bg-ch-gray-700 mt-4 px-3 py-2 rounded shadow-md overflow-hidden text-ch-gray-300"> <Popover.Panel className="absolute right-0 z-10 w-48 px-3 py-2 mt-4 overflow-hidden rounded shadow-md bg-ch-gray-700 text-ch-gray-300">
<Link to={routes.user({ userName: user?.userName })}> <Link to={routes.user({ userName: user?.userName })}>
<p className="my-2 text-ch-blue-400 font-fira-code leading-4 text-sm"> <p className="my-2 text-sm leading-4 text-ch-blue-400 font-fira-code">
Hello {user?.name} Hello {user?.name}
</p> </p>
</Link> </Link>
<Link <Link
className="my-2 block hover:text-ch-pink-300" className="block my-2 hover:text-ch-pink-300"
to={routes.user({ userName: user?.userName })} to={routes.user({ userName: user?.userName })}
> >
<div>View Your Profile</div> <div>View Your Profile</div>
@@ -149,7 +121,7 @@ const MainLayout = ({ children, shouldRemoveFooterInIde }) => {
Logout Logout
</a> </a>
<hr className="my-4" /> <hr className="my-4" />
<p className="text-ch-blue-400 font-fira-code leading-4 text-sm"> <p className="text-sm leading-4 text-ch-blue-400 font-fira-code">
Recent Projects Recent Projects
</p> </p>
<RecentProjectsCell userName={user?.userName} /> <RecentProjectsCell userName={user?.userName} />
@@ -161,7 +133,7 @@ const MainLayout = ({ children, shouldRemoveFooterInIde }) => {
<li> <li>
<a <a
href="#" href="#"
className="text-ch-gray-300 mr-1 sm:mr-2 px-2 sm:px-4 py-2 border-2 border-ch-gray-400 rounded-full hover:bg-ch-gray-600" className="px-2 py-2 mr-1 border-2 rounded-full text-ch-gray-300 sm:mr-2 sm:px-4 border-ch-gray-400 hover:bg-ch-gray-600"
onClick={recordedLogin} onClick={recordedLogin}
> >
Sign In/Up Sign In/Up