1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

#58 fixed lab detection at create dialog

This commit is contained in:
Fedor Katurov 2021-03-30 11:51:35 +07:00
parent e5ed6361e6
commit 558a97d278
3 changed files with 14 additions and 2 deletions

View file

@ -1,5 +1,14 @@
@import "~/styles/variables.scss";
@keyframes appear {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.wrap {
position: absolute;
top: 0;
@ -11,6 +20,7 @@
display: flex;
align-items: center;
justify-content: center;
animation: appear 0.25s forwards;
@include can_backdrop {
backdrop-filter: blur(15px);

View file

@ -21,7 +21,9 @@ const EditorCreateDialog: FC = () => {
const isExist = useMemo(() => values(NODE_TYPES).some(el => el === type), [type]);
const data = useRef({ ...EMPTY_NODE, type });
const isInLab = useMemo(() => !!url.match(/^\/lab/), [url]);
const data = useRef({ ...EMPTY_NODE, type, is_promoted: !isInLab });
if (!type || !isExist) {
return null;

View file

@ -23,7 +23,7 @@ const MainRouter: FC<IProps> = () => {
<Route path={URLS.ERRORS.NOT_FOUND} component={ErrorNotFound} />
<Route path={URLS.PROFILE_PAGE(':username')} component={ProfilePage} />
{is_user && <Route exact path={URLS.LAB} component={LabLayout} />}
{is_user && <Route path={URLS.LAB} component={LabLayout} />}
<Route path={URLS.BASE} component={FlowLayout} />
<Redirect to="/" />