Unleashing The Power of Object-Oriented Programming
Unleashing The Power of Object-Oriented Programming
What is JavaScript?
Created in 1995 by Brendan Eich of Netscape as LiveScript Interpreted, object-oriented/procedural programming language Extensively used in web pages in conjunction with HTML Event-driven, case-sensitive, ignores extra spaces
Introduced Netscape v1.4 JavaScript interpreter in v6.0 Supports all standard JavaScript commands Used in dashboards, computed items (except in query sections), calculated report fields and document scripts Proprietary object model
Web object model uses objects like window, document, and location Hyperion object model uses objects like Application, ActiveDocument and ActiveSection Properties and methods will vary Core objects such as String, Number and Date will be unchanged
We will not cover anything proprietary to Hyperion Intelligence We will not cover the basics (syntax, conditional statements, loops, etc.) We will not cover redundancies (for example, the concat() method of a string object) We will not cover advanced topics that would require a separate presentation altogether (for example, regular expressions) We will cover everything else!
Object-Oriented Programming
Actions performed on or by an object Called with parenthesis at the end to allow for the passing of parameters Descriptive traits of objects Sometimes read-only
Properties
Functions: parameters are passed in parenthesis returning a result Statements: cause an action or series of actions Operators: Used for mathematical calculations, value comparisons and shortcuts Constants: Built-in variables (Infinity, NaN, null and undefined)
Functions
Functions (cont.)
isFinite() returns true if the number is neither positive nor negative infinity
var x = isFinite(10) //returns true var x = isFinite(Infinity) //returns false
Functions (cont.)
Functions (cont.)
Statements
break breaks a loop or conditional statement // - comments out a line of code /* - comments out several lines of code (closed with */) continue opposite of break do{} while() executes a loop at least once for(){} executes a loop
Statements (cont.)
function(){} declares a local function if(){} else{} executes a condition return returns a value from a function var declares a local variable while(){} executes a loop with(){} declares top level object
with(ActiveDocument.Sections[Query]){ Name = MyQuery }
Statements (cont.)
Statements (cont.)
try{} catch(){} attempts to execute a statement in the try{} and executes the catch(){} if an error occurs throw passes a value to the catch(){}
Statements (cont.)
try{ if(x == 1){throw "Error 1"} else if(x == 2){throw "Error 2"} } catch(er){ if(er == "Error 1"){Alert(Contact SysAdmin")} if(er == "Error 2"){Alert("Please Reload the page")} }
Operators
Mathematical
+ Add/Concatenate ++ Increment += Add/Append - Subtract -- Decrement -= Subtract/Remove / Divide * Multiply % Modulus
Comparison
== Equal != Not Equal > Greater >= Greater or Equal < Less <= Less or Equal
Assignment
= Assign
Operators (cont.)
Backslash Escaped
\ Quote \ Double Quote \\ Backslash \b Backspace \f Form Feed \n New Line \r Carriage Return \t Tab
Logical
&& And || Or ! Not
Special
Operators (cont.)
Operators (cont.)
Operators (cont.)
Comma used to separate multiple values delete deletes an object, property or array element this used to refer to the parent object
Alert(this.Name) //returns the name of the object used
Objects
String Object
The length property returns the string length Methods include charAt(), charCodeAt(), fromCharCode(), indexOf(), lastIndexOf(), slice(), split(), substr(), substring(), toLowerCase(), toUpperCase() We will NOT be discussing regular expressions in this presentation
String.charAt() takes 1 argument, returns the character at the index of the argument
var x = AdamFranz Alert(x.charAt(0)) // returns A
String.charCodeAt() takes 1 argument, returns the ASCII value of the character at the index of the argument
Alert(x.charCodeAt(0)) // returns 65 (ASCII for A)
String.fromCharCode() builds a character from the ASCII value specified in the argument
Alert(String.fromCharCode(65)) // returns A
String.indexOf() takes one or two arguments, returns the index of the first argument in the string (starting from the index of the second argument)
Alert(x.indexOf(a)) // returns 2 Alert(x.indexOf(a, 4)) // returns 6
String.lastIndexOf() same as above but returning the index of the last instance of the argument
String.split() returns an array from the string being broken on a designated character
var y = A, B var z = y.split(,) Alert(z[0]) // returns A Alert(z[1]) // returns B
String.substr() returns a portion of the string starting at the index of the first argument for the length of the second argument (defaults to end of string)
Alert(x.substr(2, 2)) // returns am
Number Object
Represents a solely numeric value Number.MAX_VALUE = 1.79769e+308 Number.MIN_VALUE = 5e-324 Number.NaN, Number.NEGATIVE_INFINITY and NUMBER.POSITIVE_INFINITY for comparison purposes
Date Object
It is always a good idea to explicitly declare dates before performing any comparisons, calculations or calling any methods
var x = new Date(yourDateValue)
Date objects have a series of get & set methods used to return or set any specific portion of the date object A get method, such as getFullYear(), returns the year from the date object whereas a set method, such as setFullYear(), sets the year portion of the date to the argument passed A getUTC or setUTC gets or sets according to Universal Time (not discussed)
.getDate() .getDay() .getFullYear() .getHours() .getMilliseconds() .getMinutes() .getMonth()* .getSeconds() * - zero-based, watch out!
Date.getTimezoneOffset returns the difference in minutes between local time and Greenwich Mean Time Date.getTime(), Date.parse() and Date.valueof() used to return the number of milliseconds since 1/1/1970
Array Object
Contains a series of values of any datatype designated by their array index (starting with zero) The length property will return the total amount of elements in the specified array
Array.concat() joins two or more array objects (passed as arguments) into a single array object (without effecting the original array) Array.join() converts an array object to a string separated by the character used in the argument (or a comma by default)
Array.pop() removes the last element of an array Array.push() adds an element specified as the argument to the end of an array and returns the new array length Array.shift() removes and returns the first element of the array
Array.slice() Returns a new array from a portion of the original array starting at the index of the first argument and ending at the second (or to the end of the array by default) Array.sort() - re-indexes the array in ascending order by default or in the order provided as an argument in the form of a function
Math Object
A native object accessible by direct reference without requiring instantiation Used for performing calculations and to access unique mathematical values such as Pi, random numbers, etc. Includes geometrical properties and methods such as Math.tan for calculating Tangent (not discussed)
Math.E Eulers constant Math.LN10 Natural logarithm of 10 Math.LN2 Natural logarithm of 2 Math.LOG10E Base 10 logarithm E Math.LOG2E Base 2 logarithm of E Math.Pi Pi Math.SQRT1_2 1 divided by sq. rt. of 2 Math.SQRT2 Square root of 2
Math.abs(x) returns the absolute value of x Math.ceil(x) returns x rounded up to nearest whole number Math.exp(x) returns Eulers constant to the power of x Math.floor(x) - returns x rounded down to nearest whole number Math.log(x) returns the natural logarithm (base E) of x
Math.max(x,y) returns the greater of x or y Math.min(x,y) returns the lesser of x or y Math.pow(x,y) returns x to the power of y Math.random() returns a pseudo-random number (based on the current time) between 0 and 1 Math.round(x) returns x rounded off Math.sqrt(x) returns square root of x
Conclusion
JavaScript is a powerful scripting language which extends beyond the Hyperion platform All applicable JavaScript is valid in Hyperion Intelligence JavaScript can be used in dashboards, document scripts, and any computed items (other than in a query) Get out there and get scripting!!!
Helpful Websites
http://www.devguru.com - an excellent JavaScript reference http://www.adamfranz.com - sample code and presentations available for download
The End
fin