Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Alert.adapter.ts « Alert « src « vue « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cecb97a81b219827db4e9424aa179975744d7f7 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*!
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

import { createApp, ref } from 'vue';
import Alert from './Alert.vue';

interface AlertAdapterScope extends ng.IScope {
  severity: string;
}

export default function alertAdapter(): ng.IDirective {
  return {
    restrict: 'A',
    transclude: true,
    scope: {
      severity: '@piwikAlert',
    },
    template: '<div ng-transclude/>',
    compile: function alertAdapterCompile() {
      return {
        post: function alertAdapterPostLink(
          scope: AlertAdapterScope,
          element: ng.IAugmentedJQuery,
        ) {
          const clone = element.find('[ng-transclude]');

          const app = createApp({
            template: '<alert :severity="severity"><div ref="transcludeTarget"/></alert>',
            data() {
              return { severity: scope.severity };
            },
            setup() {
              const transcludeTarget = ref(null);
              return {
                transcludeTarget,
              };
            },
          });
          app.config.globalProperties.$sanitize = window.vueSanitize;
          app.component('alert', Alert);
          const vm = app.mount(element[0]);

          scope.$watch('severity', (newValue: string) => {
            vm.severity = newValue;
          });

          $(vm.transcludeTarget).append(clone);
        },
      };
    },
  };
}

alertAdapter.$inject = [];

angular.module('piwikApp').directive('piwikAlert', alertAdapter);