Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
A
angular-translate-storage-local
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Custom Issue Tracker
Custom Issue Tracker
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
angularjs
angular-translate-storage-local
Commits
db54ffc9
Commit
db54ffc9
authored
Aug 03, 2018
by
bingchuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[dev] version 2.13.1
parents
Pipeline
#53
failed with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
136 additions
and
0 deletions
+136
-0
angular-translate-storage-local.js
angular-translate-storage-local.js
+123
-0
bower.json
bower.json
+13
-0
No files found.
angular-translate-storage-local.js
0 → 100644
View file @
db54ffc9
/*!
* angular-translate - v2.13.1 - 2016-12-06
*
* Copyright (c) 2016 The angular-translate team, Pascal Precht; Licensed MIT
*/
(
function
(
root
,
factory
)
{
if
(
typeof
define
===
'function'
&&
define
.
amd
)
{
// AMD. Register as an anonymous module unless amdModuleId is set
define
([],
function
()
{
return
(
factory
());
});
}
else
if
(
typeof
exports
===
'object'
)
{
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module
.
exports
=
factory
();
}
else
{
factory
();
}
}(
this
,
function
()
{
$translateLocalStorageFactory
.
$inject
=
[
'$window'
,
'$translateCookieStorage'
];
angular
.
module
(
'pascalprecht.translate'
)
/**
* @ngdoc object
* @name pascalprecht.translate.$translateLocalStorage
* @requires $window
* @requires $translateCookieStorage
*
* @description
* Abstraction layer for localStorage. This service is used when telling angular-translate
* to use localStorage as storage.
*
*/
.
factory
(
'$translateLocalStorage'
,
$translateLocalStorageFactory
);
function
$translateLocalStorageFactory
(
$window
,
$translateCookieStorage
)
{
'use strict'
;
// Setup adapter
var
localStorageAdapter
=
(
function
(){
var
langKey
;
return
{
/**
* @ngdoc function
* @name pascalprecht.translate.$translateLocalStorage#get
* @methodOf pascalprecht.translate.$translateLocalStorage
*
* @description
* Returns an item from localStorage by given name.
*
* @param {string} name Item name
* @return {string} Value of item name
*/
get
:
function
(
name
)
{
if
(
!
langKey
)
{
langKey
=
$window
.
localStorage
.
getItem
(
name
);
}
return
langKey
;
},
/**
* @ngdoc function
* @name pascalprecht.translate.$translateLocalStorage#set
* @methodOf pascalprecht.translate.$translateLocalStorage
*
* @description
* Sets an item in localStorage by given name.
*
* @deprecated use #put
*
* @param {string} name Item name
* @param {string} value Item value
*/
set
:
function
(
name
,
value
)
{
langKey
=
value
;
$window
.
localStorage
.
setItem
(
name
,
value
);
},
/**
* @ngdoc function
* @name pascalprecht.translate.$translateLocalStorage#put
* @methodOf pascalprecht.translate.$translateLocalStorage
*
* @description
* Sets an item in localStorage by given name.
*
* @param {string} name Item name
* @param {string} value Item value
*/
put
:
function
(
name
,
value
)
{
langKey
=
value
;
$window
.
localStorage
.
setItem
(
name
,
value
);
}
};
}());
var
hasLocalStorageSupport
=
'localStorage'
in
$window
;
if
(
hasLocalStorageSupport
)
{
var
testKey
=
'pascalprecht.translate.storageTest'
;
try
{
// this check have to be wrapped within a try/catch because on
// a SecurityError: Dom Exception 18 on iOS
if
(
$window
.
localStorage
!==
null
)
{
$window
.
localStorage
.
setItem
(
testKey
,
'foo'
);
$window
.
localStorage
.
removeItem
(
testKey
);
hasLocalStorageSupport
=
true
;
}
else
{
hasLocalStorageSupport
=
false
;
}
}
catch
(
e
){
hasLocalStorageSupport
=
false
;
}
}
var
$translateLocalStorage
=
hasLocalStorageSupport
?
localStorageAdapter
:
$translateCookieStorage
;
return
$translateLocalStorage
;
}
$translateLocalStorageFactory
.
displayName
=
'$translateLocalStorageFactory'
;
return
'pascalprecht.translate'
;
}));
bower.json
0 → 100644
View file @
db54ffc9
{
"name"
:
"angular-translate-storage-local"
,
"description"
:
"A plugin for Angular Translate"
,
"version"
:
"2.13.1"
,
"main"
:
"./angular-translate-storage-local.js"
,
"ignore"
:
[],
"author"
:
"Pascal Precht"
,
"license"
:
"MIT"
,
"dependencies"
:
{
"angular-translate"
:
"~2.13.1"
,
"angular-translate-storage-cookie"
:
"~2.13.1"
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment