Details
-
Type: New Feature
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 2.0-Beta2
-
Fix Version/s: EE-2.0.0.GA, 2.0.2
-
Component/s: ACE-Components, Framework
-
Labels:None
-
Environment:ACE
Description
ACE components have numerous javascript and CSS dependencies. Each is currently resulting in a separate GET, which drastically slows page load. We should find a means of coalescing these requests into a smaller number of GET requests.
Issue Links
Activity
Mark Collette
created issue -
Mark Collette
made changes -
Field | Original Value | New Value |
---|---|---|
Summary | Javascript coalescing | ACE javascript coalescing |
Salesforce Case | [] |
Mark Collette
made changes -
Mark Collette
made changes -
Ken Fyten
made changes -
Salesforce Case | [] | |
Fix Version/s | 2.0.0 [ 10230 ] |
Ken Fyten
made changes -
Salesforce Case | [] | |
Assignee Priority | P3 | |
Assignee | Arturo Zambrano [ artzambrano ] |
Ken Fyten
made changes -
Assignee Priority | P3 | P2 |
Ken Fyten
made changes -
Salesforce Case | [] | |
Assignee Priority | P2 |
Ken Fyten
made changes -
Salesforce Case | [] | |
Fix Version/s | 2.1 [ 10241 ] | |
Assignee | Arturo Zambrano [ artzambrano ] |
Ken Fyten
made changes -
Salesforce Case | [] | |
Fix Version/s | 2.0.0 [ 10230 ] |
Mark Collette
made changes -
Ken Fyten
made changes -
Link | This issue blocks ICE-6633 [ ICE-6633 ] |
Mark Collette
made changes -
Mark Collette
made changes -
Mark Collette
made changes -
Link | This issue depends on ICE-6103 [ ICE-6103 ] |
Mark Collette
made changes -
Link | This issue blocks ICE-6702 [ ICE-6702 ] |
Mark Collette
made changes -
Salesforce Case | [] | |
Fix Version/s | EE-2.0.0.GA [ 10263 ] |
Mark Collette
made changes -
Summary | ACE javascript coalescing | ACE javascript css coalescing |
Salesforce Case | [] |
Ken Fyten
made changes -
Fix Version/s | EE-2.0.0.GA [ 10263 ] |
Mark Collette
made changes -
Salesforce Case | [] | |
Fix Version/s | EE-2.0.0.GA [ 10263 ] | |
Assignee | Mark Collette [ mark.collette ] |
Mark Collette
made changes -
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Ken Fyten
made changes -
Fix Version/s | 2.0.2 [ 10273 ] | |
Fix Version/s | 2.1 [ 10241 ] |
Ken Fyten
made changes -
Salesforce Case | [] | |
Security | Private [ 10001 ] |
Ken Fyten
made changes -
Status | Resolved [ 5 ] | Closed [ 6 ] |
With
ICE-6153MandatoryResourceComponent functionality, we have access to the complete list of ACE dependencies all in one place, at application startup. All we need to do is refactor the annotation processing to occur more at start-up than its current implementation, which is split between start-up and render time. This would be a good optimisation to make anyhow.Once we have the lists of all javascript dependencies and css dependencies, we could generate a single concatenated file for each, and then add those to the head instead of the individual files. It might not make sense for it to be a single file, but possibly to be a file per library. We should try to serve the least possible number of files, and only make it granular as needed.
Later, aspects of this might be worked into the icefaces-ace.jar build process, so that we only include the relevantly used javascript files. So, keep that in mind when implementing this.
We should decide what kind of options should control this. For example, should it be possible to disable this, so that the individual files are still served instead of the concatenated one?