- Triggers (Admin > Wyzwalacze): event-driven rules that fire immediately on a ticket lifecycle event (created/updated/status/priority/assignee/team/ category changed, new reply), with AND-conditions and ordered actions (set status/priority/team/assignee, send e-mail). Ships its own dedicated, freely add/edit/delete-able e-mail templates, kept separate from the fixed system templates. - Ticket watching: operators can star/"Obserwuj" any ticket to follow it regardless of assignment/team. - Real-time notification bell (private per-user broadcast channel, 30s fallback poll) with an opt-in in-tab browser push notification. - Per-user notification preferences (/settings/notifications): scope (mine/unassigned/watched/all) and e-mail toggle per event category. - Admin > Integracje: new tab for LDAP/AD + BookStack config, split out of Konfiguracja. - Operator queue: Podkategoria/Zespół/Utworzono columns (off by default). - Obserwuj button moved next to the auto-refresh countdown; trigger condition builder shows subcategory/zgłaszający as name dropdowns instead of raw IDs; /settings/notifications got a back link, full-width push card, and a bordered table container; admin panel tab and operator queue view now persist across a plain page refresh. - Docs: README/ARCHITECTURE/wiki updated for all of the above. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
113 lines
5.2 KiB
JavaScript
113 lines
5.2 KiB
JavaScript
import Echo from 'laravel-echo';
|
|
|
|
import Pusher from 'pusher-js';
|
|
window.Pusher = Pusher;
|
|
|
|
// Private channel subscriptions POST to /broadcasting/auth, which sits
|
|
// behind the app's normal CSRF middleware like any other POST route —
|
|
// without this header every private-channel auth request 419s silently
|
|
// (pusher-js swallows it as a subscription error), so nothing broadcast
|
|
// ever reaches the browser even though the socket connection itself works.
|
|
const csrfToken = document.querySelector('meta[name="csrf-token"]')?.getAttribute('content');
|
|
|
|
window.Echo = new Echo({
|
|
broadcaster: 'reverb',
|
|
key: import.meta.env.VITE_REVERB_APP_KEY,
|
|
wsHost: import.meta.env.VITE_REVERB_HOST,
|
|
wsPort: import.meta.env.VITE_REVERB_PORT ?? 80,
|
|
wssPort: import.meta.env.VITE_REVERB_PORT ?? 443,
|
|
forceTLS: (import.meta.env.VITE_REVERB_SCHEME ?? 'https') === 'https',
|
|
enabledTransports: ['ws', 'wss'],
|
|
auth: {
|
|
headers: {
|
|
'X-CSRF-TOKEN': csrfToken,
|
|
},
|
|
},
|
|
});
|
|
|
|
/**
|
|
* Bridges Reverb broadcast events into plain Livewire events rather than
|
|
* using the `#[On('echo-private:...')]` attribute directly on components —
|
|
* this indirection is deliberately version-agnostic and easy to verify from
|
|
* the browser console regardless of Livewire's internals.
|
|
*
|
|
* This file is loaded via @vite as `type="module"`, which the HTML spec
|
|
* defers until after the document is parsed — meaning any plain
|
|
* (non-deferred) <script> earlier in the page, including Livewire's own
|
|
* bootstrap script from @livewireScripts, has ALREADY run by the time this
|
|
* executes. So `window.Livewire` is already available here; there's no
|
|
* reason to wait for the 'livewire:init' event. Waiting for it was actually
|
|
* a bug: Livewire dispatches that event synchronously as part of its own
|
|
* (earlier-running) script, so a listener registered this late permanently
|
|
* missed it — silently disabling this whole subscription, every time.
|
|
*/
|
|
if (window.currentUserId) {
|
|
window.Echo.private('operator.queue')
|
|
.listen('.TicketQueueChanged', (e) => {
|
|
if (e.actorId !== window.currentUserId) {
|
|
// Only ticketId is passed through — Livewire calls #[On] methods
|
|
// with the payload as named arguments, so keeping this to a
|
|
// single well-known key avoids every listener having to declare
|
|
// (and ignore) every field this event might ever carry.
|
|
Livewire.dispatch('queue-changed', { ticketId: e.ticketId });
|
|
}
|
|
})
|
|
.error((error) => console.error('operator.queue subscription error', error));
|
|
}
|
|
|
|
/**
|
|
* Every logged-in user's own private notification stream — refreshes the
|
|
* bell instantly (see NotificationBell::onBellNotification()) and, when the
|
|
* viewer has opted in via the toggle on the notification-preferences page,
|
|
* also raises an in-tab browser Notification. Deliberately lightweight: no
|
|
* service worker, no push subscription — this only fires while the tab
|
|
* calling it is open, same limitation as the operator.queue block above.
|
|
*/
|
|
if (window.currentUserId) {
|
|
window.Echo.private('App.Models.User.' + window.currentUserId)
|
|
.listen('.NotificationCreated', (e) => {
|
|
Livewire.dispatch('bell-notification-received', { notificationId: e.notificationId });
|
|
|
|
if (
|
|
localStorage.getItem('browserNotificationsEnabled') === '1'
|
|
&& typeof Notification !== 'undefined'
|
|
&& Notification.permission === 'granted'
|
|
) {
|
|
const popup = new Notification(e.message, { tag: e.notificationId });
|
|
popup.onclick = () => {
|
|
window.focus();
|
|
window.location.href = e.url;
|
|
};
|
|
}
|
|
})
|
|
.error((error) => console.error('user notification channel subscription error', error));
|
|
}
|
|
|
|
/**
|
|
* Subscribes to a single ticket's channel — called by the Blade view of
|
|
* whichever TicketShow component (operator or client) is currently mounted,
|
|
* since the channel name needs the ticket id that only the page knows.
|
|
*/
|
|
window.subscribeToTicketChannel = function (ticketId) {
|
|
window.Echo.private('ticket.' + ticketId)
|
|
.listen('.TicketMessagePosted', (e) => {
|
|
if (e.actorId !== window.currentUserId) {
|
|
Livewire.dispatch('ticket-message-posted', { ticketId: e.ticketId });
|
|
}
|
|
})
|
|
.listen('.TicketQueueChanged', (e) => {
|
|
if (e.actorId !== window.currentUserId) {
|
|
Livewire.dispatch('queue-changed', { ticketId: e.ticketId });
|
|
}
|
|
})
|
|
.error((error) => console.error('ticket.' + ticketId + ' subscription error', error));
|
|
};
|
|
|
|
// The @script block in ticket-show.blade.php calls subscribeToTicketChannel()
|
|
// as soon as Livewire processes that component — which can happen either
|
|
// before or after this deferred module has run, depending on exactly when
|
|
// Livewire gets to it. If it ran first, it queued the ticket id here instead
|
|
// of finding the function undefined; flush that queue now that we're ready.
|
|
(window.__pendingTicketChannelIds || []).forEach((id) => window.subscribeToTicketChannel(id));
|
|
window.__pendingTicketChannelIds = null;
|