This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
153 lines (113 loc) · 3.27 KB
/
index.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
/**
* amnesia cache
* -------------
*
* a simple, yet useful cache provider for angular
*/
/* global angular:false, define:false, module:false, require:false */
(function ( factory ) {
'use strict';
/* istanbul ignore next */
if ( typeof define === 'function' && define.amd ) {
return define( [ 'angular' ], factory );
}
/* istanbul ignore next */
if ( typeof exports === 'object' ) {
return ( module.exports = factory( require( 'angular' ) ) );
}
factory( window.angular );
}( function ( angular ) {
'use strict';
function amnesiaCacheProvider() {
// jshint validthis:true
// jshint latedef:false
var _lifespan = 5000;
var _i = 0;
this.defaultLifespan = defaultLifespan;
this.$get = $get;
function defaultLifespan( value ) {
var lifespan = validateLifespan( value );
if ( ! lifespan ) {
return false;
}
_lifespan = lifespan;
return _lifespan;
}
function $get( $cacheFactory, $timeout ) {
// jshint validthis:true
// jshint latedef:false
var cache;
return Amnesia;
function Amnesia( lifespan ) {
if ( ! ( this instanceof Amnesia ) ) {
return cache || new Amnesia( lifespan );
}
cache = $cacheFactory( 'αμνε$ια' + ( _i++ || '' ) );
var _get = cache.get;
var _put = cache.put;
var _remove = cache.remove;
var _removeAll = cache.removeAll;
var _destroy = cache.destroy;
var timeouts = {};
cache.get = get;
cache.put = put;
cache.remove = remove;
cache.removeAll = removeAll;
cache.destroy = destroy;
cache.amnesia = {
lifespan : validateLifespan( lifespan ) || _lifespan
};
return cache;
/////
function ticktock( id ) {
if ( timeouts[ id ] ) {
$timeout.cancel( timeouts[ id ] );
}
timeouts[ id ] = $timeout( function () {
cache.remove( id );
delete timeouts[ id ];
}, cache.amnesia.lifespan, false );
}
function get( id ) {
ticktock( id );
return _get.call( cache, id );
}
function put( id, value ) {
ticktock( id );
return _put.call( cache, id, value );
}
function remove( id ) {
if ( timeouts[ id ] ) {
$timeout.cancel( timeouts[ id ] );
delete timeouts[ id ];
}
return _remove.call( cache, id );
}
function removeAll() {
angular.forEach( timeouts, function ( timeout, id ) {
$timeout.cancel( timeout );
delete timeouts[ id ];
});
return _removeAll.call( cache );
}
function destroy() {
removeAll();
return _destroy.call( cache );
}
}
}
$get.$inject = [
'$cacheFactory', '$timeout'
];
}
function validateLifespan( value ) {
value = parseInt( value, 10 );
if ( isNaN( value ) ) {
return false;
}
return Math.max( 1, value );
}
var ngModule = angular.module( 'str.amnesia-cache', [] )
.provider( 'AmnesiaCache', amnesiaCacheProvider );
return ngModule;
}));