-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1571 from ecency/feature/editor-tour
Submit intro tour
- Loading branch information
Showing
11 changed files
with
274 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export interface IntroStep { | ||
title: string; | ||
message: string; | ||
targetSelector: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.intro-tour-focused { | ||
//z-index: 1041 !important; | ||
position: relative !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
import React, { useEffect, useMemo, useState } from "react"; | ||
import { IntroStep } from "@ui/core"; | ||
import { useMountedState } from "react-use"; | ||
import { usePopper } from "react-popper"; | ||
import { createPortal } from "react-dom"; | ||
import { classNameObject } from "../../../helper/class-name-object"; | ||
import { Button } from "@ui/button"; | ||
import useLocalStorage from "react-use/lib/useLocalStorage"; | ||
import { PREFIX } from "../../../util/local-storage"; | ||
import "./index.scss"; | ||
import { DOMRect } from "sortablejs"; | ||
|
||
interface Props { | ||
steps: IntroStep[]; | ||
id: string; | ||
enabled: boolean; | ||
forceActivation: boolean; | ||
setForceActivation: (v: boolean) => void; | ||
} | ||
|
||
export function IntroTour({ steps, id, enabled, forceActivation, setForceActivation }: Props) { | ||
const [currentStep, setCurrentStep, clearCurrentStep] = useLocalStorage<number | undefined>( | ||
PREFIX + `_it_${id}`, | ||
undefined | ||
); | ||
const [isFinished, setIsFinished] = useLocalStorage(PREFIX + `_itf_${id}`, false); | ||
|
||
const [host, setHost] = useState<any>(); | ||
const [popperElement, setPopperElement] = useState<any>(); | ||
const [hostRect, setHostRect] = useState<DOMRect>(); | ||
|
||
const isMounted = useMountedState(); | ||
const popper = usePopper(host, popperElement, { | ||
placement: "top" | ||
}); | ||
|
||
const step = useMemo( | ||
() => (typeof currentStep === "number" ? steps[currentStep] : undefined), | ||
[currentStep, steps] | ||
); | ||
const totalSteps = useMemo(() => steps.length, [steps]); | ||
const isFirstStep = useMemo( | ||
() => typeof currentStep === "number" && currentStep > 0, | ||
[currentStep] | ||
); | ||
const isLastStep = useMemo(() => steps.length - 1 === currentStep, [steps, currentStep]); | ||
const clipPath = useMemo( | ||
() => | ||
hostRect | ||
? `polygon(0% 0%, 0% 100%, ${hostRect.x}px 100%, ${hostRect.x}px ${hostRect.y}px, ${ | ||
hostRect.x + hostRect.width | ||
}px ${hostRect.y}px, ${hostRect.x + hostRect.width}px ${ | ||
hostRect.y + hostRect.height | ||
}px, ${hostRect.x}px ${hostRect.y + hostRect.height}px, ${ | ||
hostRect.x | ||
}px 100%, 100% 100%, 100% 0%)` | ||
: "unset", | ||
[hostRect] | ||
); | ||
|
||
// Detect enablement and set default step if there aren't any persistent step | ||
useEffect(() => { | ||
if (typeof currentStep === "undefined" && !isFinished && enabled) { | ||
setCurrentStep(0); | ||
} | ||
}, [currentStep, enabled, isFinished]); | ||
|
||
useEffect(() => { | ||
if (forceActivation) { | ||
setCurrentStep(0); | ||
setIsFinished(false); | ||
|
||
setForceActivation(false); | ||
} | ||
}, [forceActivation]); | ||
|
||
// Re-attach host element based on host element | ||
useEffect(() => { | ||
host?.classList.remove("intro-tour-focused"); | ||
|
||
if (step) { | ||
const nextHost = document.querySelector(step.targetSelector); | ||
setHost(nextHost); | ||
|
||
if (nextHost) { | ||
setHostRect(nextHost.getBoundingClientRect()); | ||
nextHost.classList.add("intro-tour-focused"); | ||
} | ||
} else { | ||
setHost(null); | ||
} | ||
}, [step]); | ||
|
||
const nextStep = () => { | ||
if (typeof currentStep === "number" && currentStep < totalSteps - 1) { | ||
setCurrentStep(currentStep + 1); | ||
} | ||
}; | ||
|
||
const prevStep = () => { | ||
if (typeof currentStep === "number" && currentStep > 0) { | ||
setCurrentStep(currentStep - 1); | ||
} | ||
}; | ||
|
||
const finish = () => { | ||
clearCurrentStep(); | ||
setIsFinished(true); | ||
}; | ||
|
||
return isMounted() && !isFinished ? ( | ||
<> | ||
{createPortal( | ||
<div | ||
className={classNameObject({ | ||
"bg-black opacity-[50%] z-[1040] fixed top-0 left-0 right-0 bottom-0": true | ||
})} | ||
style={{ clipPath }} | ||
onClick={() => finish()} | ||
/>, | ||
document.querySelector("#modal-overlay-container")!! | ||
)} | ||
{step && | ||
createPortal( | ||
<div | ||
className="p-3 border border-[--border-color] bg-white rounded-2xl flex flex-col gap-4 z-[1041] min-w-[200px] max-w-[400px]" | ||
style={popper.styles.popper} | ||
{...popper.attributes.popper} | ||
ref={setPopperElement} | ||
> | ||
<div className="text-blue-dark-sky text-sm uppercase flex justify-between"> | ||
<span className="text-xs text-gray-600 mr-3"> | ||
{currentStep! + 1} of {steps.length} | ||
</span> | ||
{step?.title} | ||
</div> | ||
<div>{step?.message}</div> | ||
<div className="flex justify-end gap-2 border-t border-[--border-color] pt-3"> | ||
{isFirstStep && ( | ||
<Button onClick={() => prevStep()} outline={true}> | ||
Previous | ||
</Button> | ||
)} | ||
{!isLastStep && <Button onClick={() => nextStep()}>Next</Button>} | ||
{isLastStep && <Button onClick={() => finish()}>Finish</Button>} | ||
</div> | ||
</div>, | ||
document.querySelector("#popper-container")!! | ||
)} | ||
</> | ||
) : ( | ||
<></> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.