├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── package.json ├── phpstan.neon ├── releases.json ├── resources ├── icon.png └── screenshot.jpg ├── src ├── CommerceWidgets.php ├── assetbundles │ └── commercewidgets │ │ └── CommerceWidgetsAsset.php ├── config.php ├── icon-mask.svg ├── icon.svg ├── migrations │ └── m181029_192313_ChangeNameOfRecentProducts.php ├── models │ └── Settings.php ├── resources │ ├── dist │ │ ├── css │ │ │ └── commerce-widgets.css │ │ └── js │ │ │ └── commerce-widgets.js │ └── src │ │ ├── commerce-widgets.js │ │ ├── css │ │ └── plugin.css │ │ └── js │ │ └── plugin.js ├── services │ └── CommerceWidgetsService.php ├── templates │ ├── _includes │ │ ├── charts │ │ │ ├── bar.twig │ │ │ ├── line.twig │ │ │ └── progress.twig │ │ ├── fields │ │ │ └── orderStatus.twig │ │ ├── footer.twig │ │ ├── sku.twig │ │ └── statistic.twig │ ├── layout.twig │ └── widgets │ │ ├── CartAbandonment │ │ ├── body.twig │ │ └── settings.twig │ │ ├── ConversionRate │ │ ├── body.twig │ │ └── settings.twig │ │ ├── Goal │ │ ├── body.twig │ │ └── settings.twig │ │ ├── OrdersRecent │ │ ├── body.twig │ │ └── settings.twig │ │ ├── ProductsRecent │ │ ├── body.twig │ │ └── settings.twig │ │ ├── ProductsTop │ │ ├── body.twig │ │ └── settings.twig │ │ ├── SubscriptionPlans │ │ ├── body.twig │ │ └── settings.twig │ │ ├── TopCustomers │ │ ├── body.twig │ │ └── settings.twig │ │ └── TotalRevenueOrders │ │ └── body.twig ├── variables │ └── CommerceWidgetsVariable.php └── widgets │ ├── CartAbandonment.php │ ├── ConversionRate.php │ ├── Goal.php │ ├── OrdersRecent.php │ ├── ProductsRecent.php │ ├── ProductsTop.php │ ├── SubscriptionPlans.php │ ├── TopCustomers.php │ └── TotalRevenueOrders.php └── vite.config.mjs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/composer.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/phpstan.neon -------------------------------------------------------------------------------- /releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/releases.json -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/resources/screenshot.jpg -------------------------------------------------------------------------------- /src/CommerceWidgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/CommerceWidgets.php -------------------------------------------------------------------------------- /src/assetbundles/commercewidgets/CommerceWidgetsAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/assetbundles/commercewidgets/CommerceWidgetsAsset.php -------------------------------------------------------------------------------- /src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/config.php -------------------------------------------------------------------------------- /src/icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/icon-mask.svg -------------------------------------------------------------------------------- /src/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/icon.svg -------------------------------------------------------------------------------- /src/migrations/m181029_192313_ChangeNameOfRecentProducts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/migrations/m181029_192313_ChangeNameOfRecentProducts.php -------------------------------------------------------------------------------- /src/models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/models/Settings.php -------------------------------------------------------------------------------- /src/resources/dist/css/commerce-widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/resources/dist/css/commerce-widgets.css -------------------------------------------------------------------------------- /src/resources/dist/js/commerce-widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/resources/dist/js/commerce-widgets.js -------------------------------------------------------------------------------- /src/resources/src/commerce-widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/resources/src/commerce-widgets.js -------------------------------------------------------------------------------- /src/resources/src/css/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/resources/src/css/plugin.css -------------------------------------------------------------------------------- /src/resources/src/js/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/resources/src/js/plugin.js -------------------------------------------------------------------------------- /src/services/CommerceWidgetsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/services/CommerceWidgetsService.php -------------------------------------------------------------------------------- /src/templates/_includes/charts/bar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/_includes/charts/bar.twig -------------------------------------------------------------------------------- /src/templates/_includes/charts/line.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/_includes/charts/line.twig -------------------------------------------------------------------------------- /src/templates/_includes/charts/progress.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/_includes/charts/progress.twig -------------------------------------------------------------------------------- /src/templates/_includes/fields/orderStatus.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/templates/_includes/footer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/_includes/footer.twig -------------------------------------------------------------------------------- /src/templates/_includes/sku.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/_includes/sku.twig -------------------------------------------------------------------------------- /src/templates/_includes/statistic.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/_includes/statistic.twig -------------------------------------------------------------------------------- /src/templates/layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/layout.twig -------------------------------------------------------------------------------- /src/templates/widgets/CartAbandonment/body.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/CartAbandonment/body.twig -------------------------------------------------------------------------------- /src/templates/widgets/CartAbandonment/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/CartAbandonment/settings.twig -------------------------------------------------------------------------------- /src/templates/widgets/ConversionRate/body.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/ConversionRate/body.twig -------------------------------------------------------------------------------- /src/templates/widgets/ConversionRate/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/ConversionRate/settings.twig -------------------------------------------------------------------------------- /src/templates/widgets/Goal/body.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/Goal/body.twig -------------------------------------------------------------------------------- /src/templates/widgets/Goal/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/Goal/settings.twig -------------------------------------------------------------------------------- /src/templates/widgets/OrdersRecent/body.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/OrdersRecent/body.twig -------------------------------------------------------------------------------- /src/templates/widgets/OrdersRecent/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/OrdersRecent/settings.twig -------------------------------------------------------------------------------- /src/templates/widgets/ProductsRecent/body.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/ProductsRecent/body.twig -------------------------------------------------------------------------------- /src/templates/widgets/ProductsRecent/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/ProductsRecent/settings.twig -------------------------------------------------------------------------------- /src/templates/widgets/ProductsTop/body.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/ProductsTop/body.twig -------------------------------------------------------------------------------- /src/templates/widgets/ProductsTop/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/ProductsTop/settings.twig -------------------------------------------------------------------------------- /src/templates/widgets/SubscriptionPlans/body.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/SubscriptionPlans/body.twig -------------------------------------------------------------------------------- /src/templates/widgets/SubscriptionPlans/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/SubscriptionPlans/settings.twig -------------------------------------------------------------------------------- /src/templates/widgets/TopCustomers/body.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/TopCustomers/body.twig -------------------------------------------------------------------------------- /src/templates/widgets/TopCustomers/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/TopCustomers/settings.twig -------------------------------------------------------------------------------- /src/templates/widgets/TotalRevenueOrders/body.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/templates/widgets/TotalRevenueOrders/body.twig -------------------------------------------------------------------------------- /src/variables/CommerceWidgetsVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/variables/CommerceWidgetsVariable.php -------------------------------------------------------------------------------- /src/widgets/CartAbandonment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/widgets/CartAbandonment.php -------------------------------------------------------------------------------- /src/widgets/ConversionRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/widgets/ConversionRate.php -------------------------------------------------------------------------------- /src/widgets/Goal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/widgets/Goal.php -------------------------------------------------------------------------------- /src/widgets/OrdersRecent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/widgets/OrdersRecent.php -------------------------------------------------------------------------------- /src/widgets/ProductsRecent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/widgets/ProductsRecent.php -------------------------------------------------------------------------------- /src/widgets/ProductsTop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/widgets/ProductsTop.php -------------------------------------------------------------------------------- /src/widgets/SubscriptionPlans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/widgets/SubscriptionPlans.php -------------------------------------------------------------------------------- /src/widgets/TopCustomers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/widgets/TopCustomers.php -------------------------------------------------------------------------------- /src/widgets/TotalRevenueOrders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/src/widgets/TotalRevenueOrders.php -------------------------------------------------------------------------------- /vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bymayo/craft-commerce-widgets/HEAD/vite.config.mjs --------------------------------------------------------------------------------