adbkit icon indicating copy to clipboard operation
adbkit copied to clipboard

Convert to plain JavaScript (or perhaps ES6 with Babel)

Open sorccu opened this issue 8 years ago • 17 comments

This is a tracking issue for converting the codebase to plain JavaScript. Many potential contributors have expressed their feelings that they're unable to work with a CoffeeScript codebase, plus CoffeeScript is being left behind in features anyway. It has outlived its usefulness.

Steps:

  • [ ] Combine lib and src so that we can start writing plain JS files that work from both CS and JS.
  • [ ] Make the linters and hinters to look at the JS codebase while also keeping them looking at the CS codebase.
  • [ ] Replace files one by one over a longer period of time.
  • [ ] Get rid of CS hinters and linters.
  • [ ] Get rid of the prepublish build script (unless converted to Babel).
  • [ ] Remove CoffeeScript.
  • [ ] Be happy.

Help is most welcome.

sorccu avatar Aug 07 '16 13:08 sorccu

https://github.com/decaffeinate/decaffeinate seems to produce surprisingly decent results, at least with the smaller files I tried.

sorccu avatar Aug 08 '16 19:08 sorccu

It's a slow start, but adbkit-apkreader has now been freed from CoffeeScript as of v3.0.0. It was quite time intensive, though. Even though it's a fairly small module, it took over an hour to clean up after a decaffeinate run. I estimate that adbkit would take at least two full working days to go through.

sorccu avatar Sep 22 '17 08:09 sorccu

Hi @sorccu I took a look at decaf branch. So, we could check each .js file, if it was correctly decaffeinated, we can take off the comments. And if not, we just fix it, then jump to the next file?

Sorry, but I didn't understand

Combine lib and src so that we can start writing plain JS files that work from both CS and JS.

Could you explain it better? What do you mean by combining lib and src?

amadeu01 avatar Oct 21 '17 14:10 amadeu01

Tests require the src folder, whereas the public package only has the lib folder.

The decaf branch is slightly out of date. While the converted files may work as-is, many of them look quite crappy.

sorccu avatar Oct 21 '17 16:10 sorccu

adbkit-logcat no longer uses CoffeeScript as of v2.0.0. It took about two hours to convert everything. While larger than adbkit-apkreader which was previously converted, it's still way, way smaller than adbkit itself. My estimate of several days to convert adbkit still stands.

sorccu avatar Oct 21 '17 16:10 sorccu

How is this project going ?

Maybe is time to rewrite the adbkit with pure JavaScript. It's not only just about the CoffeeScript, it's also about the dependencies many of which are out of date, such as the bluebird.

harlentan avatar Mar 31 '18 03:03 harlentan

Outdated deps are a separate issue - some spots still use progress callbacks which means that breaking changes are required, which means more work downstream. It’s not quite so simple.

Also, and please keep in mind that I am trying to say this as nicely as possible, and I am aware that your intent was not malicious, but just to make it clear, open source creators/maintainers are not public utilities. Unfortunately, spending two or more days on the conversion is not a time investment I will be able to or necessarily even want to do anytime soon - certainly you should not expect that. It may happen or it might not. It is a significant task.

If someone wants to take charge of the conversion project, that would be great and would make things go faster :) Should I end up doing it, it will be on my terms.

sorccu avatar Mar 31 '18 03:03 sorccu

Thanks for your effert for this. You did a great job.

harlentan avatar Mar 31 '18 11:03 harlentan

@sorccu can we start by converting the grunt file from CS to JS? I can create a PR for it

phapdinh avatar Sep 19 '19 19:09 phapdinh

Yes

sorccu avatar Sep 20 '19 04:09 sorccu

2020 Go straight to Typescript

P0oOOOo0YA avatar Jan 28 '20 20:01 P0oOOOo0YA

go typescript?

huhuang03 avatar Apr 28 '20 02:04 huhuang03

There is a PR for that. However it has merge conflicts: https://github.com/openstf/adbkit/pull/120 feel free to resolve them :)

koral-- avatar Apr 28 '20 15:04 koral--

I would like to help convert project to plain JavaScript. but as I can see , it's already in plain JavaScript when install with npm. Is it done already?

RexHuang avatar Jun 30 '20 03:06 RexHuang

Coffee files are still in sources: https://github.com/openstf/adbkit/tree/master/src

koral-- avatar Jun 30 '20 16:06 koral--

Here's the sample of plain Javascript version https://github.com/RexHuang/adbkit.js

RexHuang avatar Jul 01 '20 04:07 RexHuang

this PR has existed to convert only the grunt file to javascript for a while and it has no merge conflicts https://github.com/openstf/adbkit/pull/122/files

phapdinh avatar Jul 04 '20 03:07 phapdinh