427 comments found.
Hi, some suggestions for your next update if they make sense:
- Firebase auth session management (beyond the <Auth0Provider/> in app.jsx)
- Build more spinner / loader selections
- Build loading bars / progress bars
- Would like to have an easy way / template to integrate my own html/css templates into the dashboard too
Hello,
Thank you for the suggestions! We will definitely consider it before our next update.
hello, i am working on a react project with hooks. Is it possible to apply your theme to my app without redux? And could you feed more instructions and best practices with how to apply the theme to existing apps. Like building a new seed folder etc. as discussed above. Thank you.
Hello,
Unfortunately we have no such possibilities predefined.
Best regards, Aspirity team.
As I can see this all new seed all page are in .jsx can I have .js project to support latest ES6 and also I am not familiar with jsx project becuse I have worked on .js projects only. or Can you guide me to how to come across solution for .js project.
Hello,
You can add your files to our project and webpack will build these files in spite of the fact that they are in .js format
Best regards, Aspirity team
its throwing an error Line 11: JSX not allowed in files with extension ’.js’ react/jsx-filename-extension
Hello,
Open the .eslint file and add this line
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
}
Best regards, Aspirity team.
Hi. I am really lost with React and this template and it is because I am new on this techs.
Can you give me any advice on how to learn and be able to work with your template?
I am thinking on doing this course: https://www.udemy.com/course/react-the-complete-guide-incl-redux
What would you recommend?
Thank you very much
Hello,
Yes this course looks fine. And we’re sure that you are going to succed on your developing way!
Happy coding! Aspirity team.
Hi there! I am really new developing React. In fact, this is my first experience. I have already developed a rest-api backend and now I have to use your amazing template to do a front end. I have some questions.
1) What is better for rookie devs: start with the folder “template” and remove what we dont need or start with “new-seed” folder and add what I need?
2) The Template folder includes redux right?
Thank you very much!
Hello!
1) We would advise you to start with the new seed and add new features to the template as you develop. Starting with the template and deleting the unnecessary is a very difficult task
2) Yes
Best regards, Aspirity team
Hi, I seem to have some error with your theme (the latest version) when I toggle on the Top Menu:
1) The sidebar is okay (does not show when the display size is wide) https://ibb.co/QpRxxMx 2) However, when I shrink the display size slightly, the sidebar shows up again. (error?) https://ibb.co/QpRxxMx 3) When I shrink it even smaller, the sidebar disappears (correct) https://ibb.co/XWpxXjxAre you able to take a look at (2)? Not sure if its my end. I think its the css + display size configs.
Hello,
Thanks a lot for the report, greatly appeciate! We’re going to fix it in the next update.
Best regards, Aspirity team
Looking forward to your fixes.
I need some guidance in setting the Booking Dashboard as the first page. Are you able to help me?
Hello,
1. Go to the file /template/src/containers/App/Router/index.zhcx 2. import the redirect from the react router 3. Change the line
<Route exact path = "/" component = {Landing} />
to
<Route exact path = "/"> <Redirect to = "dashboard_booking" /> </Route>
Best regards, Aspirity team
Hi, i’ve bought the template. Why not all assets in the img folder included?
Hello,
Try this – template/public/img
The structure should look like this:
Did it help you?
Best regards, Aspirity team
1. Can I buy regular license and use it to get access for many users to manage their personal accounts 2. Can I sell all my company/final product to other person in this case?
Hello,
This is all possible. But for a legal use of EasyDev you need to buy the Extended license in case you charge your end users for your product.
Best regards, Aspirity team
Hi, I just buy the template, but I cant install it. I have 13 node version. Now I downgrade to 12, but I cant start any aplication of the template. It shows errors like eslint, and others…
I have some questions: what version of node you recomend to run? I have to config something else? Or with npm install just enought?
Thank you.
Hello,
Delete the node_modules folder and the package-lock.json file (if you have one), then switch the node version to 12.12.0, everything should work for you.
Best regards, Aspirity team
hi, i get this error when npm start
Failed to compile
./src/scss/app.scss (./node_modules/css-loader/dist/cjs.js??ref—7-oneOf-5-1./node_modules/sass-loader/dist/cjs.js!./src/scss/app.scss)
Error: ENOENT: no such file or directory, scandir ’/home/themeforest/template/node_modules/node-sass/vendor’
Hello,
Can you specify from which folder you ran the npm install command?
Hello, your ad page comes up when I run my program, I don’t want it coming, what should I do to block it..
I want the direct dashboard page to be displayed directly when opened..
best regards
Hello,
You need to change the default page in the routes template / src / containers / App / Router / index.jsx
Best regards, Aspirity team.
Hi I bought the package. In new-seed folder, I run yarn install, the command running for hours without any output. How long “yarn install” should take? Is there something wrong?
please ignore this post
Oops! I double posted.
I’m purchased EasyDev but am having a nightmare trying to install it on Plesk Obsidian. Do you have any idea if this is even possible?
That doesn’t work with React apps. Plesk’s node.js plug-in now requires you to enter the document root which must be a subdirectory of the Application root. This is the opposite to the ReactJS structure – https://docs.plesk.com/en-US/obsidian/administrator-guide/76652/
This makes it impossible to develop on a Plesk domain.
Hello,
Yes, unfortunatelly the Plesk functionality wasn’t included in the template initially. We acknowledge that it can be needed and consider including this functionality in future updates.
Thank you for your feedback. Best regards, Aspirity team.
Hello, i’m using the seed-without-redux and I imported Modal.jsx and scss file to use modal, but I got error related to redux.
Is there any documentation to use the component without redux ? Or can you tell me how to use the Modal without Redux.
Thank you.
Hello,
Try this:
1. easypro/src/dev/template/src/shared/components/Modal.jsx 2. remove props rtl 3. export default connect(state => ({ rtl: state.rtl, }))(ModalComponent); replace with export default ModalComponent
More information you can find here – https://github.com/reactjs/react-modal
It should help but please inform us if it doesn’t. Happy coding!
Best regards, Aspirity team.
Thank you for your help, it’s working fine now. I’m very happy with my purchase ! Thank you !!
Thank you for your kind response!
Hello,
I just bought EasyDev ReactJS, I started with the seed without redux. I have basic question I guess :
When I type something like “Don’t” in the html instead of “Don’t”, I get this compile error : HTML entities must be escaped
I get the same kind of error if the code indent is not perfect.
Is there a setting somewhere to let it run and be less strict about details like this ?
Thank you very much for your help
Hello,
Try this – https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-unescaped-entities.md
It should help but please inform us if it doesn’t.
Best regards, Aspirity team.
I run “npm run build” and then “serve -s build” in “new-seed” template. It has “You need to enable JavaScript to run this app.” error. But, I can start the project with “npm start”. What am I missing?
any advise?
Hello,
It looks like Java Script disabled in your browser. Maybe you have some browser extension that blocks the Java Scrip. So try to enable it and it should help.
Hope our answer was useful.
Best regards, Aspirity team
That is not the case. It does not explain why I can run npm start if I have JavaScript disabled. I can’t build the new-seed project on Mac. Can you?
Previously, the new-seed project can be built but not be served. I found that if you change the “homepage” variable in “package.json” to “homepage”: “https://easydev-react.qa.aspirity.com”. The website can be served. Why is that?
Hello,
Can you please show us your build logs?
Hello there!
Love the look and demos of this project. I tried going to the documentation link at https://previews.aspirity.com/easydev/documentation/introduction but I am unable to access it. I’ve tried from multiple devices and it fails on all of them. Is there another place I can access the documentation?
Thank you!
Hello,
Sorry about this issue. We’ve fixed it, please check now.
Best regards, Aspirity team.
Thanks, got it loaded now!
Great! Happy coding!
Hello, I can’t find the Sketch file download link
Hello,
We’re no longer suppot Sketch files but we sent you the last supported version of the Sketch file on email.
Best regards, Aspirity team.
Thank you very much