I'm new to sencha, and I'm working on a project that has the following scenario:
I have an esm-all.js big file (210k+ lines), and from what I understood, the whole framework and the application behaviour code is bundled up in this big file. I don't have any other project with folder structure and javascript modules separated in different files in order to start developing and debugging the current features of the application.
So I was wondering how should I procede on that situation, should I try to extract aplication code from that big file and separate them onto different files?
Is that modularization even possible?
Another person on the project has tried doing the modularization but he said was not possible in Sencha 4.2. He also said it was not possible to import files.
If it's possible, does anyone have a good article on that? And about the scenario, does anyone have any tips how could I procede?
I have researched a lot, and didn't find any articles besides on how to do simple things in Sencha 4.2.
It would be really helpful to get the file and folder structure back, I think for sencha would be:
APP_FOLDER
- ModelView
- Model
- Store
- View
- Utils app.js
Thank you.