summaryrefslogtreecommitdiffstats
path: root/js/directive/NewsTimeout.js
blob: 43a2ad50adb28266daff826ac382ba35e129fd8d (plain)
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
/**
 * Nextcloud - News
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Bernhard Posselt <dev@bernhard-posselt.com>
 * @copyright Bernhard Posselt 2014
 */
app.directive('newsTimeout', function ($timeout, $rootScope) {
    'use strict';

    return {
        restrict: 'A',
        scope: {
            'newsTimeout': '&'
        },
        link: function (scope, element) {
            var destroyed = false;
            var seconds = 7;
            var timer = $timeout(scope.newsTimeout, seconds * 1000);

            // remove timeout if element is being removed by
            // for instance clicking on the x button
            scope.$on('$destroy', function () {
                destroyed = true;
                $timeout.cancel(timer);
            });

            // also delete the entry if undo is ignored and the url
            // is changed
            $rootScope.$on('$locationChangeStart', function () {
                // $locationChangeStart triggers twice because of the trailing
                // slash on the link which is kinda a hack to reload the route
                // if you click on the link when the route is the same
                $timeout.cancel(timer);
                if (!destroyed) {
                    destroyed = true;
                    element.remove();
                    scope.newsTimeout();
                }
            });
        }
    };
});