Description
There are many discussions about the frontend refactorings, this issue is to record the details, and avoid bikeshedding in future.
Background
Gitea is using DOM Native, jQuery and Vue2 together, the UI part is heavily using Fomantic-UI.
Discussion Topics
Should Gitea use a new UI framework?
Some maintainers mentioned Tailwind CSS before.
Gitea frontend now uses Fomantic-UI components heavily, ex: Dropdown, Modal, Checkbox, etc.
Currently there is no conclusion or detailed plan about how to migrate the UI to a new framework.
Should Gitea drop jQuery?
The mentioned Cons of jQuery are:
jQuery Performance
Question: jQuery was proven to be much slower than native (sometimes as much as 10x), just look at their code which is full of hacks to support weird edge cases and legacy browsers. While the performance difference will probably not matter in most cases, I still think it's unnecessary baggage we can avoid by using the underlying APIs directly.
Discussion: In most time it is not that slow and it doesn't affect user experience. JS is slower than C but it doesn't mean that we should write everything in C.
jQuery Popularity
Question: Modern web developers don't even learn this API any more (SPA frameworks strongly discourage jQuery), so the contributor base that knows jQuery will shrink over time.
Discussion: The current situation is: Gitea has a lot of legacy MVC code and uses many jQuery features: event system, ajax, filter and chained-call $().parent().foo().bar()
. If we drop jQuery, we would rewrite them all and introduce a house-made jQuery-like framework. if we replace jQuery with a home-made framework, it would be much less popular than jQuery.
Potential Problems for Refacotring
New PRs using jQuery during migration
Question: If we start the migration, a new PR uses jQuery, what should we do? Force the contributor to rewrite, or we rewrite for them, or just accept it?
Discussion: It's not friendly to force contributors to rewrite without jQuery. If we accept the new PRs with jQuery then new code comes and the percentage of jQuery increases. No conclusion yet.
Continuity
If we decide to start the refactoring, we should guarantee it can succeed. If we stop half-way, then more and more frameworks would be mixed together, it would be a big disaster. That's why we should think carefully and have a clear plan before we continue.
End-to-end tests
by singuliere: The primary problem with refactoring the UI is the lack of end to end testing (e.g. running a browser and have a test click on the web page, using a selenium driver). Not that it will make it impossible. Just significantly more difficult and prone to regressions. It would make sense to start with adding a reasonable amount of end to end testing so that the result of a human interaction with the UI can conveniently be verified to not change after the framework is replaced.
by wxiaoguang: If we do framework level migration and refactoring, then the pages should be rewritten, then all old tests become invalid and should be rewritten too. So the tests had better to be written in a long-term & stable framework.
Next Step
If we choose to drop jQuery, before we make a final decision, we should document all detailed steps about:
- How to deal with Fomantic-UI and its components? If we still use Fomantic-UI heavily, jQuery is a must.
- How will the home-made library for jQuery replacement look like?
- How can we guarantee the refactoring succeed? We can not stop half-way, otherwise there would be a big disaster.
If we choose to continue using jQuery and Fomantic-UI, we can make some new guidelines.