-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGreetr.js
112 lines (83 loc) · 2.4 KB
/
Greetr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
(function(global, $){
var Greetr = function(firstName, lastName, lang){
// 'new' an object
return new Greetr.init(firstName, lastName, lang)
}
//hidden withinthe scope of the IIFE and never directly accesible
var supportedLanguages = ['en', 'hr'];
// informal greeting
var greetings = {
en: 'Hello',
hr: 'Zdravo'
};
//formal greeting
var formalGreetings = {
en: 'Greetings',
hr: 'Dobar dan'
};
// logger messages
var logMessages = {
en: 'Logged in',
hr: 'Prijavljeni ste'
};
// prototype holds methods (to save memory space)
Greetr.prototype = {
// 'this' refers ti the calling object at eecution time
fullName: function(){
return this.firstName + ' ' + this.lastName;
},
validate: function(){
//check that is a valid language
if (supportedLanguages.indexOf(this.language) === -1) {
throw 'Invalid language';
}
},
//retreive messages from object by referring to properties using [] syntax
greeting: function(){
return greetings[this.language] + ' ' + this.fullName();
},
formalGreeting: function(){
return formalGreetings[this.language] + ', ' + this.fullName();
},
// chainable method, because it returns 'this' (their own containing object)
greet: function(formal, selector){
var msg;
if(formal) msg = this.formalGreeting();
else msg = this.greeting();
if(console) console.log(msg);
//inject the message in the chosen place in the DOM
$(selector).html(msg)
//'this' refers to the calling object at execution time
// makes method chainable
return this;
},
log: function(){
if(console){
console.log(logMessages[this.language] + ': ' + this.fullName())
}
return this;
},
setLang: function(lang){
this.language = lang;
this.validate();
return this;
},
HTMLGreeting: function(selector, formal){
if(!$) throw 'jQuery not loaded';
if(!selector) throw 'Missing HTML selector';
this.greet(formal, selector)
return this;
}
};
//the actual object is created here, allowing us to 'new' an object without calling new
Greetr.init = function(firstName, lastName, lang){
var self = this;
self.firstName = firstName || '';
self.lastName = lastName || '';
self.language = lang || 'en';
self.validate();
}
// trick borrowed from jQuery so we don't have to use 'new keyword'
Greetr.init.prototype = Greetr.prototype;
global.Greetr = global.G$ = Greetr;
})(window, jQuery)