427 comments found.
Hi! For your slider bar, are you able to give a demo on how we can trigger functions via onChange or its equivalent when we move the slider bar?
My attempt which didn’t work out, please help! ` <Range min={-100} max={100} value={[35, 63]} tipFormatter={value => `${value}`} onChange={console.log(‘changing!’)}/> ` Supposed to print ‘changing!’ when we move the slider? But it doesn’t.
Hello, leewenjie! Thank you for purchase, we apologize for so long waiting of answer!
Unfortunately, we haven’t got that functionality, but we planning to add range change handlers!
Now you can do it yourself. You need just to create a handler method, something like this changeRangeHandler = () => { /* put here your logic */ }; And put it at this file ‘new-template/src/shared/components/range_slider/Range.jsx’
Also, you should add this line ‘onChange={this.changeRangeHandler}’ after line ‘tipProps={{ visible: true }}’
Check it! Best regards!
Will try this, thank you
You are welcome!
If our advice helped you, please, rate us with the stars.
Best regards, Aspirity
Do you have a autocomplete component.
Any plans for autocomplete component?. No response on this comment as well.
Hi,
Sorry for the late answer. What did you mean talking about autocomplete component? What the exact component do you need?
Best regards, Aspirity
I meant something like this https://material-ui.com/demos/autocomplete/
Hi again,
We’ve thought about that and decided to add this component in the next updates (probably in a month).
Best regards, Aspirity
Hi, I felt the light theme the icons are not prominent, any recommendations on making the icons more prominent in the lighter theme?
Also how can I use font-awesome icons?
No comments for 16 days?. Is this really how we would get support?
Hi,
Sorry for the late answer. We’re so busy now. To make the icons more visible you can just change color (for example #335058). Sure, you can use font-awesome icons. You need to add the font and edit icons classes in the HTML accordingly to font-awesome classes.
Best regards, Aspirity
will try that thanks
I was wondering if you are able to debug your JSX code. After installing and running the application I am unable to set breakpoints in the Chrome Dev Tools.
Hi,
Yes, it works and we use it. If you can not install the breakpoint tell us how did you try to do that: in a browser or in IDE?
Best regards, Aspirity
Hi, I get the error when I try to load pagination into search results.
` TypeError: Cannot read property ‘pages’ of undefined ProxyComponent.render `
` 110 | const pager = this.pager; 111 | 112 | return ( > 113 | | ^ 114 | {(!pager.pages || pager.pages.length <= 1) ? ’’ : 115 | <Pagination className=”pagination”> 116 | <PaginationItem className=”pagination__item” disabled={pager.currentPage === 1}>
Would you have any tips? `
Hi,
Sorry for the late answer. Could you please detail the error? What steps did you make? What is the pagination code? What are the props values? What is the full text of the error?
Best regards, Aspirity
if i buy this….can i use react 16.7 or the newest one?
if may i know do you used bable or webpack?
Yes, you can. Newest versions (the latest is 16.8.1) hasn’t any breaking changes. There is a webpack in this template.
Best regards, Aspirity
Good day! I could not find the information, tell me please having bought the EasyDev template, will I get an archive with all the files (sources)? Will I be able to customize all the components in any way? Or will it be something like a library where for example the CheckBox component I can transfer only a certain set of properties?
Hi,
Yes, you’ll get all the source files. You’ll be able to edit any template’s code as you want.
Best regards, Aspirity
What Code Editor do you use? if use VS Code pls send VS Code extension list
code—list-extensions | xargs -L 1 echo code—install-extension
Hi,
We use the WebStorm for development.
Best regards, Aspirity
Hello guys! Great job!
I’m working on project without redux and can’t find any example of Select component without redux-form approach. Is it existing or should I create custom one?
Hi,
It is made according to redux-form approach and we didn’t test it without redux.
Best regards, Aspirity
After instaling your theme it gives error while running the demo page (Admin Panel) which is in the template folder.
The 1st error says: Invalid prop `children` of type `array` supplied to `ScrollToTop`, expected a single ReactElement
The 2nd error says: The above error occurred in the <WithMergedOptions> component
The 3rd error says: Cannot convert undefined or null to object
Please do needfull
Hi!
1. To resolve this issue just move the logic operation with ‘loaded’ before <Router/> in App.jsx. We’ll fix it in the next update soon.
2-3 questions: Could you provide full error text or screenshots?
Best regards, Aspirity
for question no 1 : loaded is already before <Router/> Here is code snippet. <ScrollToTop> {!loaded && <svg className=”load__icon”> <path fill=”#4ce1b6” d=”M12,4V2A10,10 0 0,0 2,12H4A8,8 0 0,1 12,4Z” /> </svg> } <Router /> </ScrollToTop>
Hello, saprekSolution! We apologize for long answers, we have fixed this issue now, you can download the latest version. Best regards.
Hi,
I have question about the authentication. I would like to require login to access my pages.
With EasyDev, do I need to add my own authentication logic using Redux or is there anything that are pre made that I can use?
Hi,
The template has no integrated authentification. Just a page with a form. You can use any ways to add the authentification you need.
Best regards, Aspirity
Hi, my name is Rudy. I recently acquired the EasyDev theme, but I am not sure how to use it. Is there a youtube video on how to set it up? Thank you.
Hi Ruby,
Don’t worry, we have the “how-to-install” video. Check it in the article: https://hackernoon.com/how-to-easily-start-a-react-based-project-5dccde9669c3
Best regards, Aspirity
Dear Sir or Madame. I’m interested in EasyDev template, especially extended license. And I have one simple question. Can I use extended license to create commercial project with opened source?
Hi,
Unfortunately, you can not use our template as an open source product — it contradicts to Envato Policy.
Best regards, Aspirity
Hello, I am having issues with adding validation to the wizard form, it will stop the submit but will not show the error under the input field
Hi,
Please, check the Redux documentation about wizard here: https://redux-form.com/7.4.2/examples/wizard/
Best regards, Aspirity
Hello, In script folder there are build and start script. I want a script so that i can create a developer build for testing purposes for dev APIs. How can i create a dev build??
Hi,
The dev script used for development (mostly for a local one, but could be used for qa/staging as well). Build script creates bundle.js with index.html file for publishing. It could be used for development too.
So the question is: “Do you want it to be published (then build) or you need to develop and update front-end code (then start)?
Best regards, Aspirity
Ok, I was not very clear in my previous question. Let me explain again. I have two environments staging and production. API endpoints for both are different and are mentioned in the environment configuration file. I am looking for a script which will create a build for both production and staging without changing the source. For Example, in angular, I could create a production build with the flag—prod (ng build—prod). I am looking for such alternative in the build process.
Hi,
The template has no configuration files, related to project/env specific configs, you have to create them yourself (in order to, for example, change some URLs).
Best regards, Aspirity
I see the website is reaching out to ’*.ru’ site. I dont want CORS . Please send all the files that is necessary to run the website locally as if the website can run without the internet.
Below is not acceptable – Access to XMLHttpRequest at ‘https://mc.yandex.ru/watch/48874142/1?wmode=7&page-url=http%3A%2F%2Flocalhost%3A3000%2Feasydev%2...' (redirected from ‘https://mc.yandex.ru/watch/48874142?wmode=7&page-url=http%3A%2F%2Flocalhost%3A3000%2Feasydev%2Fd...') from origin ‘http://localhost:3000' has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.
Hi,
It seems like we forgot to delete react-yandex-metrika after the last update. Sorry for this. To remove it just delete the file ‘YM.jsx’ from ‘containers/App’ folder and the component YM from containers/App/MainWrapper.jsx, and delete ‘react-yandex-metrika’ package from package.json.
Sorry for the omission.
Best regards, Aspirity
Hello guys. I have some problem. I can’t understand where are separated components. can you explain your structures?
Hi,
You can find components in the ‘shared’ folder: http://localhost:3000/easydev/documentation/file_structure
Best regards, Aspirity
Hello, I need to import an external js, what’s the correct way to do with this template
Hi,
The best way to add an external code is packages installation via npm or yarn. Or you can add the file in project and import it where you want. As a last resort you can add it as <script> in public/index.html.
Best regards, Aspirity
I am looking for the documentation for how to install the and run website.
Hi,
You can find it here: http://previews.aspirity.com/easydev/documentation/installation
Best regards, Aspirity
Hi, is there any guide using the search results with pagination in the dashboard? Any help will be appreciated!
- http://previews.aspirity.com/easydev/default_pages/search_results - Pagination.jsx
Hi,
Try to use pageOfItems to render results. If you still have problems with this issue write us via email. We’ll fix this page and rework pagination in the template asap.
Best regards,
Thanks! I will try it out.