-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathng-stache.js
156 lines (137 loc) · 3.83 KB
/
ng-stache.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
(function () {
'use strict';
/**
* Initialize module for dashboard
* @type {*|module}
*/
var module = angular.module('ng.stache');
/**
* Abstraction of a stache provider (localStache)
*/
function ObjectStore(container) {
this.$container = container || {};
this.available = !!this.$container;
}
/**
* Set the key to the specified value
* @param key
* @param value
* @returns {ObjectStore}
*/
ObjectStore.prototype.set = function(key, value) {
if(this.available) {
this.$container[key] = value;
}
return this;
};
/**
* Get the value of the item with the specified key
* @param key
* @returns {*}
*/
ObjectStore.prototype.get = function(key) {
if(this.available) {
return this.$container[key];
}
};
/**
* Does the stache provider have an item with the key specified
* @param key
* @returns {boolean|*}
*/
ObjectStore.prototype.has = function(key) {
return this.available && this.$container[key] !== undefined;
};
/**
* Remove the item with the key
* @param key
* @returns {ObjectStore}
*/
ObjectStore.prototype.remove = function(key) {
if(this.available) {
delete this.$container[key];
}
return this;
};
/**
* Clear all items from the store
* @returns {ObjectStore}
*/
ObjectStore.prototype.clear = function() {
if(this.available && this.$container.clear) {
this.$container.clear();
}
else {
_.each(this.keys(), function(key){
this.remove(key);
}, this);
}
return this;
};
/**
* Get all the item keys from the store
* @returns {*}
*/
ObjectStore.prototype.keys = function() {
var keys = [];
if(this.available) {
keys = _.keys(this.$container);
}
return keys;
};
/**
* Returns a function that is used to build an object store
* @returns {Function}
*/
function objectStoreFactory() {
return function(container) {
return new ObjectStore(container);
};
}
/**
* Return a function that is used to build stache providers
* @returns {Function}
*/
function objectStoreProviderFactory() {
return function(container) {
return function provider() {
/**
* Setup provider
*
* @returns {localStacheProvider.Stache}
*/
this.$get = function($objectStoreFactory){
return $objectStoreFactory(container);
};
this.$get.$inject = ['$objectStoreFactory'];
};
};
}
/**
* Utility function to generate a provider
* @param container
* @returns {*}
*/
function generateProvider(container) {
return objectStoreProviderFactory()(container);
}
/**
* Allows for default stache provider to be dependency injected
* @param $defaultProvider
*/
function defaultStacheProvider($defaultProvider) {
this.$get = $defaultProvider.$get;
}
/**
* Register the providers
*/
module.factory('$objectStoreFactory', [objectStoreFactory]);
// local stache provider
module.provider('$localStache', [generateProvider(window.localStache)]);
// session stache provider
module.provider('$sessionStache', [generateProvider(window.sessionStache)]);
// simple (object) stache provider
module.provider('$simpleStache', [generateProvider()]);
//default stache provider (currently localStache)
module.provider('$stache', ['$localStacheProvider', defaultStacheProvider]);
}());