Skip to content
Snippets Groups Projects
Commit d16936a8 authored by totten's avatar totten Committed by colemanw
Browse files

CRM-20981 - Call `useApp()` instead of stringing together fiddlybits. (#244)

* CRM-20981 - Call `useApp()` instead of stringing together fiddlybits.

https://issues.civicrm.org/jira/browse/CRM-20981

* Fix inline monospace broken across two lines

MkDocs was displaying this without the space between div and ng-app.

* Custom ng base pages - re-arrange content

* loader.md - Put the load() call in the right spot
parent e28047ef
No related branches found
No related tags found
No related merge requests found
...@@ -132,53 +132,52 @@ If this is a concern, then you can create new base-pages which are tuned to ...@@ -132,53 +132,52 @@ If this is a concern, then you can create new base-pages which are tuned to
a more specific use-case. For example, suppose we want to create a page a more specific use-case. For example, suppose we want to create a page
which *only* has the CiviCase administrative UI. which *only* has the CiviCase administrative UI.
First, create a skeletal CiviCRM page: 1. Create a skeletal CiviCRM page:
``` ```
$ civix generate:page CaseAdmin civicrm/caseadmin $ civix generate:page CaseAdmin civicrm/caseadmin
``` ```
Second, edit the new PHP file and update the `run()` function. Create an 1. Edit the new PHP file and update the `run()` function. Create an
`AngularLoader` to load all the JS/CSS files: `AngularLoader` to load all the JS/CSS files:
```php ```php
public function run() { public function run() {
$loader = new \Civi\Angular\AngularLoader(); $loader = new \Civi\Angular\AngularLoader();
$loader->setModules(array('crmCaseType')); $loader->setModules(array('crmCaseType'));
$loader->setPageName('civicrm/caseadmin'); $loader->setPageName('civicrm/caseadmin');
$loader->load(); $loader->useApp(array(
parent::run(); 'defaultRoute' => '/caseType',
} ));
``` $loader->load();
parent::run();
Third, initialize AngularJS on the client-side. You might put this }
in the Smarty template: ```
```html !!! note "Initializing AngularJS"
<div ng-app="crmCaseType">
<div ng-view=""></div> In this example, we called `useApp()`. This automatically boots
</div> AngularJS on the client side by outputting the HTML snippet
``` `<div ng-app="crmApp">`.
This is suitable for a simple, standalone base-page.
!!! caution "Security note"
When embedding AngularJS within Smarty, it's important that you [do not put untrusted data in Smarty variables](/security/outputs.md#angularjs). If you want to control the AngularJS boot, then omit the call to
`useApp()`. Instead, read the [AngularJS Bootstrap
Finally, flush the cache and visit the new page. Guide](https://code.angularjs.org/1.5.11/docs/guide/bootstrap) and
define your own boot code.
```
# Flush the cache 1. Flush the cache
$ cv flush
# Lookup the URL (Drupal 7 example) ```
$ cv url 'civicrm/caseadmin/#/caseType' $ cv flush
"http://dmaster.l/civicrm/caseadmin/#/caseType" ```
```
!!! seealso "See Also: AngularJS Bootstrap Guide" 1. Visit the new page. (The command below will lookup the URL in a Drupal 7 site.)
There are a few ways to boot Angular, such as `ng-app="..."` or ```
`angular.bootstrap(...);`. These techniques are discussed more in the $ cv url 'civicrm/caseadmin/#/caseType'
[AngularJS Bootstrap Guide](https://code.angularjs.org/1.5.11/docs/guide/bootstrap). "http://dmaster.l/civicrm/caseadmin/#/caseType"
```
!!! caution "Embedding Angular in other contexts" !!! caution "Embedding Angular in other contexts"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment