583 comments found.
Hi Redqteam, Do you support PWA ?
Hello pratak,
Thanks for asking this question,
yes Isomorphic support PWA that means with isomorphic you will get the below PWA features,
- Fast loading and works offline
- Smooth Animations, junk free scrolling and seamless navigation even on flaky networks
- installable and live on the user’s home screen, without the need for an app store
if you have further questions let me know
Thanks Redqteam
Hi Redqteam,
We are considering purchasing this template. Can you please confirm below:
- Relative ease of modifying/customizing UI using tools like Sketch.
- Integration with gql
- Ease of Adding external react components (not antd)
- Does it use Umi etc or plain antd components (not antd)
- Current Nextjs version used and ease of updating Nextjs
Thanks!
Hello wlker,
Thanks for asking about your queries, let me give you some brief information about your requirements here,
- some of the component in the dashboard that design by our dedicated design team, we have also attached the sketch file of these custom component, rest of the component are either antd components or taken from some react library for example: charts
- for gql support you will need graphql configuration which is currently not available but we are looking forward to user feedback and if possible we will provide the gql support in the future
- we are already using some react component beside from antd components in the isomorphic dashboard so you can use it too
- we are using “antd”: “3.13.2” and the components are taken in the below form
import { Alert } from ‘antd’;
isomorphic dashboard doesn’t use Umi or plain antd components it just uses antd like the above code example - we are using latest nextjs version “next”: “8.0.3”, and you can update the next js version just by following next js update guidelines
Thanks Redqteam
thank you Redqteam. Would it be possible to schedule a chat online to discuss your support options and clear a couple more questions?
Hi there,
In your demo there’s a firebase login button but now that I’ve purchased the app and I’m running it there is not firebase login…
What do I need to do to enable it?
Thank you
src->settings->index.jsfor further help you can submit your ticket in our support site, https://redqsupport.ticksy.com/
Thank you, I found it.
Another question,
Any advice on saving additional user information to firebase? Eg name, surname, company name etc etc
- under your Users collection you can save each user details in their documents.
- so when the user register in your site you will create a document for them in Users collection using their user id (preferably)
- when the user edit their profile or add additional information you can save them to their documents
Thank you, that makes sense! I’ll try it.
I’m battling to find the /dashboard page… There are lot’s of links to <Link to=”/dashboard”> but I can’t find the actual page..?
to find a component related with a url, you will have to checked two file,
i) src->router.js (in this file you can see which route loads which components mostly related to authetication)NB: you will need a basic idea about react router to understand this file.
ii) src->containers->App->AppRouter.js (inside the dashboard this router file load the components so you can easily find which link loading which components)
Hi there, Is the side bar support floating out sub-menu items not spread out?
sorry I didn’t understand can you send us some details?
When hover on the collapsed left sidebar, the sidebar will be uncollapsed. I mean if your template support popover right the sub-items not growing the whole sidebar? if my description still not clear, you can see the sidebar part of ‘wieldy react’ demo.
I understand what you are looking for still some screenshot would be better as we are updating the item continuously so if the feature is not available we will provide it in the future updates.
God, forgive my poor english. here is the screenshot what I want the sidebar supported.
thanks for the information, i will discuss with the dev team for the layout and navigation features
Hi, im having problems launching the panel on port 3000 as instructed in the documentation. I installed yarn, with all the dependencies and well when i enter Yarn Start, nothing actually happens, and if i type in localhost:3000 in the browser, it has a internal server error. Just want to get this template up and running so I can get into the code and make my changes.
code: 'invalid-argument',
name: 'FirebaseError',
toString: [Function] }
UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled
with .catch(). (rejection id: 4)
This is a part of the error being displayed in the terminal after i click Yarn Start. Or Npm Start.
Please advise.
please check your ticket, thanks
Hi, The deployment section in the offline documentation is black, and the online version is down. Can you please send the part about the deployment
Thanks
I have exactly same error as masumthahari have ( but I provided firebaseConfig
Hi,
Please open a ticket in the support forum with the screenshots of errors.
Thanks
Hello, Is NEXTJS supported, now?
Yes.
How can I serve the build output folder in a relative path? I added “homepage”: ”./” on package.json and run yarn build, but it is working yet. Reference: https://github.com/facebook/create-react-app/issues/165 . I tried the same for a new create react app and it is works.
Yes, but it is not working, did you test these configs and worked for this template?
this just another create react app which has some functional components, so i don’t see any reason for not working. in your case you can check it if any library or settings is causing the issue for you.
this template does not even use the component BrowserRouter as described here https://facebook.github.io/create-react-app/docs/deployment#building-for-relative-paths
I just checkout this template and change the package.json adding “homepage” as described https://facebook.github.io/create-react-app/docs/deployment#building-for-relative-paths, but it is not working, did you at least test this config?
we will check the relative path with the dev team, but i think you can easily do it using BrowserRouter as the doc says, i haven’t tested it but as we are using React Router for client side routing, i think browse router will do the work for you.
hi, any answer from the dev team? thanks
yeah we have discussed a bit, more detail discussed will be help based on the your implementations, can you inform us a bit exactly what you are trying to do here with building related path, what are your use cases?
you can just use nginx proxy to solve this issue,
location ~* /YOURPATH {
proxy_pass http://YOURAPP:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
But I need to serve my app as static files (result of command “yarn build”). I can not increase the complexity of the deployment running a nginx and another process (example running on port 5000). THanks.
Do you know why “building for relative paths” (https://facebook.github.io/create-react-app/docs/deployment#building-for-relative-paths) does not work for this template?
But this solution for relative path (documentation) does not work with this template. Did you try this solution? Please, test this solution and you will see that does not work.
Relative path is not really within this template scope, but we would love to know more about this.
Have you tried a default create react app where you have added react router and able to deal with relative path?
Yes, I tested this solution https://facebook.github.io/create-react-app/docs/deployment#building-for-relative-paths in a new app using create react app and works, but when I tested this solution in this template it didn’t work
can you share a github repo for your tested solution, actually what we were asking is not only the create react app but also using the react router. so what you have to do. is to use a create react app with react router and then try the relative path. if you don’t use the react router you won’t know if you routes are working or not in the relative path. Thanks
But I do not want to building for relative paths in a project from scratch using create-react-app and react-router. I want to use relative path with this template (isomorphic). How can I build this template using relative paths?
what i was trying to say in my previous reply is that, if you have worked with or know that building for relative path in a create-react-app and react-router basic app. you can do that in our isomorphic template as well.
the new next js version has a second of empty page flash on every page load on both dev and prod. can you look into this?
can you inform me if you are getting it on development server or in production or in both?
it happens on npm run dev and on npm run build && npm run prod. on page load, the content shows up, and immediately, the page goes blank for like 0.5 second, and then it returns back to normal.
for production you need to run npm run build && npm run star though we recommend using yarn build and yarn start
it happens on npm run start too
thanks for the information we will check it with our dev team and push an update with the latest next.js version
i dont think its a next.js version problem. probably something to do with the delay between server and client rendering? or maybe cuz of styled-components.
yeah probably, we will have to check it further, you can submit a ticket to check the progress of this issue. thanks
Is the JWT login working on isomorphic? If yes, why “jwtLogin” function is commented (isomorphic-next/containers/Page/signin.js)?
handleJWTLogin = () => { const { jwtLogin, history } = this.props; const userInfo = { username: document.getElementById(‘inputUserName’).value || ’’, password: document.getElementById(‘inpuPassword’).value || ’’, }; // jwtLogin(history, userInfo); };
Thanks
the jwt login is supported for Firebase and Auth0, if you check the firebase or auth0 login or signup button you will find how it’s working there.
Hi, i want to buy this dashboard. I have one question: can I use this theme as Django admin?
Hi,
Yes, you can.
Regards
- > you need to run “npm run build” and “npm run start”
This doesn’t work for next version . I have freshly downloaded everything and next version doen’t print source of any of the existing pages i.e / or /dashboard or any other pages. I have purchased additional support too but I keep on getting this revert.
you need to run yarn build & yarn start
I did that too .. Still source is not visible. With yarn build and and yarn start I sent meesage in private ticket. I have attached the screenshots too.
ok, i will ask the developer to check your issue, make sure you inform the support team if you have made any changes and also send them your package.json file
Is it possible to install in FIrebase Hosting and use Firebase Database?
our demo is hosted on firebase for your information and check our firebase crud section for the firebase database uses
Hi, when I tried to build and run the app, I’m getting this error: ./src/components/uielements/uppy.js Module not found: Can’t resolve ‘uppy/lib/core’ in ’/isomorphic/src/components/uielements’
npm install indicates all packages are downloaded. How do I resolve it please?
please submit a ticket to our support ticket with your package.json file so that we can test your issue. thanks
hi, Does server side rendering work? when i run “npm run build” and “npm run prod”, there is no source(any html elements input, button etc..) in view-source. it only has a few div tags. if this project has ssr, please tell me how i build it with ssr step by step
you need to run “npm run build” and “npm run start”
when will the new version with nextjs release
it will be available soon, thanks
Hi, I can’t find a live demo for RTL, i’m very interested in buying the product if it has fully RTL UI support.
Does your worksheet use “Steppers” or something similar? I could not find it