Discussion on Isomorphic - React Admin Dashboard Template

Discussion on Isomorphic - React Admin Dashboard Template

Cart 8,255 sales
Well Documented

redqteam supports this item

Supported

This author's response time can be up to 1 business day.

583 comments found.

Hi I have just downloaded the update, I see you deploy de hotel demo on firebase, do you have a process to deploy on firebase like the superprops project ?

our team have already replied to your ticket and asked your till sunday for your issue

Hi, yes I posted the message before the response

replied.

Hello, there is any starter template?

i’m not sure which config file you are referring to, the settings/index.js file is needed to control thme, site, jwt config

Im asking about config-overrides.js, should i delete that file to use the folder isomorphic-boilerplate to create my application?

this has been used to override some webpack configuration which is not available by default in create-react-app. so if you delete this file there are some feature which might not work.

Hi I want to buy this template, but I can’t checkout using my VISA debit card. What should I do? I need this for my project

you just need to integrate stripe gateway into it. It’s a frontend template that’s why we didn’t included those. Thanks

Hello – Same as the user comment before me I keep getting “fireabseAuth is not a function”. I attempted to make the changes you suggested to the user before me but it doesn’t seem to work. Any help is appreciated.

please submit a ticket to our support site make sure you have provided firebase config in packages->isomorphic->src->settings->index.js

Hi, anytime i try to sign in to my Firebase app which i already connected in the config object, i i keep seeing the error FirebaseAuth is not a function

Hi, i’ve just installed using yarn the project, but when I do the yarn start command it gives me an error. And I am just following the doc steps

/isomorphic/isomorphic$ yarn start

yarn run v1.17.3 error Command “start” not found. info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

can you inform me your node version?

Hi, is the documentation updated? Im having trouble finding file paths specified in the docs :/

Hi RedQTeam,

will you add the scrum board to the nextjs template as well?

Thank you

we will have to look at it. thanks

Good day Guys.

I plan to purchase exactly your product, in comparison with others, in a jealous opinion, it is more functional, despite the fact that the design is probably inferior to peers somewhere.

I wanted to ask: Is it possible to integrate this template with Resst-Api WordPress as a Backend. I understand that there is no ready-made solution the fastest, but could you give a link to the documentation and give you an understanding of how to do this, so that I could finally make a decision to purchase isomorphic

Hello adovgun,

Thanks for your honest opinion, A major update is coming for this template and we are working on the design updates as well.

Regarding rest api wordpress as a backend yes you are right there is not ready made solution but if you want you can do that. our dashboard is a react template using antd component, containers and redux. so basically you will have to fetch your data using redux saga and port that into the component you need. that’s it nothing more nothing less. if you are good with react, redux, redux saga it should be pretty easy for you.

we do have some component documentation but most of them are coming from Antd. so if you understand Antd component documentation it wont be a problem for you. If you won’t have any issue with the workload then you can definitely try our template it will save a lot of your work in the frontend.

Thanks Redqteam

Hi, I can not install it, check the log https://gist.github.com/shrimp2t/a6a344f6a49d5125c65c89551d43d788

yarn – 1.17.3 node – v12.7.0 npm – 6.10.0

Please help

use a stable version node.js that is 10.6 right now you can use any version around 10.x, if it still doesn’t solve your issue submit a ticket to our support site.

Hello, is Auth0 fully integrated already. Meaning can I protect paths pretty simple because Auth0 is already working in the template and I would just have to add my Auth0 credentials?

what about route protection after credentials are enetered. Is that built in or come with instructions for doing it?

for accessing the dashboard page the route protection or restricted route is already available in our template.

awesome

I want to buy this, but I found it have not updated for more than 5 month, I am a little worry about this, will you keep updating this project? thanks. Another question, is this easy integrate with Django Admin?

Hello garywangiam,

Thanks for asking about Isomorphic update.

First of all, I want to inform you that you can easily update it using yarn upgrade command it will work just fine. and if you found any issue you can inform us in our support site we will help you to fix it. Regarding Django admin integration. we have already provided a basic Django jwt implementation with isomorphic so i think you will find it helpful to integrate with django admin.

Thanks

canno’t build next.js (ssr) version…

please submit a support ticket to our support site https://redqsupport.ticksy.com/

Which node version is recommended to build?

we are recommending to use the latest stable version

​Dears,

I downloaded the folder, extracted it, run it using yarn start, works fine. In order to build it, I added the homepage field in the package file as such:

“homepage”: “http://localhost/isomorphic/”

I used the yarn build, copied everything inside the build folder to xampp/htdocs/isomorphic, browse to it (http://localhost/isomorphic/)​, nothing is being displayed, the page is remaining white with only the favicon being displayed

Regards

try by just adding the below code into homepage filed in the package file,

“homepage”: “/isomorphic”

Hi, I like this admin, I’m thinking to buy this admin, Please can you tell me about this little more detailed. This files extension is .JS, .JSX or.TSX, actually i need in .tsx or .ts

yes, we have plan for this, we will definitely do this in future. Next we we are publishing a good update, moving to monorepo architecture, after that we will move it to typescript. Thanks

I want to buy now bcz i ave the requirement now. please, can you do this now ?

sorry it’s not possible to do this now. thanks

If I buy this theme then how to get update and how long i get the update. Please response as early as possible.

you can get update by downloading the updated template or having access to the github repository. you will get update for lifetime.

good to know

Can you offer an alternative with a horizontal navigation instead of the left sidebar?

Thank you.

Could you give me any example or useful link to approach and try to develop it?

you will probably have to implement the layout by yourself, but ant design has already done it for you, you just need to integrate in your app, here is the layout guidelines,

https://ant.design/components/layout/

Nice! The provide a <Menu mode=”horizontal” /> component. Thank you.

can i get PSD file from this admin ?

we don’t have any psd files as most of them are coming from ant design component. there are some custom component that was needed to build a standard dashboard application and we have provided the sketch files for them.

​Hi. I want to change style to Popover and ​use. I did the following but it cannot style:

popover.style.js

import styled from ‘styled-components’; import { palette } from ‘styled-theme’; import { borderRadius } from ’../../../settings/style-util’;

const PopoverWrapper = ComponentName => styled(ComponentName)`

.........

`

export default PopoverWrapper;

popover.js

import { Popover } from ‘antd’; import PopoverStyle from ’./styles/popover.style’; import WithDirection from ’../../settings/withDirection’; const Popp = PopoverStyle(Popover); const Pop = WithDirection(Popp); export default Pop;

Hi wbzev,

PopoverWrapper will not work on the popover.js as they way you are trying to use it, you need to import PopoverWrapper in the js file which is showing in the popover that means the popover content needed to wrapped by PopoverWrapper .

you can see the example of it inside the, src->containers->Topbar->topbarUser.js file and check the TopbarDropdownWrapper

Hi, I submitted a support ticket #2034120 on june 3rd and still haven’t gotten a response back. I resubmitted the same question today #2063680. Please advise. Thanks

answered

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey