diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-03-10 09:34:29 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-03-23 13:40:23 +0100 |
commit | eda98ed3df5f304f277f651941cc9ab19dee07bb (patch) | |
tree | b5c6a821c0b5501087dda2e28fdcf152d7fb60a5 /lib | |
parent | f38d36a16167041da7bf528d3822d3ab30c93c1f (diff) | |
download | nextcloud-server-eda98ed3df5f304f277f651941cc9ab19dee07bb.tar.gz nextcloud-server-eda98ed3df5f304f277f651941cc9ab19dee07bb.zip |
Merge vendor js
There is a bunch of javascript we always load from vendors. This
combines this into 1 javascript file. Which reduces the number of
request by ~10.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/legacy/template.php | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/lib/private/legacy/template.php b/lib/private/legacy/template.php index 06632de2847..3f6bfe586db 100644 --- a/lib/private/legacy/template.php +++ b/lib/private/legacy/template.php @@ -114,12 +114,10 @@ class OC_Template extends \OC\Template\Base { \OC_Util::addScript('jquery.avatar', null, true); \OC_Util::addScript('placeholder', null, true); - OC_Util::addVendorScript('select2/select2'); OC_Util::addVendorStyle('select2/select2', null, true); OC_Util::addScript('select2-toggleselect'); OC_Util::addScript('oc-backbone', null, true); - OC_Util::addVendorScript('snapjs/dist/latest/snap', null, true); OC_Util::addScript('mimetypelist', null, true); OC_Util::addScript('mimetype', null, true); OC_Util::addScript("apps", null, true); @@ -139,19 +137,24 @@ class OC_Template extends \OC\Template\Base { OC_Util::addScript('files/fileinfo'); OC_Util::addScript('files/client'); - // Add the stuff we need always - // following logic will import all vendor libraries that are - // specified in core/js/core.json - $fileContent = file_get_contents(OC::$SERVERROOT . '/core/js/core.json'); - if($fileContent !== false) { - $coreDependencies = json_decode($fileContent, true); - foreach(array_reverse($coreDependencies['vendor']) as $vendorLibrary) { - // remove trailing ".js" as addVendorScript will append it - OC_Util::addVendorScript( + if (\OC::$server->getConfig()->getSystemValue('debug')) { + // Add the stuff we need always + // following logic will import all vendor libraries that are + // specified in core/js/core.json + $fileContent = file_get_contents(OC::$SERVERROOT . '/core/js/core.json'); + if($fileContent !== false) { + $coreDependencies = json_decode($fileContent, true); + foreach(array_reverse($coreDependencies['vendor']) as $vendorLibrary) { + //remove trailing ".js" as addVendorScript will append it + OC_Util::addVendorScript( substr($vendorLibrary, 0, strlen($vendorLibrary) - 3),null,true); + } + } else { + throw new \Exception('Cannot read core/js/core.json'); } } else { - throw new \Exception('Cannot read core/js/core.json'); + // Import all (combined) default vendor libraries + OC_Util::addVendorScript('core', null, true); } if (\OC::$server->getRequest()->isUserAgent([\OC\AppFramework\Http\Request::USER_AGENT_IE])) { |