Merge branch '4.6' into master
[civicrm-core.git] / Civi / Angular / Page / Main.php
CommitLineData
e7ff7042 1<?php
39c3d5e9 2namespace Civi\Angular\Page;
e7ff7042
TO
3
4/**
5 * This page is simply a container; any Angular modules defined by CiviCRM (or by CiviCRM extensions)
6 * will be activated on this page.
7 *
8 * @link https://issues.civicrm.org/jira/browse/CRM-14479
9 */
39c3d5e9 10class Main extends \CRM_Core_Page {
e7ff7042 11 /**
fe482240 12 * The weight to assign to any Angular JS module files.
e7ff7042
TO
13 */
14 const DEFAULT_MODULE_WEIGHT = 200;
15
2f6c50d5 16 /**
4d93c42f
TO
17 * The resource manager.
18 *
19 * Do not use publicly. Inject your own copy!
20 *
39c3d5e9 21 * @var \CRM_Core_Resources
2f6c50d5 22 */
4d93c42f 23 public $res;
2f6c50d5 24
16072ce1
TO
25
26 /**
4d93c42f
TO
27 * The Angular module manager.
28 *
29 * Do not use publicly. Inject your own copy!
30 *
39c3d5e9 31 * @var \Civi\Angular\Manager
16072ce1 32 */
4d93c42f 33 public $angular;
16072ce1 34
2c60bace
FG
35 /**
36 * The region of the page into which JavaScript will be loaded.
37 *
38 * @var String
39 */
40 public $region;
41
2f6c50d5
TO
42 /**
43 * @param string $title
44 * Title of the page.
45 * @param int $mode
46 * Mode of the page.
39c3d5e9 47 * @param \CRM_Core_Resources|null $res
2f6c50d5
TO
48 * Resource manager.
49 */
50 public function __construct($title = NULL, $mode = NULL, $res = NULL) {
51 parent::__construct($title, $mode);
39c3d5e9 52 $this->res = \CRM_Core_Resources::singleton();
048222df 53 $this->angular = \Civi::service('angular');
6aeeacaf 54 $this->region = \CRM_Utils_Request::retrieve('snippet', 'String') ? 'ajax-snippet' : 'html-header';
2f6c50d5
TO
55 }
56
b5c2afd0
EM
57 /**
58 * This function takes care of all the things common to all
59 * pages. This typically involves assigning the appropriate
60 * smarty variable :)
61 *
a6c01b45
CW
62 * @return string
63 * The content generated by running this page
b5c2afd0 64 */
00be9182 65 public function run() {
6aeeacaf 66 $this->registerResources();
4b07d5bd
TO
67 return parent::run();
68 }
69
a0ee3941 70 /**
2f6c50d5 71 * Register resources required by Angular.
a0ee3941 72 */
6aeeacaf 73 public function registerResources() {
16072ce1 74 $modules = $this->angular->getModules();
4d93c42f 75 $page = $this; // PHP 5.3 does not propagate $this to inner functions.
e7ff7042 76
4d93c42f 77 $this->res->addSettingsFactory(function () use (&$modules, $page) {
e7ff7042 78 // TODO optimization; client-side caching
1da632e0 79 return array_merge($page->angular->getResources(array_keys($modules), 'settings', 'settings'), array(
6bd0dca9
FG
80 'resourceUrls' => \CRM_Extension_System::singleton()->getMapper()->getActiveModuleUrls(),
81 'angular' => array(
82 'modules' => array_merge(array('ngRoute'), array_keys($modules)),
83 'cacheCode' => $page->res->getCacheCode(),
84 ),
1da632e0 85 ));
e7ff7042
TO
86 });
87
6aeeacaf 88 $this->res->addScriptFile('civicrm', 'bower_components/angular/angular.min.js', 100, $this->region, FALSE);
27a90ef6 89
6d57b745 90 $headOffset = 0;
6aeeacaf 91 $config = \CRM_Core_Config::singleton();
27a90ef6 92 if ($config->debug) {
27a90ef6
TO
93 foreach ($modules as $moduleName => $module) {
94 foreach ($this->angular->getResources($moduleName, 'css', 'cacheUrl') as $url) {
6aeeacaf 95 $this->res->addStyleUrl($url, self::DEFAULT_MODULE_WEIGHT + (++$headOffset), $this->region);
27a90ef6
TO
96 }
97 foreach ($this->angular->getResources($moduleName, 'js', 'cacheUrl') as $url) {
6aeeacaf 98 $this->res->addScriptUrl($url, self::DEFAULT_MODULE_WEIGHT + (++$headOffset), $this->region);
27a90ef6
TO
99 // addScriptUrl() bypasses the normal string-localization of addScriptFile(),
100 // but that's OK because all Angular strings (JS+HTML) will load via crmResource.
101 }
2f6c50d5 102 }
2f6c50d5 103 }
27a90ef6
TO
104 else {
105 // Note: addScriptUrl() bypasses the normal string-localization of addScriptFile(),
106 // but that's OK because all Angular strings (JS+HTML) will load via crmResource.
107 $aggScriptUrl = \CRM_Utils_System::url('civicrm/ajax/angular-modules', 'format=js&r=' . $page->res->getCacheCode(), FALSE, NULL, FALSE);
6aeeacaf 108 $this->res->addScriptUrl($aggScriptUrl, 120, $this->region);
27a90ef6 109
6d57b745
TO
110 // FIXME: The following CSS aggregator doesn't currently handle path-adjustments - which can break icons.
111 //$aggStyleUrl = \CRM_Utils_System::url('civicrm/ajax/angular-modules', 'format=css&r=' . $page->res->getCacheCode(), FALSE, NULL, FALSE);
6aeeacaf 112 //$this->res->addStyleUrl($aggStyleUrl, 120, $this->region);
6d57b745
TO
113
114 foreach ($this->angular->getResources(array_keys($modules), 'css', 'cacheUrl') as $url) {
6aeeacaf 115 $this->res->addStyleUrl($url, self::DEFAULT_MODULE_WEIGHT + (++$headOffset), $this->region);
6d57b745 116 }
27a90ef6 117 }
81916bee 118
337fc3e6 119 // If trying to load an Angular page via AJAX, the route must be passed as a
2c60bace
FG
120 // URL parameter, since the server doesn't receive information about
121 // URL fragments (i.e, what comes after the #).
337fc3e6
FG
122 \CRM_Core_Resources::singleton()->addSetting(array(
123 'angularRoute' => \CRM_Utils_Request::retrieve('route', 'String'),
124 ));
2f6c50d5 125 }
e807a9a6 126
b5c2afd0 127}