Copy the Chatwoot (v4.14.0) frontend runnable subset into frontend/ for customization: - app/javascript/ (Vue SPA: dashboard, widget, sdk, portal, superadmin) - app/views/ (ERB templates for vite-plugin-ruby entrypoint resolution) - app/helpers/, app/assets/ (Rails view helpers, static assets) - enterprise/ (Enterprise edition frontend overlay) - config/vite.json, vite.config.ts, bin/vite (Vite-Rails toolchain) - package.json, pnpm-lock.yaml, tailwind/postcss/eslint configs - Gemfile, Gemfile.lock (vite_rails gem for bin/vite binstub) Excluded Rails backend: controllers, models, services, jobs, mailers, policies, db, lib, spec, public, node_modules. Update references to the new frontend location: - .gitignore: exclude frontend build artifacts (node_modules, tmp, packs), keep frontend/bin/ and frontend/vendor/ via negation - backend/scripts/parity_frontend_smoke.sh: CHATWOOT_DIR default reference/chatwoot -> ../frontend - backend/scripts/parity_frontend_browser_smoke.mjs: same default update - AGENTS.md: add frontend section with Rails/Vite coupling notes - README: architecture tree includes frontend/
97 lines
2.3 KiB
JavaScript
97 lines
2.3 KiB
JavaScript
import { Device } from '@twilio/voice-sdk';
|
|
import VoiceAPI from './voiceAPIClient';
|
|
|
|
const createCallDisconnectedEvent = () => new CustomEvent('call:disconnected');
|
|
|
|
class TwilioVoiceClient extends EventTarget {
|
|
constructor() {
|
|
super();
|
|
this.device = null;
|
|
this.activeConnection = null;
|
|
this.initialized = false;
|
|
this.inboxId = null;
|
|
}
|
|
|
|
async initializeDevice(inboxId) {
|
|
this.destroyDevice();
|
|
|
|
const response = await VoiceAPI.getToken(inboxId);
|
|
const { token, account_id } = response || {};
|
|
if (!token) throw new Error('Invalid token');
|
|
|
|
this.device = new Device(token, {
|
|
allowIncomingWhileBusy: true,
|
|
disableAudioContextSounds: true,
|
|
appParams: { account_id },
|
|
});
|
|
|
|
this.device.removeAllListeners();
|
|
this.device.on('connect', conn => {
|
|
this.activeConnection = conn;
|
|
conn.on('disconnect', this.onDisconnect);
|
|
});
|
|
|
|
this.device.on('disconnect', this.onDisconnect);
|
|
|
|
this.device.on('tokenWillExpire', async () => {
|
|
const r = await VoiceAPI.getToken(this.inboxId);
|
|
if (r?.token) this.device.updateToken(r.token);
|
|
});
|
|
|
|
this.initialized = true;
|
|
this.inboxId = inboxId;
|
|
|
|
return this.device;
|
|
}
|
|
|
|
get hasActiveConnection() {
|
|
return !!this.activeConnection;
|
|
}
|
|
|
|
endClientCall() {
|
|
if (this.activeConnection) {
|
|
this.activeConnection.disconnect();
|
|
}
|
|
this.activeConnection = null;
|
|
if (this.device) {
|
|
this.device.disconnectAll();
|
|
}
|
|
}
|
|
|
|
destroyDevice() {
|
|
if (this.device) {
|
|
this.device.destroy();
|
|
}
|
|
this.activeConnection = null;
|
|
this.device = null;
|
|
this.initialized = false;
|
|
this.inboxId = null;
|
|
}
|
|
|
|
async joinClientCall({ to, conversationId, callSid }) {
|
|
if (!this.device || !this.initialized || !to) return null;
|
|
if (this.activeConnection) return this.activeConnection;
|
|
|
|
const params = {
|
|
To: to,
|
|
is_agent: 'true',
|
|
conversation_id: conversationId,
|
|
call_sid: callSid,
|
|
};
|
|
|
|
const connection = await this.device.connect({ params });
|
|
this.activeConnection = connection;
|
|
|
|
connection.on('disconnect', this.onDisconnect);
|
|
|
|
return connection;
|
|
}
|
|
|
|
onDisconnect = () => {
|
|
this.activeConnection = null;
|
|
this.dispatchEvent(createCallDisconnectedEvent());
|
|
};
|
|
}
|
|
|
|
export default new TwilioVoiceClient();
|