feat: Allow detaching help center widget (#12459)
## Summary - allow help center portals to clear their associated web widget Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
This commit is contained in:
@@ -85,7 +85,8 @@ class Api::V1::Accounts::PortalsController < Api::V1::Accounts::BaseController
|
|||||||
|
|
||||||
def live_chat_widget_params
|
def live_chat_widget_params
|
||||||
permitted_params = params.permit(:inbox_id)
|
permitted_params = params.permit(:inbox_id)
|
||||||
return {} if permitted_params[:inbox_id].blank?
|
return {} unless permitted_params.key?(:inbox_id)
|
||||||
|
return { channel_web_widget_id: nil } if permitted_params[:inbox_id].blank?
|
||||||
|
|
||||||
inbox = Inbox.find(permitted_params[:inbox_id])
|
inbox = Inbox.find(permitted_params[:inbox_id])
|
||||||
return {} unless inbox.web_widget?
|
return {} unless inbox.web_widget?
|
||||||
|
|||||||
@@ -51,12 +51,20 @@ const originalState = reactive({ ...state });
|
|||||||
|
|
||||||
const liveChatWidgets = computed(() => {
|
const liveChatWidgets = computed(() => {
|
||||||
const inboxes = store.getters['inboxes/getInboxes'];
|
const inboxes = store.getters['inboxes/getInboxes'];
|
||||||
return inboxes
|
const widgetOptions = inboxes
|
||||||
.filter(inbox => inbox.channel_type === 'Channel::WebWidget')
|
.filter(inbox => inbox.channel_type === 'Channel::WebWidget')
|
||||||
.map(inbox => ({
|
.map(inbox => ({
|
||||||
value: inbox.id,
|
value: inbox.id,
|
||||||
label: inbox.name,
|
label: inbox.name,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
value: '',
|
||||||
|
label: t('HELP_CENTER.PORTAL_SETTINGS.FORM.LIVE_CHAT_WIDGET.NONE_OPTION'),
|
||||||
|
},
|
||||||
|
...widgetOptions,
|
||||||
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
const rules = {
|
const rules = {
|
||||||
@@ -108,7 +116,7 @@ watch(
|
|||||||
widgetColor: newVal.color,
|
widgetColor: newVal.color,
|
||||||
homePageLink: newVal.homepage_link,
|
homePageLink: newVal.homepage_link,
|
||||||
slug: newVal.slug,
|
slug: newVal.slug,
|
||||||
liveChatWidgetInboxId: newVal.inbox?.id,
|
liveChatWidgetInboxId: newVal.inbox?.id || '',
|
||||||
});
|
});
|
||||||
if (newVal.logo) {
|
if (newVal.logo) {
|
||||||
const {
|
const {
|
||||||
|
|||||||
@@ -741,7 +741,8 @@
|
|||||||
"LIVE_CHAT_WIDGET": {
|
"LIVE_CHAT_WIDGET": {
|
||||||
"LABEL": "Live chat widget",
|
"LABEL": "Live chat widget",
|
||||||
"PLACEHOLDER": "Select live chat widget",
|
"PLACEHOLDER": "Select live chat widget",
|
||||||
"HELP_TEXT": "Select a live chat widget that will appear on your help center"
|
"HELP_TEXT": "Select a live chat widget that will appear on your help center",
|
||||||
|
"NONE_OPTION": "No widget"
|
||||||
},
|
},
|
||||||
"BRAND_COLOR": {
|
"BRAND_COLOR": {
|
||||||
"LABEL": "Brand color"
|
"LABEL": "Brand color"
|
||||||
|
|||||||
@@ -154,6 +154,25 @@ RSpec.describe 'Api::V1::Accounts::Portals', type: :request do
|
|||||||
portal.reload
|
portal.reload
|
||||||
expect(portal.archived).to be_truthy
|
expect(portal.archived).to be_truthy
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'clears associated web widget when inbox selection is blank' do
|
||||||
|
web_widget_inbox = create(:inbox, account: account)
|
||||||
|
portal.update!(channel_web_widget: web_widget_inbox.channel)
|
||||||
|
|
||||||
|
expect(portal.channel_web_widget_id).to eq(web_widget_inbox.channel.id)
|
||||||
|
|
||||||
|
put "/api/v1/accounts/#{account.id}/portals/#{portal.slug}",
|
||||||
|
params: {
|
||||||
|
portal: { name: portal.name },
|
||||||
|
inbox_id: ''
|
||||||
|
},
|
||||||
|
headers: admin.create_new_auth_token
|
||||||
|
|
||||||
|
expect(response).to have_http_status(:success)
|
||||||
|
portal.reload
|
||||||
|
expect(portal.channel_web_widget_id).to be_nil
|
||||||
|
expect(response.parsed_body['inbox']).to be_nil
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user