admin管理员组文章数量:1345090
I would like to convert websites from PSD prototype to HTML/CSS/Bootstrap and then move on to JavaScript development and using React.js and some JavaScript coding.
Is it possible to use pure Bootstrap with React.js without using React-Bootstrap?
Also is it possible HTML/CSS Freelancer to do React-Bootstrap as a mockup only and then find a JavaScript developer to do the advance work like React.js and JS development?
I would like to develop app for Desktop using Electron and Hybrid App using same code base as possible.
I would like to convert websites from PSD prototype to HTML/CSS/Bootstrap and then move on to JavaScript development and using React.js and some JavaScript coding.
Is it possible to use pure Bootstrap with React.js without using React-Bootstrap?
Also is it possible HTML/CSS Freelancer to do React-Bootstrap as a mockup only and then find a JavaScript developer to do the advance work like React.js and JS development?
I would like to develop app for Desktop using Electron and Hybrid App using same code base as possible.
Share Improve this question edited Jun 24, 2016 at 14:23 I'll-Be-Back asked Jun 24, 2016 at 14:11 I'll-Be-BackI'll-Be-Back 10.8k42 gold badges118 silver badges227 bronze badges 4- 2 Overall yes, some of the DOM stuff like modals might give you some issues. But as long as the className in your JSX = boostrap classnames you should be good – erichardson30 Commented Jun 24, 2016 at 14:13
- @erichardson30 Is it possible to find CSS/HTML Developer to do React-Bootstrap coding (PSD to React-Bootstrap - just mockup) and then find JavaScript developer to do React.js and JS development? – I'll-Be-Back Commented Jun 24, 2016 at 14:16
- It's doable but you'll have write ponents yourself. And why do this if you can have a "clickable" prototype with React-Bootstrap? – Jakub Miziołek Commented Jun 24, 2016 at 14:20
- 1 I've built an app with electron before and since it's essentially a node app, if you pull the electron configuration out of it, it will run like a normal webapp. Electron essentially is using chromium (what powers chrome) to run the application. So there isn't much difference between electron and a normal react app except for the electron configuration. React-bootstrap is just a wrapper around bootstrap, so if the html/css dev created a mockup using bootstrap the JS dev should be able to mimic it exactly with react-bootstrap if needed – erichardson30 Commented Jun 24, 2016 at 14:28
2 Answers
Reset to default 10In theory, yes. Since ReactComponent render themselves as html, you can just put the right css classes and there you go. That's totally fine for the css part of bootstrap.
BUT, all the javascript stuff done by the bootstrap library that modify the DOM will be in "conflict" with the virtual DOM of React.
One way to avoid that is to never rerender a react ponent for which its inner html is modified by bootstrap (by setting shouldComponentUpdate() { return false }
).
Doing this way, you can think of React as just a template library to generate some HTML markup, and letting bootstrap actively modify this markup for you but's it's not what React is made for.
The whole point of React is the ability to see your UI as a function of your state : view = f(state)
at any given moment.
That's why react-bootstrap
reimplements all DOM modifications in a React way.
For sure you can. I will include the bootstrap css as a CDN and go with the normal development.
本文标签: javascriptCan we use pure Bootstrap with ReactjsStack Overflow
版权声明:本文标题:javascript - Can we use pure Bootstrap with React.js? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778979a2537497.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论