443 comments found.
Hi,
Any suggestions if we want to remove the express server and use our own REST API backend?
Thanks!
Hi Tim,
We suggest to keep express to handle node server. And use separated server to handle REST API. Here’s an article guide https://malcoded.com/posts/react-http-requests-axios/
Feel free if you have any further questions.
Kind regards.
Hi,
Is there github access?
Thanks,
Tim
Hi Tim,
Thanks for purchasing.
For this project we use bitbucket as repo. And for the access currently for internal members only.
Regards.
Thank you. How do we keep up with updates?
Hi Tim,
After you download this template, you can make a duplicate as master and add GIT to this . Once update coming, you’ll be notified from envato. Then just replace all files from newest update to master file. To see what changed/updated code, you can use git diff to see that.
Mostly updates is just deprecated library and fixed bug.
Kind regard.
Hi, I have purchased this theme. We need to enable HTTPS during development in the local machine. Could you please let us know on how to enable this in your webpack configuration or update your theme to enable HTTPS support (ex: Create React App enables HTTPS when its see that environment variable HTTPS is set as true)
Regards, Avishek
Hi avishekdaga,
Thanks for purchasing.
For HTTPS confuguration is /app/.nginx.conf You can uncomment the options and put certificate there.
# Configure the Certificate and Key you got from your CA (e.g. Lets Encrypt) ssl_certificate /path/to/certificate.crt; ssl_certificate_key /path/to/server.key;
And here’s the documentation SSL setup for react-boilerplate: https://github.com/react-boilerplate/react-boilerplate/blob/master/docs/general/server-configs.md
Feel free if you have any further queries.
Kind regards
Hi is it this template has file or image manager?
Hi ekobudiyanto,
Thanks for visiting our portfolio.
For management file/folder, unfortunately we don’t have it yet. But we have some pages/components that might can help you to support managing files or photos
- Upload files: http://dandelion.ux-maestro.com/app/forms/upload
- Tree view: http://dandelion.ux-maestro.com/app/tables/tree-table
- Photo gallery http://dandelion.ux-maestro.com/app/pages/photo-gallery
Kind regards.
is it any plan to add this feature, or we must stick with the pages/component you mention above? thanks.
Hi ekobudiyanto,
For files and folder manager, unfortunately we don’t have a plan to implement it in the near future. But on next time once we implement it, we will let you know.
Kind Regards.
Hi, I want to know about template’s documentation, what kind of documentation is? Just wondering if when I buy it you’ll provide documentation and support
Hi wm34,
Thanks for visiting our portfolio. Here’s the online docs https://ilhammeidi.github.io/dandelion-docs/
Kind regards.
Dear Ilhammeidi,
I’ve downloaded your lasted version and still got the error with Date Picker Localization. In previous versions it didn’t work at all, but now it crashes all the time after clicking on another language with this error: Uncaught TypeError: key.toLowerCase is not a function. There error appears in the Dandelion-pro folder, we haven’t changed anything
Could you please assist?
Hi dimkkXX,
Thanks for purchasing,
We apologize for the inconvenience. And yes the moment.js localizations seems not working properly. So we suggest to use date-fns instead.
First install the date-fns npm i @date-io/date-fns date-fns@next
// import
import frLocale from 'date-fns/locale/fr';
import ruLocale from 'date-fns/locale/ru';
import enLocale from 'date-fns/locale/en-US';
import DateFnsUtils from '@date-io/date-fns';
// constant
const localeMap = {
en: enLocale,
fr: frLocale,
ru: ruLocale,
};
// state
state = {
selectedDate: new Date(),
anchorEl: null,
currentLocale: 'fr',
}
// component
<MuiPickersUtilsProvider utils={DateFnsUtils} locale={localeMap[currentLocale]}>
<DatePicker
value={selectedDate}
onChange={this.handleDateChange}
InputProps={{
endAdornment: (
<IconButton
aria-label="Select locale"
aria-owns={anchorEl ? 'locale-menu' : null}
onClick={this.handleMenuOpen}
>
<Icon> more_vert </Icon>
</IconButton>
),
}}
/>
</MuiPickersUtilsProvider>
And here’s full demo code for dandelion-pro template https://gist.github.com/ilhammeidi/69e2a5b0fda600b7c74025228bd5c2c3
you can put in here: /app/containers/Forms/demos/DateInput.js
And here’s the sample implementation from original docs https://material-ui-pickers.dev/localization/date-fns
We will fix this issue and update in next release soon.
Feel free if you have any further queries.
Kin regards.
Thanks a lot for your support, it worked with dandelion template but i get an error in my project:
withTheme.js:31 Uncaught Error: You are calling withTheme(Component) with an undefined component. You may have forgotten to import it. at withTheme (withTheme.js:31) at eval (MainMenu.js?f922:149) at Module../app/components/Sidebar/MainMenu.js (main.js:1365) at webpack_require (main.js:787) at fn (main.js:150) at eval (SidebarContent.js:25) at Module../app/components/Sidebar/SidebarContent.js (main.js:1389) at webpack_require (main.js:787) at fn (main.js:150) at eval (HeaderMenu.js:35)
Do you have any thoughts? 
Hello again dimkkXX,
Thanks for reporting this issue.
After we investigate it, we couldn’t find and reproduce this error message. But you can removewithTheme for exporting component in /app/components/Sidebar/MainMenu.js since it’s not required.
export default withStyles(styles)(injectIntl(MainMenuMapped));
Hope this can help. Feel free if you have any further queries.
Kind regards.
Dear Ilhammeidi,
Thanks, it helps me!
But there is a new issue -
Uncaught TypeError: Cannot read property ‘render’ of undefined at isStateLess (webpack://%5Bname%5D/./node_modules/redux-form-material-ui/es/utils.js?:7) at InputComponent.render (webpack://%5Bname%5D/./node_modules/redux-form-material-ui/es/createComponent.js?:51) at finishClassComponent (webpack://%5Bname%5D/./node_modules/react-dom/cjs/react-dom.development.js?:14741) at updateClassComponent (webpack://%5Bname%5D/./node_modules/react-dom/cjs/react-dom.development.js?:14696) at beginWork (webpack://%5Bname%5D/./node_modules/react-dom/cjs/react-dom.development.js?:15644) at performUnitOfWork (webpack://%5Bname%5D/./node_modules/react-dom/cjs/react-dom.development.js?:19312) at workLoop (webpack://%5Bname%5D/./node_modules/react-dom/cjs/react-dom.development.js?:19352) at renderRoot (webpack://%5Bname%5D/./node_modules/react-dom/cjs/react-dom.development.js?:19435) at performWorkOnRoot (webpack://%5Bname%5D/./node_modules/react-dom/cjs/react-dom.development.js?:20342) at performWork (webpack://%5Bname%5D/./node_modules/react-dom/cjs/react-dom.development.js?:20254)
It’s strange since I have react-dom installed… Could you please advise?
Hello again dimkkXX,
In the latest version dandelion-pro v1.5, we’re not sure why this happen, because we not use redux-form-material-ui anymore.
Since we’re using material-ui ver.4.x, we removed redux-form-material-ui usage, because not supported, then we created new custom component in /app/components/Forms/ReduxFormMUI.js So you can use this components instead redux-form-material-ui. And also change all redux-form-material-ui usage if needed.
The example usage is in /app/containers/Forms/demos/ReduxFormDemo.js
About those errors, it because the project use material-ui ver.4.x but the redux-form-material-ui is not support it yet, and we still waiting update from the creator.
Hope this can help. Feel free if you have any further queries.
Kind regards.
Hello, Team
I have purchased this theme and when I run ‘npm install’ I’ve got bunch of error messages. I am running on Mac OSx. I’ve tried ‘npm start’, but it did not work also.
Here are some error messages what I’ve got with ‘npm install’. Note: I’ve tried with ‘sudo npm install’ and ‘npm -g install’, ‘npm—save-dev install’
Please check error messages and help us.
—-—-- Error Messages-—-——-
npm WARN lifecycle dandelion_pro@1.5.0~preinstall: cannot run in wd dandelion_pro@1.5.0 npm run npmcheckversion (wd=/Test/dandelion-pro_v150/starter-project)
> fsevents@1.2.9 install /Test/dandelion-pro_v150/starter-project/node_modules/fsevents > node install
node-pre-gyp WARN Using request for node-pre-gyp https download
node-pre-gyp WARN Pre-built binaries not installable for fsevents@1.2.9 and node@12.9.0 (node-v72 ABI, unknown) (falling back to source compile with node-gyp)
node-pre-gyp WARN Hit error EACCES: permission denied, mkdir ’/Test/dandelion-pro_v150/starter-project/node_modules/fsevents/lib’
gyp ERR! configure error
gyp ERR! stack Error: EACCES: permission denied, mkdir ’/Test/dandelion-pro_v150/starter-project/node_modules/fsevents/build’
gyp ERR! System Darwin 18.7.0
gyp ERR! command ”/usr/local/bin/node” ”/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js” “configure” “-fallback-to-build” “-module=/Test/dandelion-pro_v150/starter-project/node_modules/fsevents/lib/binding/Release/node-v72-darwin-x64/fse.node” “-module_name=fse” “-module_path=/Test/dandelion-pro_v150/starter-project/node_modules/fsevents/lib/binding/Release/node-v72-darwin-x64” “-napi_version=4” “-node_abi_napi=napi” “-napi_build_version=0” “-node_napi_label=node-v72”
gyp ERR! cwd /Test/dandelion-pro_v150/starter-project/node_modules/fsevents
gyp ERR! node -v v12.9.0
gyp ERR! node-gyp -v v5.0.3
gyp ERR! not ok
node-pre-gyp ERR! build error
node-pre-gyp ERR! stack Error: Failed to execute ’/usr/local/bin/node /usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js configure—fallback-to-build—module=/Test/dandelion-pro_v150/starter-project/node_modules/fsevents/lib/binding/Release/node-v72-darwin-x64/fse.node—module_name=fse—module_path=/Test/dandelion-pro_v150/starter-project/node_modules/fsevents/lib/binding/Release/node-v72-darwin-x64—napi_version=4—node_abi_napi=napi—napi_build_version=0—node_napi_label=node-v72’ (1)
node-pre-gyp ERR! stack at ChildProcess.<anonymous> (/Test/dandelion-pro_v150/starter-project/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/compile.js:83:29)
node-pre-gyp ERR! stack at ChildProcess.emit (events.js:209:13)
node-pre-gyp ERR! stack at maybeClose (internal/child_process.js:1021:16)
node-pre-gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5)
node-pre-gyp ERR! System Darwin 18.7.0
node-pre-gyp ERR! command ”/usr/local/bin/node” ”/Test/dandelion-pro_v150/starter-project/node_modules/fsevents/node_modules/node-pre-gyp/bin/node-pre-gyp” “install” “—fallback-to-build”
node-pre-gyp ERR! cwd /Test/dandelion-pro_v150/starter-project/node_modules/fsevents
node-pre-gyp ERR! node -v v12.9.0
node-pre-gyp ERR! node-pre-gyp -v v0.12.0
node-pre-gyp ERR! not ok
Failed to execute ’/usr/local/bin/node /usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js configure—fallback-to-build—module=/Test/dandelion-pro_v150/starter-project/node_modules/fsevents/lib/binding/Release/node-v72-darwin-x64/fse.node—module_name=fse—module_path=/Test/dandelion-pro_v150/starter-project/node_modules/fsevents/lib/binding/Release/node-v72-darwin-x64—napi_version=4—node_abi_napi=napi—napi_build_version=0—node_napi_label=node-v72’ (1)
> node-sass@4.12.0 install /Test/dandelion-pro_v150/starter-project/node_modules/node-sass > node scripts/install.js
Unable to save binary /Test/dandelion-pro_v150/starter-project/node_modules/node-sass/vendor/darwin-x64-72 : Error: EACCES: permission denied, mkdir ’/Test/dandelion-pro_v150/starter-project/node_modules/node-sass/vendor’ at Object.mkdirSync (fs.js:806:3) at sync (/Test/dandelion-pro_v150/starter-project/node_modules/mkdirp/index.js:71:13) at Function.sync (/Test/dandelion-pro_v150/starter-project/node_modules/mkdirp/index.js:77:24) at checkAndDownloadBinary (/Test/dandelion-pro_v150/starter-project/node_modules/node-sass/scripts/install.js:114:11) at Object.<anonymous> (/Test/dandelion-pro_v150/starter-project/node_modules/node-sass/scripts/install.js:157:1) at Module._compile (internal/modules/cjs/loader.js:936:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:947:10) at Module.load (internal/modules/cjs/loader.js:790:32) at Function.Module._load (internal/modules/cjs/loader.js:703:12) at Function.Module.runMain (internal/modules/cjs/loader.js:999:10) { errno: -13, syscall: ‘mkdir’, code: ‘EACCES’, path: ’/Test/dandelion-pro_v150/starter-project/node_modules/node-sass/vendor’ }
> pre-commit@1.2.2 install /Test/dandelion-pro_v150/starter-project/node_modules/pre-commit > node install.js
> core-js@2.6.9 postinstall /Test/dandelion-pro_v150/starter-project/node_modules/attr-accept/node_modules/core-js > node scripts/postinstall || echo “ignore”
Thank you for using core-js ( https://github.com/zloirock/core-js ) for polyfilling JavaScript standard library!
The project needs your help! Please consider supporting of core-js on Open Collective or Patreon: > https://opencollective.com/core-js > https://www.patreon.com/zloirock
Also, the author of core-js ( https://github.com/zloirock ) is looking for a good job -)
> spawn-sync@1.0.15 postinstall /Test/dandelion-pro_v150/starter-project/node_modules/spawn-sync > node postinstall
> ngrok@3.1.1 postinstall /Test/dandelion-pro_v150/starter-project/node_modules/ngrok > node ./postinstall.js
ngrok – cached download found at /Users/mac/.ngrok/aHR0cHM6Ly9iaW4uZXF1aW5veC5pby9jLzRWbUR6QTdpYUhiL25ncm9rLXN0YWJsZS1kYXJ3aW4tYW1kNjQuemlw.zip ngrok – unpacking binary ngrok – binary unpacked to /Test/dandelion-pro_v150/starter-project/node_modules/ngrok/bin/ngrok
> node-sass@4.12.0 postinstall /Test/dandelion-pro_v150/starter-project/node_modules/node-sass > node scripts/build.js
Building: /usr/local/bin/node /Test/dandelion-pro_v150/starter-project/node_modules/node-gyp/bin/node-gyp.js rebuild—verbose—libsass_ext=—libsass_cflags=—libsass_ldflags=—libsass_library=
gyp info it worked if it ends with ok
gyp verb cli [
gyp verb cli ’/usr/local/bin/node’,
gyp verb cli ’/Test/dandelion-pro_v150/starter-project/node_modules/node-gyp/bin/node-gyp.js’,
gyp verb cli ‘rebuild’,
gyp verb cli ‘—verbose’,
gyp verb cli ‘—libsass_ext=’,
gyp verb cli ‘—libsass_cflags=’,
gyp verb cli ‘—libsass_ldflags=’,
gyp verb cli ‘—libsass_library=’
gyp verb cli ]
gyp info using node-gyp@3.8.0
gyp info using node@12.9.0 | darwin | x64
gyp verb command rebuild []
gyp verb command clean []
gyp verb clean removing “build” directory
gyp verb command configure []
gyp verb check python checking for Python executable “python2” in the PATH
gyp verb `which` failed Error: not found: python2
gyp verb `which` failed at getNotFoundError (/Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:13:12)
gyp verb `which` failed at F (/Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:68:19)
gyp verb `which` failed at E (/Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:80:29)
gyp verb `which` failed at /Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:89:16
gyp verb `which` failed at /Test/dandelion-pro_v150/starter-project/node_modules/isexe/index.js:42:5
gyp verb `which` failed at /Test/dandelion-pro_v150/starter-project/node_modules/isexe/mode.js:8:5
gyp verb `which` failed at FSReqCallback.oncomplete (fs.js:166:21)
gyp verb `which` failed python2 Error: not found: python2
gyp verb `which` failed at getNotFoundError (/Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:13:12)
gyp verb `which` failed at F (/Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:68:19)
gyp verb `which` failed at E (/Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:80:29)
gyp verb `which` failed at /Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:89:16
gyp verb `which` failed at /Test/dandelion-pro_v150/starter-project/node_modules/isexe/index.js:42:5
gyp verb `which` failed at /Test/dandelion-pro_v150/starter-project/node_modules/isexe/mode.js:8:5
gyp verb `which` failed at FSReqCallback.oncomplete (fs.js:166:21) {
gyp verb `which` failed stack: ‘Error: not found: python2\n’ +
gyp verb `which` failed ’ at getNotFoundError (/Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:13:12)\n’ +
gyp verb `which` failed ’ at F (/Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:68:19)\n’ +
gyp verb `which` failed ’ at E (/Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:80:29)\n’ +
gyp verb `which` failed ’ at /Test/dandelion-pro_v150/starter-project/node_modules/which/which.js:89:16\n’ +
gyp verb `which` failed ’ at /Test/dandelion-pro_v150/starter-project/node_modules/isexe/index.js:42:5\n’ +
gyp verb `which` failed ’ at /Test/dandelion-pro_v150/starter-project/node_modules/isexe/mode.js:8:5\n’ +
gyp verb `which` failed ’ at FSReqCallback.oncomplete (fs.js:166:21)’,
gyp verb `which` failed code: ‘ENOENT’
gyp verb `which` failed }
gyp verb check python checking for Python executable “python” in the PATH
gyp verb `which` succeeded python /usr/bin/python
gyp verb check python version `/usr/bin/python -c “import sys; print “2.7.10
gyp verb check python version .%s.%s” % sys.version_info[:3];”` returned: %j
gyp verb get node dir no—target version specified, falling back to host node version: 12.9.0
gyp verb command install [ ‘12.9.0’ ]
gyp verb install input version string “12.9.0”
gyp verb install installing version: 12.9.0
gyp verb install—ensure was passed, so won’t reinstall if already installed
gyp verb install version is already installed, need to check “installVersion”
gyp verb got “installVersion” 9
gyp verb needs “installVersion” 9
gyp verb install version is good
gyp verb get node dir target node version installed: 12.9.0
gyp verb build dir attempting to create “build” dir: /Test/dandelion-pro_v150/starter-project/node_modules/node-sass/build
gyp ERR! configure error
gyp ERR! stack Error: EACCES: permission denied, mkdir ’/Test/dandelion-pro_v150/starter-project/node_modules/node-sass/build’
gyp ERR! System Darwin 18.7.0
gyp ERR! command ”/usr/local/bin/node” ”/Test/dandelion-pro_v150/starter-project/node_modules/node-gyp/bin/node-gyp.js” “rebuild” “-verbose” “-libsass_ext=” “-libsass_cflags=” “-libsass_ldflags=” “—libsass_library=”
gyp ERR! cwd /Test/dandelion-pro_v150/starter-project/node_modules/node-sass
gyp ERR! node -v v12.9.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
Build failed with error code: 1
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.9 (node_modules/fsevents):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.9 install: `node install`
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: Exit status 1
npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! node-sass@4.12.0 postinstall: `node scripts/build.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the node-sass@4.12.0 postinstall script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in: npm ERR! /Users/mac/.npm/_logs/2019-09-17T18_16_33_415Z-debug.log
Hi pjtech,
Thanks for purchasing.
Those error mean the node-sass not installed sucesfully. May because connection problem, changed node environment during installation, or blocked node-sass repository.
So please remove node_modules/ foldera and run npm install again.
If error still happen, please try to install node-sass manually by npm install node-sass sass-loader --save
Then Build dll libraries npm run build:dll
And start project again by npm start
Hope this can help. Feel free if you have any further queries.
Kind regards.
Hi. I just bought this theme and looking at the code, I do not see it as a library but as an application (starter) that we need to configure. It makes it very difficult to get started like this as we have to go and “clean” the starter app. Also, ongoing, it is a problem as we will get the theme code and our app code mixed together. What to do when you have an update to the theme?
Thanks!
Hi checklist,
Thanks for purchasing.
Yes basically this is a website template and pre-build apps. So when updates come, we will update the change log summary at the bottom of item description. And for the updated code, you need to updated every changes manually, because we are not allowed to access customer projects.
In example you can use GIT to your’e original purchased template. And when update comes, you can download and replace the code. Then use git diff to see the updates and differences.
Feel free if you have any further queries.
Kind Regards.
When we deploy production build on server we get chunk file download failed with status code 404. so how can i fix this issue ?
Hi yuvraj-softvan,
Thanks for purchasing.
When run build process, please make sure it finish and generate all chunk files like this https://ilhammeidi.github.io/dandelion-docs/#run
The build process will take 7-10 minutes. Also this is faster way, you can build it in local development, after that push the build/ folder to server production.
Feel free if you have any further queries.
Kind regards.
Hi ilhammeidi, first of all, congratulation for that great job. I would like to develop both web and mobile application. What can I do to use quite the same template ? is it possible ? or do you have the react native version of this beautiful template ? thanks
Hi rivelnet,
Thanks for reaching us and your’e compliment.
Unfortunately we don’t have react-native version. And for integration with react native/mobile app, we are not sure can done easly. In this case need to build mobile apps from beginning
It because for main UI Framework we use material-ui, which has web version (reactjs) only. Maybe there some similiar material-ui for react native, but that much different for syntax, components and default props. And also this template use HTML tag like div, input, h1, etc that react native doesn’t have.
So that’s all our concern. Have a nice day.
Kind regards.
Hi my purchase code is f5e7c86f-0734-4e71-be9c-bd1483fcc242 – 21 Aug 2019.
I sent you a message yesterday, Please can you verify it. Thanks in advanced
Hi aciertard,
Thanks for purchasing,
We just replied your’e email.
Regards.
Hi Ilhammeidi,
Thanks for the beautiful template.
About a month ago you said you will release updated theme Material 4 “next month”.
Any update on that?
Hi akiarostami,
Thanks for reach us and the appreciations.
We’ve finish upgrade to MUI4 and will release around this Sunday or on early next week.
Regards.
Hi , I’m developing one program Api and I really love your template , but I’m not familiarized with React . I have a lot of Knowledge in back end with c# , front and using razor .
Today I downloaded the starter kit to learn how to work you template , but I confess I’m a little lost .
The Pro template have some manual to guide me ?
The program that I’m developing is an web Api with JWT authentication and the fron I really would like to use You dandelion Pro.
Hi luizhcrivelli,
Thanks for visiting our portfolio and the appreciations.
This is the full documentation of dandelion-pro https://ilhammeidi.github.io/dandelion-docs/
FYI this template is front-end side only, if want to integrate with backend API can see this example https://reactjs.org/docs/faq-ajax.html
Regards.
Hello thanks for your explanations Your documentation will be very helpful.
About the integration with backend , I was already expecting it. I think there is no front-end template that already ships with these links to backend already in an advanced state.
By the way, in your’s documentation page on ‘Starter project’ session there is a duplicate word “without without” 
Hello again luizhcrivelli,
Thanks for the notice.
If you’d like to see other our portfolio https://themeforest.net/item/enlite-prime-reactjs-fullstack-website-template/23803960The Enlite Prime has sample apps with API integration for authentications and CRUD apps. For API backend we use Google Firebase.
Here’s the docs https://ilhammeidi.github.io/enlite-docs/
Kind regards.
hello ilhammeidi.
I purchased your designed template. please help.
How to change locale, localization of Calendar component and Etc…??
Thanks.
Hi minamson,
Thanks for purchasing,
For the localization settings are in /app/i18n.js and /app/containers/LanguageProvider/. Then for the Translation file: /app/translations/
This template built with react-boilerplate which supported multi language. But we don’t have implement the multiple language feature completely. To learn more about language configuration can check here https://github.com/react-boilerplate/react-boilerplate/blob/master/docs/js/i18n.md
Feel free if You have any further queries.
Kind regards.
Hey your admin template dandelion pro really catched my eye and was planing on buying it, but I’m not really convinced about it using JSS, do you have a version with regular CSS? I don’t know if using JSS the styles are all in the same file, I’m not that experienced on front end, mostly worked with JQuery and bootstrap.
Thanks
Hi sgarofalo808,
Thanks for visiting our portfolio and the appreciations.
Unfortunately we don’t have jquery and regular css version. This template with React.js. And will not support in static HTML
Kind regards.
Can we screenshare, I have a question about how this template uses redux form. Thanks !
In your redux forms, in file LoginV2.js, you have
”””<LoginFormV2 onSubmit={(values) => this.submitForm(values)} />”””
and in LoginFormV2.js, you have
””“onSubmit={handleSubmit}.”””
How does the `this.submitForm(values)` get passed to `handleSubmit` ?
nvm! got it, it was an issue with one of the <Field> components. sorry to bother!
Hi roykesserwani,
Thanks for purchasing.
You can reach us via product comment support or private message us in profile https://themeforest.net/user/ilhammeidi then we will reply you from private mail.
Kind regards.
Hi, I have 3 queries related to this product:
1. React router routes are not working as expected when i deploy my code on google cloud. when i hard reload the page then my website crashes by giving some error like url not found except for the root url, else works fine locally.
2. Environment variables are not working. After setting environment variable when i console log process.env.variableName, it returns undefined
3. After running npm run build, ‘serve -s build’ command is giving error ‘serve is not recognized as an internal or external command’, even after installing serve globally
thanks
Hi shazzak,
Thanks for purchasing.
Here’s our answer bellow:
1. It seem’s need some configuration in google cloud like allowing access in build/ folder. Here’s documentation for routing in GClouds https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed. And also here’s discussion about react router in Google Cloud https://stackoverflow.com/questions/54247953/how-do-i-setup-routing-for-react-in-gae-directly-routing-to-react-router-dom-ro
2. To get Environment variables you can use process.env.NODE_ENV. Because there’s not property variableName.
3. To run app in production is by use npm run start:prod and run with PM2 node node_modules/.bin/cross-env NODE_ENV=production pm2 start server
The detail about deployment can see in documentation. And here’s the online docs https://ilhammeidi.github.io/dandelion-docs/#run
Hope this can help. Feel free if You have any further queries.
Kind regards.
thanks for the response but still issue 2 is not solved:
suppose i have set a custom environment variable like ‘API_URL’ and assign it the value ‘abc’ so usually i can access it with process.env.API_URL but in this case it doesn’t works.
thanks
Hi shazzak,
By following node documentation
node 8: https://nodejs.org/dist/latest-v8.x/docs/api/process.html#process_process_env
node 10: https://nodejs.org/dist/latest-v10.x/docs/api/process.html#process_process_env
You can try this in app/app.jsprocess.env.foo = 'bar'; console.log(process.env);expected result:
{foo: "bar"}
Regards.
Dear author, I purchased your designed template last week. The project is moving slowly when we tried to integrate the template with my existing apps. Please help us with the following technical challenges: (1) If we don’t want to include color palette,how to remove it on certain components and which file need to navigate for that?
(2)how we can give space between the label and the option switch?
(3)in the chatbot, how can we include options and image under the messages in a dialog?
(4)How to place upload button right below the text input box on the right and submit & reset buttons on the lower-left corner?
Please let us know asap. Thanks!
Jenny
Hi Jenny,
Thanks for purchasing.
Here’s our answer bellow:
1. You can remove that in /app/containers/App/ThemeWrapper.js which is <TemplateSettings /> components. Or you can use starter-project if you wan’t to use clean version.
mySwitchmargin: {
marginRight: 200
}
then overide it in root style
<Switch
checked={antonie}
onChange={this.handleChange('antonie')}
value="antonie"
classes={{
root: classes.mySwitch
}}
/>
3. Can add any html elements in /app/components/Chat/ChatRoom.js. In function getChat
For the sample option menu documentation can see more here: http://enlite.ux-maestro.com/app/ui/drawer-menu
4. You can use display flex or material-ui grid to adjust element position and size like this example http://enlite.ux-maestro.com/app/layouts/grid
Hope this can help. Feel free if you have any further queries.
Kind Regards.
Dear ilhammeidi, Thank you for the quick response! Your answers to my questions are very helpful! By the way, do you offer one to one email support? I prefer to ask questions by sending emails to you since it is a private project. If you don’t want to disclose your email here. You can send an email to my email account. Thanks!
Jenny
Hi Jenny,
We’re happy to hear that. You can raise your question by send us private messages in our profile https://themeforest.net/user/ilhammeidi. Then your’e messages will be forwarded to our private email.
Best regards.
Hi Ilhammeidi, the link you provided is not a valid one. Please check your end and send me a link to send you a private email.
I have a question about attaching files in the email / chat / web form modules. My apps allow the user to upload images in the chat. How can we use the template to control the size of display in the email attachment or chat message or web form preview? Please give me some solutions. Thanks!
my email is jennywang2k16@gmail.com. Thanks!
Hi jennywang2k16,
We just sent you an email about this question.
Kind regards.
i want the html theme of this template
Hi ilhammeidi, I have some issues after deploy Dandelion pro template. I deployed my app in amazon, when I introduce the url I can run the app but I can’t see the images of the project and a lot of 403 errors are shown. I ran npm run build and npm start:prod locally and all is working fine. Can you help me? Do you know anything about that?
Best Regards
Hi miguel,
Thanks for purchasing.
It seems you need to allow access permission in images folder. Here’s link to configure that. https://aws.amazon.com/premiumsupport/knowledge-center/iam-s3-user-specific-folder/
Hope this can help you. Feel free if you have any questions.
Kind regards.
Hi ilhammeidi, I think I already saw the problem. I deployed the template with amazon s3. So after run “npm run build” I can see that images folder are not inside build folder then when I access to the url in amazon I have a lot of 403 error messages with the images because they are not there. I tried and I copied the images of the project from public folder to build folder and finally I can see the images when I go to the url in amazon. Maybe you have to include in the npm run build command in the template some script to copy the images inside build folder. In fact, I read a comment here and someone had the same problem. What do you think?
Best regards
Hi miguel,
When run npm run build all images from public/images/ should be auto copied to build/ folder. We’re not sure in you’re case can be happen. Is there any errors when run npm run build?
Also for the photo’s and big size images will better if put in CDN like amazon, cloudinary, etc.
Regards.