Closed ihadeed closed 8 years ago
Hey @ihadeed, thanks for reaching out! We are definitely accepting contributions, but will need to discuss how we evaluate new plugins to add to Ionic Native. I think if you're looking to contribute, probably the easiest way to do so right now would be to take a look at adding interfaces for any of the core Cordova plugins that are missing.
Ionic Native should be going up on the v2 docs with the first batch of plugins this week, and after that we will continue to add more.
Please let me know if you have any questions about the project or need help with anything.
Thanks @tlancina for your response.
Yep, the goal for the moment is to just be a wrapper, with no plugin specific logic. A simple example is BarcodeScanner.
StatusBar has not been updated yet, but should be by the end of the week. Plugins that still have work to be done are: File, Push, StatusBar, Toast and TouchID. These are somewhat arbitrary and are just the plugins that were added when the project was started. We will be fleshing things out to add the Cordova core plugins and many of the plugins from ngCordova over the coming weeks.
Ok thanks for clearing things up.
Just submitted a PR .. let me know if I should tweak anything..
Off-topic question: I instealled commitizen but when I run git cz
it only shows me a text editor similar to vi
instead of options to pick from like the screenshot here . I'm using Windows 10. Any clue what I might be missing?
PR looks great, thanks! I left a few comments on the diff. If you want to add the descriptions of the options that would be awesome, but I can also do it after merge.
I'm actually pretty unfamiliar with commitizen still (I still type the commit messages out by hand) so I'm not sure. What shell are you using?
Thanks. I forgot to add the lines you mentioned. Going to fix it and resubmit the PR.
I tried cmd and Git Bash .. Same result.
Hey @ihadeed apologies that I haven't gotten your PRs merged in yet. They're looking good, but I'd like to test the plugins to make sure everything is working as expected. If they haven't gotten in by next week please ping me.
Not sure about the commitizen thing, maybe @jimthedev can chime in quickly on whether there are any windows related commitizen quirks.
@ihadeed As far as I can see ionic-native isn't configured to use commitizen. Whenever commitizen encounters a project that doesn't have a commitizen adapter configured (usually done with commitizen init
), it falls back to the git default which is to ask you to manually enter a message (using the built in git editor). If you prefer not to use the editor, you can just provide a message to commitizen using git cz -m "fix(blah): My message here"
and it will do a normal git commit.
Ah derp, didn't realize it was configured on our end. Thanks!
@ihadeed try pulling latest and running npm install, and let me know if you still have issues.
There's no conventional changelog yet, but I'll add it before the next release.
Thank you @jimthedev @tlancina
I didn't know you need to configure anything for commitizen
@tlancina
Hi there,
I'm currently working on my own library that gives me functionality similar to ngCordova for Ionic 2 ... Just simplifying plugin calls.
I thought I could help build Ionic-native instead of building my own thing and I was wondering if you are accepting contributions to this repository at the moment?