speardevs / sylius-push-notifications-plugin
Push Notifications plugin for sylius
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 6
Type:sylius-plugin
Requires
- php: ^8.0
- bentools/webpush-bundle: 0.12
- sylius/mailer-bundle: ^1.8 || ^2.0@beta
- sylius/sylius: ^1.9
- symfony/webpack-encore-bundle: ^1.15
Requires (Dev)
- behat/behat: ^3.6.1
- behat/mink-selenium2-driver: ^1.4
- dmore/behat-chrome-extension: ^1.3
- dmore/chrome-mink-driver: ^2.7
- doctrine/doctrine-fixtures-bundle: ^3.4
- friends-of-behat/mink: ^1.8
- friends-of-behat/mink-browserkit-driver: ^1.4
- friends-of-behat/mink-debug-extension: ^2.0.0
- friends-of-behat/mink-extension: ^2.4
- friends-of-behat/page-object-extension: ^0.3
- friends-of-behat/suite-settings-extension: ^1.0
- friends-of-behat/symfony-extension: ^2.1
- friends-of-behat/variadic-extension: ^1.3
- phpspec/phpspec: ^7.2
- phpstan/extension-installer: ^1.0
- phpstan/phpstan: ^1.8.1
- phpstan/phpstan-doctrine: 1.3.40
- phpstan/phpstan-strict-rules: ^1.3.0
- phpstan/phpstan-webmozart-assert: ^1.2.0
- phpunit/phpunit: ^9.5
- polishsymfonycommunity/symfony-mocker-container: ^1.0
- sylius-labs/coding-standard: ^4.2
- symfony/browser-kit: ^5.4 || ^6.0
- symfony/debug-bundle: ^5.4 || ^6.0
- symfony/dotenv: ^5.4 || ^6.0
- symfony/flex: ^2.2.2
- symfony/intl: ^5.4 || ^6.0
- symfony/web-profiler-bundle: ^5.4 || ^6.0
- vimeo/psalm: 5.13.1
Conflicts
- symfony/framework-bundle: 6.2.8
- dev-main
- v1.1.0
- v1.0.0
- v1.0.0-alpha.6
- v1.0.0-alpha.5
- v1.0.0-alpha.4
- v1.0.0-alpha.3
- v1.0.0-alpha.2
- v1.0.0-alpha.1
- dev-SYL-2266
- dev-SYL-2108
- dev-SYL-1730
- dev-rc/v1.1.0
- dev-update-object-relations
- dev-dev/update-readme
- dev-integration-test
- dev-unit-tests
- dev-push-notification-history-grid-fixes
- dev-fix-entities-relationship
- dev-fix-push-notification-history
- dev-dependabot/composer/phpstan/phpstan-doctrine-1.3.43
- dev-dependabot/composer/vimeo/psalm-5.15.0
- dev-fixes-in-parameter-mapping
- dev-map-parameter-service
- dev-disabling-localised-urls
- dev-extend-usersubscription
- dev-doctrine-error-test
- dev-bug-fixes-and-update-readme
- dev-fix-dependencies
- dev-feature/multichannel
- dev-backend/readme
- dev-web-push-instalation
- dev-use-state-machine
- dev-feature/my-account-list-push-of-notifications
- dev-feature/admin-push-notification-history
- dev-frontend/readme
- dev-feature/web-push-subscription
- dev-init-branch
This package is not auto-updated.
Last update: 2025-03-29 01:17:15 UTC
README
Sylius Push Notification Plugin
Plugin for Sylius, based on the bpolaszek/webpush-bundle package, enabling the sending of push notifications within an online store. This plugin provides the functionality to send push notifications in two key scenarios: after order placement and after order shipment. Additionally, it allows for the sending of push notifications to individual users or user groups.
Documentation:
After installation, read more about using the plugin and its functions for the user and administrator.
Instalation
- Run
composer require speardevs/sylius-push-notifications-plugin
.
Backend setup
- Generate your VAPID keys:
php bin/console webpush:generate:keys
- Set VAPID keys: .env file:
WEBPUSH_PUBLIC_KEY=publickey
WEBPUSH_PRIVATE_KEY=privatekey
# config/packages/bentools_webpush.yaml (SF4) bentools_webpush: settings: public_key: '%env(WEBPUSH_PUBLIC_KEY)%' private_key: '%env(WEBPUSH_PRIVATE_KEY)%'
- Import required config in your
config/packages/_sylius.yaml
file:
# config/packages/_sylius.yaml imports: ... - { resource: "@SpearDevsSyliusPushNotificationsPlugin/config/config.yaml" }
- If you extend
Sylius\Component\Core\Model\ShopUser
class, you need to registerUserSubscriptionManager
with youruser_class
, for example:
# config/services.yaml SpearDevs\SyliusPushNotificationsPlugin\Manager\UserSubscriptionManager: class: SpearDevs\SyliusPushNotificationsPlugin\Manager\UserSubscriptionManager tags: - { name: bentools_webpush.subscription_manager, user_class: 'App\Entity\User\ShopUser' }
- Update your
bundles.php
file:
# config/bundles.php BenTools\WebPushBundle\WebPushBundle::class => ['all' => true], SpearDevs\SyliusPushNotificationsPlugin\SpearDevsSyliusPushNotificationsPlugin::class => ['all' => true],
- Configure routing in config/routes.yaml:
# config/routes.yaml speardevs_push_notifications_admin: resource: "@SpearDevsSyliusPushNotificationsPlugin/config/routing/admin_routing.yaml" prefix: /admin speardevs_push_notifications_shop: resource: "@SpearDevsSyliusPushNotificationsPlugin/config/routing/shop_routing.yaml" prefix: /
- Set env variables: Example:
APP_SCHEME='https'
- Update the database schema:
$ bin/console doctrine:schema:update --force
- Finish the instalation by running fixture:
$ bin/console sylius:fixtures:load speardevs_push_notification_plugin
Frontend setup
Requires Stimulus framework (https://stimulus.hotwired.dev/handbook/introduction).
Admin Panel
-
Run
cp vendor/speardevs/sylius-push-notifications-plugin/tests/Application/assets/controllers/admin/push-notifications-generate_controller.js <path-to-shop-controlers>
to copy admin controller script to your local project. -
templates/Admin/PushNotifications/Generate/_formWidget.html.twig
template should automatically usepush-notifications-generate_controller.js
script.
Storefront
-
Run
cp vendor/speardevs/sylius-push-notifications-plugin/tests/Application/assets/controllers/shop/push-notifications_controller.js <path-to-shop-controlers>
to copy shop controller script to your local project. -
templates/Shop/PushNotifications/push_notifications_controls.html.twig
template should automatically usepush-notifications_controller.js
script. -
Controller params:
- publicKey - public key for Web Push Protocol,
- serviceWorkerPath - path to projects service worker file
- subscribeUrl - url for listening to push notifications
-
Handle push notifications in project's service worker. Example script:
self.addEventListener('push', (event) => {
if (event && event.data) {
self.pushData = event.data;
if (self.pushData) {
const { title, options } = self.pushData.json();
event.waitUntil(
self.registration.showNotification(title, options),
);
}
}
});
Basic example for Stimulus installation.
-
Install Stimulus
@hotwired/stimulus
and@symfony/stimulus-bridge
packages via project's frontend package manager. -
Add
bootstrap.js
file to your assets folder:
import { startStimulusApp } from '@symfony/stimulus-bridge';
export const app = startStimulusApp(require.context(
'@symfony/stimulus-bridge/lazy-controller-loader!./controllers',
true,
/\.(j|t)sx?$/,
));
- Add
controllers.json
file to your assets folder:
{
"controllers": [],
"entrypoints": []
}
-
Import
bootstrap.js
at the end of admin's and shop'sentry.js
files. -
In admin's and shop's
webpack.config
files, after.addEntry(...)
line add.enableStimulusBridge('<path-to-controllers-file>/controllers.json')
Customization
Available services you can decorate and forms you can extend
$ bin/console debug:container | grep speardevs_sylius_push_notifications_plugin
Under the path:
admin/push-notification-configurations/
in the admin panel, you can set push notification icon.