Created
October 21, 2016 07:50
-
-
Save sergeevyi/ee17be8547aa96ace69d735bcfea1919 to your computer and use it in GitHub Desktop.
UTC to Local Date Time Filter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
angular | |
.module('app') | |
.filter('utcToLocal', Filter); | |
function Filter($filter) { | |
return function (utcDateString, format) { | |
// return if input date is null or undefined | |
if (!utcDateString) { | |
return; | |
} | |
// append 'Z' to the date string to indicate UTC time if the timezone isn't already specified | |
if (utcDateString.indexOf('Z') === -1 && utcDateString.indexOf('+') === -1) { | |
utcDateString += 'Z'; | |
} | |
// convert and format date using the built in angularjs date filter | |
return $filter('date')(utcDateString, format); | |
}; | |
} | |
})(); | |
/* Example of using */ | |
<span>Local date & time converted from UTC: {{vm.myUtcDate | utcToLocal:'dd.MM.yy - hh.mm a'}}</span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment