Let’s say we have to access a page property foobar in our Angular Controller. One simple and quick way that might come to mind is to initialize with a ng-init directive like this:
<span ng-init="yourFooBar=’${properties.foobar}’" ></span>
This allows it to become available to the containing controller’s scope. But, what if your title is dynamic? There can potentially be a value where this syntax could go wrong, such as when you have a word with a single quote in it.
For example, foobar = Tonga, Pa’anga (a currency name I want to display on the page). The apostrophe in the word would abruptly end the word there, and subsequently, cause errors.
<span ng-init="yourFooBar=’Tonga, Pa'anga.’" ></span>
The alternative way to do this would be to initialize a script variable on the HTML page and pass it to the Angular Controller through Angular service ‘$window’ as shown below.
Detailed steps:
Create a component and its corresponding script file, such as demo.html and a dialog with demo field as shown.
Demo.html:
<meta data-sly-use.clientlib="${'/libs/granite/sightly/templates/clientlib.html'}"></meta>
<meta data-sly-call="${clientlib.js @ categories='apps.demo'}"></meta>
<script type="text/javascript">
var yourFooBar = "${properties.foobar @ context='scriptString'}";
</script>
<section ng-app="yourApp" ng-controller="yourController">
<span> {{modifiedFooBar}}</span>
</section>
Note: By default, Sightly renders the page properties in the HTML context. To use your page properties inside <script> tags, you should mention the display context as ‘scriptString’.
2. Create a clientlib folder ‘demolib’ with category ‘apps.demo’. In js.txt include AngularJS library and your Javascript file in which you have the Angular Controller code.
<meta data-sly-use.clientlib="${'/libs/granite/sightly/templates/clientlib.html'}"></meta>
<meta data-sly-call="${clientlib.js @ categories='apps.demo'}"></meta>
<script type="text/javascript">
var yourFooBar = "${properties.foobar @ context='scriptString'}";
</script>
<section ng-app="yourApp" ng-controller="yourController">
<span> {{modifiedFooBar}}</span>
</section>
Note: By default, Sightly renders the page properties in the HTML context. To use your page properties inside <script> tags, you should mention the display context as ‘scriptString’.
2. Create a clientlib folder ‘demolib’ with category ‘apps.demo’. In js.txt include AngularJS library and your Javascript file in which you have the Angular Controller code.
Add the following code in demo.js file:
<code?(function(){
var app = angular.module('yourApp');
app.controller('yourController', ["$scope",'$window', function($scope, $window){
var modifiedFooBar = "";
$scope.modifiedFooBar = $window.yourFooBar.toUpperCase() + "is now all CAPS";
}]);
})();
Create a demo page. Fill the demo field with a single quote as follows.
On the page, you should now see that we have successfully passed the page property ‘foobar’ with value “Tongan Pa’Anga” into Angular Controller and modified it to all CAPS.
<code?(function(){
var app = angular.module('yourApp');
app.controller('yourController', ["$scope",'$window', function($scope, $window){
var modifiedFooBar = "";
$scope.modifiedFooBar = $window.yourFooBar.toUpperCase() + "is now all CAPS";
}]);
})();
Create a demo page. Fill the demo field with a single quote as follows.
On the page, you should now see that we have successfully passed the page property ‘foobar’ with value “Tongan Pa’Anga” into Angular Controller and modified it to all CAPS.
No comments:
Post a Comment
If you have any doubts or questions, please let us know.