PluginProbe ʕ •ᴥ•ʔ
Independent Analytics – WordPress Analytics Plugin / 2.12.0
Independent Analytics – WordPress Analytics Plugin v2.12.0
2.15.5 2.15.4 2.15.3 2.15.2 2.15.1 2.15.0 2.14.10 trunk 1.1 1.10 1.10.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.17.1 1.17.2 1.17.3 1.17.4 1.18 1.18.1 1.19.0 1.19.1 1.2 1.20.0 1.21.0 1.22.0 1.22.1 1.23.0 1.23.1 1.24.0 1.24.1 1.25.0 1.25.1 1.26.0 1.27.0 1.28.0 1.28.1 1.28.2 1.28.3 1.29.0 1.3 1.30.0 1.30.1 1.4 1.5 1.6 1.7 1.8 1.9 2.0.0 2.0.1 2.1.4 2.1.5 2.1.6 2.10.0 2.10.1 2.10.2 2.10.3 2.10.4 2.11.0 2.11.1 2.11.10 2.11.2 2.11.3 2.11.4 2.11.5 2.11.6 2.11.7 2.11.8 2.11.9 2.12.0 2.12.1 2.12.2 2.13.1 2.13.2 2.13.5 2.13.6 2.14.0 2.14.1 2.14.2 2.14.4 2.14.6 2.14.7 2.14.8 2.14.9 2.2.0 2.2.1 2.3.1 2.3.2 2.4.2 2.4.3 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.7.1 2.7.2 2.7.3 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7
independent-analytics / javascript-source / index.js
independent-analytics / javascript-source Last commit date
chart_plugins 1 year ago controllers 1 year ago modules 1 year ago utils 1 year ago click-tracking-menu.js 1 year ago dashboard_widget.js 2 years ago download.js 1 year ago index.js 1 year ago layout.js 1 year ago settings.js 1 year ago
index.js
108 lines
1 import {Application} from "@hotwired/stimulus"
2 import MicroModal from "micromodal"
3
4 document.addEventListener("DOMContentLoaded", () => MicroModal.init())
5
6 document.addEventListener("DOMContentLoaded", () => {
7 requestAnimationFrame(() => {
8 // The Examiner is loaded using an iframe. This messages lets the iframed element alert
9 // the parent that's completely loaded and ready to be shown.
10 window.parent.postMessage('iawpPageReady');
11 })
12 })
13
14 import CampaignBuilderController from "./controllers/campaign_builder_controller"
15 import ChartController from "./controllers/chart_controller"
16 import ChartIntervalController from "./controllers/chart_interval_controller"
17 import ClipboardController from "./controllers/clipboard_controller"
18 import CopyReportController from "./controllers/copy_report_controller"
19 import CreateReportController from "./controllers/create_report_controller"
20 import DeleteDataController from "./controllers/delete_data_controller"
21 import DeleteReportController from "./controllers/delete_report_controller"
22 import EasepickController from "./controllers/easepick_controller"
23 import ExaminerController from "./controllers/examiner_controller"
24 import ExaminerHeaderController from "./controllers/examiner_header_controller"
25 import ExportOverviewController from "./controllers/export_overview_controller"
26 import ExportReportsController from "./controllers/export_reports_controller"
27 import FiltersController from "./controllers/filters_controller"
28 import GroupController from "./controllers/group_controller"
29 import ImportReportController from "./controllers/import_reports_controller"
30 import MapController from "./controllers/map_controller"
31 import MigrationRedirectController from "./controllers/migration_redirect_controller"
32 import ModalController from "./controllers/modal_controller"
33 import PieChartController from "./controllers/pie_chart_controller"
34 import PluginGroupOptions from "./controllers/plugin_group_options_controller"
35 import PrunerController from "./controllers/pruner_controller"
36 import QuickStatsController from "./controllers/quick_stats_controller"
37 import RealTimeController from "./controllers/real_time_controller"
38 import RefreshOverviewController from "./controllers/refresh_overview_controller"
39 import RenameReportController from "./controllers/rename_report_controller"
40 import ReportController from "./controllers/report_controller"
41 import ResetAnalyticsController from "./controllers/reset_analytics_controller";
42 import ResetOverviewController from "./controllers/reset_overview_controller";
43 import SaveReportController from "./controllers/save_report_controller";
44 import SelectInputController from "./controllers/select_input_controller"
45 import SetFavoriteReportController from "./controllers/set_favorite_report_controller"
46 import SortController from "./controllers/sort_controller"
47 import SortableReportsController from "./controllers/sortable_reports_controller"
48 import TableColumnsController from "./controllers/table_columns_controller"
49 import WooCommerceSettingsController from "./controllers/woocommerce_settings_controller"
50 // Overview
51 import AddModuleController from "./controllers/overview/add_module"
52 import CheckboxGroupController from "./controllers/overview/checkbox_group"
53 import ModuleController from "./controllers/overview/module"
54 import ModuleEditorController from "./controllers/overview/module_editor"
55 import ModuleListController from "./controllers/overview/module_list"
56 import ModulePickerController from "./controllers/overview/module_picker"
57 import ReorderModulesController from "./controllers/overview/reorder_modules"
58
59 window.Stimulus = Application.start()
60
61 Stimulus.register("campaign-builder", CampaignBuilderController)
62 Stimulus.register("chart", ChartController)
63 Stimulus.register("chart-interval", ChartIntervalController)
64 Stimulus.register("clipboard", ClipboardController)
65 Stimulus.register("table-columns", TableColumnsController)
66 Stimulus.register("copy-report", CopyReportController)
67 Stimulus.register("delete-data", DeleteDataController)
68 Stimulus.register('delete-report', DeleteReportController)
69 Stimulus.register("easepick", EasepickController)
70 Stimulus.register("examiner", ExaminerController)
71 Stimulus.register("examiner-header", ExaminerHeaderController)
72 Stimulus.register("export-overview", ExportOverviewController)
73 Stimulus.register("export-reports", ExportReportsController)
74 Stimulus.register("filters", FiltersController)
75 Stimulus.register("group", GroupController)
76 Stimulus.register('import-reports', ImportReportController)
77 Stimulus.register("map", MapController)
78 Stimulus.register("migration-redirect", MigrationRedirectController)
79 Stimulus.register("modal", ModalController)
80 Stimulus.register("pie-chart", PieChartController)
81 Stimulus.register("plugin-group-options", PluginGroupOptions)
82 Stimulus.register("pruner", PrunerController)
83 Stimulus.register("quick-stats", QuickStatsController)
84 Stimulus.register("create-report", CreateReportController)
85 Stimulus.register("real-time", RealTimeController)
86 Stimulus.register("refresh-overview", RefreshOverviewController)
87 Stimulus.register("rename-report", RenameReportController)
88 Stimulus.register("report", ReportController)
89 Stimulus.register("reset-analytics", ResetAnalyticsController)
90 Stimulus.register("reset-overview", ResetOverviewController)
91 Stimulus.register("save-report", SaveReportController)
92 Stimulus.register("select-input", SelectInputController)
93 Stimulus.register("set-favorite-report", SetFavoriteReportController)
94 Stimulus.register("sort", SortController)
95 Stimulus.register("sortable-reports", SortableReportsController)
96 Stimulus.register("table-columns", TableColumnsController)
97 Stimulus.register("woocommerce-settings", WooCommerceSettingsController)
98 // Overview
99 Stimulus.register("add-module", AddModuleController)
100 Stimulus.register("checkbox-group", CheckboxGroupController)
101 Stimulus.register("module", ModuleController)
102 Stimulus.register("module-editor", ModuleEditorController)
103 Stimulus.register("module-list", ModuleListController)
104 Stimulus.register("module-picker", ModulePickerController)
105 Stimulus.register("reorder-modules", ReorderModulesController)
106
107
108