test
1 month ago
analyticsApi.js
1 month ago
classnames.js
1 month ago
dateUtils.js
1 month ago
formatters.js
1 month ago
helpers.js
1 month ago
icons.js
1 month ago
index.js
1 month ago
pluginUtils.js
1 month ago
transformers.js
1 month ago
viewportBoundary.js
1 month ago
index.js
46 lines
| 1 | /** |
| 2 | * Centralized exports for all dashboard utilities |
| 3 | * This allows for cleaner imports like: |
| 4 | * import { decodeHTMLEntities, format, activatePlugin } from '../utils' |
| 5 | */ |
| 6 | |
| 7 | // Formatters |
| 8 | export { |
| 9 | decodeHTMLEntities, |
| 10 | formatHMS, |
| 11 | humanSeconds, |
| 12 | humanSecondsCompact, |
| 13 | formatChartData, |
| 14 | padDailyPoints, |
| 15 | } from "./formatters"; |
| 16 | |
| 17 | // Date utilities |
| 18 | export { |
| 19 | format, |
| 20 | formatXAxis, |
| 21 | getLastNDays, |
| 22 | getSelectedDate, |
| 23 | getRangeLabel, |
| 24 | getAllTimeRange, |
| 25 | getAnalyticsPresets, |
| 26 | toAnalyticsDate, |
| 27 | ALL_TIME_START, |
| 28 | DEFAULT_ANALYTICS_DAYS, |
| 29 | } from "./dateUtils"; |
| 30 | |
| 31 | // Plugin utilities |
| 32 | export { |
| 33 | activatePlugin, |
| 34 | installPlugins, |
| 35 | generateSuggestions, |
| 36 | } from "./pluginUtils"; |
| 37 | |
| 38 | // Analytics API |
| 39 | export { fetchViews, fetchWatchTime } from "./analyticsApi"; |
| 40 | |
| 41 | // General helpers |
| 42 | export { classNames } from "./helpers"; |
| 43 | |
| 44 | // Icons |
| 45 | export { default as Presto_Admin_Icons } from "./icons"; |
| 46 |