{% comment %}
  GetGabs Chat Widget — App Embed Block
  Enabled via Online Store > Themes > Customize > App embeds
{% endcomment %}

{%- if block.settings.enable_chat_widget and block.settings.script_key != blank -%}
  <script src="https://app.getgabs.com/getredtowp/iframe/{{ block.settings.script_key | escape }}" async></script>
{%- endif -%}

{% schema %}
{
  "name": "GetGabs Chat Widget",
  "target": "body",
  "settings": [
    {
      "type": "header",
      "content": "Chat Widget Configuration"
    },
    {
      "type": "checkbox",
      "id": "enable_chat_widget",
      "label": "Enable Chat Widget",
      "default": true,
      "info": "Toggle the chat widget on/off"
    },
    {
      "type": "text",
      "id": "script_key",
      "label": "Widget Key",
      "info": "Enter your GetGabs widget key (ifkey) from the app dashboard. This is generated when you save your widget configuration.",
      "placeholder": "your-widget-key-here"
    }
  ]
}
{% endschema %}