Compare commits
14
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6a54124f38 | ||
|
|
94b81b49f9 | ||
|
|
45afde970b | ||
|
|
3e52518f73 | ||
|
|
f22c5859a0 | ||
|
|
d13437dc88 | ||
|
|
74db596b22 | ||
|
|
0d0df0eead | ||
|
|
368853c46f | ||
|
|
62ff1bd883 | ||
|
|
4938e9847e | ||
|
|
46c69cb1b0 | ||
|
|
933fcb7d1f | ||
|
|
731d616e7c |
+2
-3
@@ -2,7 +2,7 @@
|
|||||||
# https://www.chatwoot.com/docs/self-hosted/configuration/environment-variables/#rails-production-variables
|
# https://www.chatwoot.com/docs/self-hosted/configuration/environment-variables/#rails-production-variables
|
||||||
|
|
||||||
# Used to verify the integrity of signed cookies. so ensure a secure value is set
|
# Used to verify the integrity of signed cookies. so ensure a secure value is set
|
||||||
# SECRET_KEY_BASE should be alphanumeric. Avoid special characters or symbols.
|
# SECRET_KEY_BASE should be alphanumeric. Avoid special characters or symbols.
|
||||||
# Use `rake secret` to generate this variable
|
# Use `rake secret` to generate this variable
|
||||||
SECRET_KEY_BASE=replace_with_lengthy_secure_hex
|
SECRET_KEY_BASE=replace_with_lengthy_secure_hex
|
||||||
|
|
||||||
@@ -216,8 +216,6 @@ ANDROID_SHA256_CERT_FINGERPRINT=AC:73:8E:DE:EB:56:EA:CC:10:87:02:A7:65:37:7B:38:
|
|||||||
# ENABLE_RACK_ATTACK=true
|
# ENABLE_RACK_ATTACK=true
|
||||||
# RACK_ATTACK_LIMIT=300
|
# RACK_ATTACK_LIMIT=300
|
||||||
# ENABLE_RACK_ATTACK_WIDGET_API=true
|
# ENABLE_RACK_ATTACK_WIDGET_API=true
|
||||||
# Comma-separated list of trusted IPs that bypass Rack Attack throttling rules
|
|
||||||
# RACK_ATTACK_ALLOWED_IPS=127.0.0.1,::1,192.168.0.10
|
|
||||||
|
|
||||||
## Running chatwoot as an API only server
|
## Running chatwoot as an API only server
|
||||||
## setting this value to true will disable the frontend dashboard endpoints
|
## setting this value to true will disable the frontend dashboard endpoints
|
||||||
@@ -259,3 +257,4 @@ AZURE_APP_SECRET=
|
|||||||
# Set to true if you want to remove stale contact inboxes
|
# Set to true if you want to remove stale contact inboxes
|
||||||
# contact_inboxes with no conversation older than 90 days will be removed
|
# contact_inboxes with no conversation older than 90 days will be removed
|
||||||
# REMOVE_STALE_CONTACT_INBOX_JOB_STATUS=false
|
# REMOVE_STALE_CONTACT_INBOX_JOB_STATUS=false
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
# #
|
# #
|
||||||
# # Linux nightly installer action
|
# # Linux nightly installer action
|
||||||
# # This action will try to install and setup
|
# # This action will try to install and setup
|
||||||
# # chatwoot on an Ubuntu 22.04 machine using
|
# # chatwoot on an Ubuntu 20.04 machine using
|
||||||
# # the linux installer script.
|
# # the linux installer script.
|
||||||
# #
|
# #
|
||||||
# # This is set to run daily at midnight.
|
# # This is set to run daily at midnight.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-20.04
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: pgvector/pgvector:pg15
|
image: pgvector/pgvector:pg15
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|||||||
+5
-5
@@ -71,6 +71,9 @@ test/cypress/videos/*
|
|||||||
/config/master.key
|
/config/master.key
|
||||||
/config/*.enc
|
/config/*.enc
|
||||||
|
|
||||||
|
#ignore files under .vscode directory
|
||||||
|
.vscode
|
||||||
|
.cursor
|
||||||
|
|
||||||
# yalc for local testing
|
# yalc for local testing
|
||||||
.yalc
|
.yalc
|
||||||
@@ -89,8 +92,5 @@ yarn-debug.log*
|
|||||||
# https://vitejs.dev/guide/env-and-mode.html#env-files
|
# https://vitejs.dev/guide/env-and-mode.html#env-files
|
||||||
*.local
|
*.local
|
||||||
|
|
||||||
|
# Claude.ai config file
|
||||||
# TextEditors & AI Agents config files
|
CLAUDE.md
|
||||||
.vscode
|
|
||||||
.claude/settings.local.json
|
|
||||||
.cursor
|
|
||||||
|
|||||||
+3
-3
@@ -4,8 +4,8 @@
|
|||||||
# lint js and vue files
|
# lint js and vue files
|
||||||
npx --no-install lint-staged
|
npx --no-install lint-staged
|
||||||
|
|
||||||
# lint only staged ruby files that still exist (not deleted)
|
# lint only staged ruby files
|
||||||
git diff --name-only --cached | xargs -I {} sh -c 'test -f "{}" && echo "{}"' | grep '\.rb$' | xargs -I {} bundle exec rubocop --force-exclusion -a "{}" || true
|
git diff --name-only --cached | xargs ls -1 2>/dev/null | grep '\.rb$' | xargs bundle exec rubocop --force-exclusion -a
|
||||||
|
|
||||||
# stage rubocop changes to files
|
# stage rubocop changes to files
|
||||||
git diff --name-only --cached | xargs -I {} sh -c 'test -f "{}" && git add "{}"' || true
|
git diff --name-only --cached | xargs git add
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
../../AGENTS.md
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
# Chatwoot Development Guidelines
|
|
||||||
|
|
||||||
## Build / Test / Lint
|
|
||||||
|
|
||||||
- **Setup**: `bundle install && pnpm install`
|
|
||||||
- **Run Dev**: `pnpm dev` or `overmind start -f ./Procfile.dev`
|
|
||||||
- **Lint JS/Vue**: `pnpm eslint` / `pnpm eslint:fix`
|
|
||||||
- **Lint Ruby**: `bundle exec rubocop -a`
|
|
||||||
- **Test JS**: `pnpm test` or `pnpm test:watch`
|
|
||||||
- **Test Ruby**: `bundle exec rspec spec/path/to/file_spec.rb`
|
|
||||||
- **Single Test**: `bundle exec rspec spec/path/to/file_spec.rb:LINE_NUMBER`
|
|
||||||
- **Run Project**: `overmind start -f Procfile.dev`
|
|
||||||
|
|
||||||
## Code Style
|
|
||||||
|
|
||||||
- **Ruby**: Follow RuboCop rules (150 character max line length)
|
|
||||||
- **Vue/JS**: Use ESLint (Airbnb base + Vue 3 recommended)
|
|
||||||
- **Vue Components**: Use PascalCase
|
|
||||||
- **Events**: Use camelCase
|
|
||||||
- **I18n**: No bare strings in templates; use i18n
|
|
||||||
- **Error Handling**: Use custom exceptions (`lib/custom_exceptions/`)
|
|
||||||
- **Models**: Validate presence/uniqueness, add proper indexes
|
|
||||||
- **Type Safety**: Use PropTypes in Vue, strong params in Rails
|
|
||||||
- **Naming**: Use clear, descriptive names with consistent casing
|
|
||||||
- **Vue API**: Always use Composition API with `<script setup>` at the top
|
|
||||||
|
|
||||||
## Styling
|
|
||||||
|
|
||||||
- **Tailwind Only**:
|
|
||||||
- Do not write custom CSS
|
|
||||||
- Do not use scoped CSS
|
|
||||||
- Do not use inline styles
|
|
||||||
- Always use Tailwind utility classes
|
|
||||||
- **Colors**: Refer to `tailwind.config.js` for color definitions
|
|
||||||
|
|
||||||
## General Guidelines
|
|
||||||
|
|
||||||
- MVP focus: Least code change, happy-path only
|
|
||||||
- No unnecessary defensive programming
|
|
||||||
- Break down complex tasks into small, testable units
|
|
||||||
- Iterate after confirmation
|
|
||||||
- Avoid writing specs unless explicitly asked
|
|
||||||
- Remove dead/unreachable/unused code
|
|
||||||
- Don’t write multiple versions or backups for the same logic — pick the best approach and implement it
|
|
||||||
- Don't reference Claude in commit messages
|
|
||||||
|
|
||||||
## Project-Specific
|
|
||||||
|
|
||||||
- **Translations**:
|
|
||||||
- Only update `en.yml` and `en.json`
|
|
||||||
- Other languages are handled by the community
|
|
||||||
- Backend i18n → `en.yml`, Frontend i18n → `en.json`
|
|
||||||
- **Frontend**:
|
|
||||||
- Use `components-next/` for message bubbles (the rest is being deprecated)
|
|
||||||
|
|
||||||
## Ruby Best Practices
|
|
||||||
|
|
||||||
- Use compact `module/class` definitions; avoid nested styles
|
|
||||||
@@ -174,6 +174,7 @@ gem 'pgvector'
|
|||||||
gem 'reverse_markdown'
|
gem 'reverse_markdown'
|
||||||
|
|
||||||
gem 'iso-639'
|
gem 'iso-639'
|
||||||
|
gem 'ruby_llm', '1.1.0rc1'
|
||||||
gem 'ruby-openai'
|
gem 'ruby-openai'
|
||||||
|
|
||||||
gem 'shopify_api'
|
gem 'shopify_api'
|
||||||
|
|||||||
+14
-6
@@ -485,7 +485,7 @@ GEM
|
|||||||
uri
|
uri
|
||||||
net-http-persistent (4.0.2)
|
net-http-persistent (4.0.2)
|
||||||
connection_pool (~> 2.2)
|
connection_pool (~> 2.2)
|
||||||
net-imap (0.4.20)
|
net-imap (0.4.19)
|
||||||
date
|
date
|
||||||
net-protocol
|
net-protocol
|
||||||
net-pop (0.1.2)
|
net-pop (0.1.2)
|
||||||
@@ -501,14 +501,14 @@ GEM
|
|||||||
newrelic_rpm (9.6.0)
|
newrelic_rpm (9.6.0)
|
||||||
base64
|
base64
|
||||||
nio4r (2.7.3)
|
nio4r (2.7.3)
|
||||||
nokogiri (1.18.8)
|
nokogiri (1.18.4)
|
||||||
mini_portile2 (~> 2.8.2)
|
mini_portile2 (~> 2.8.2)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.18.8-arm64-darwin)
|
nokogiri (1.18.4-arm64-darwin)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.18.8-x86_64-darwin)
|
nokogiri (1.18.4-x86_64-darwin)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.18.8-x86_64-linux-gnu)
|
nokogiri (1.18.4-x86_64-linux-gnu)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
oauth (1.1.0)
|
oauth (1.1.0)
|
||||||
oauth-tty (~> 1.0, >= 1.0.1)
|
oauth-tty (~> 1.0, >= 1.0.1)
|
||||||
@@ -567,7 +567,7 @@ GEM
|
|||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
raabro (1.4.0)
|
raabro (1.4.0)
|
||||||
racc (1.8.1)
|
racc (1.8.1)
|
||||||
rack (2.2.14)
|
rack (2.2.13)
|
||||||
rack-attack (6.7.0)
|
rack-attack (6.7.0)
|
||||||
rack (>= 1.0, < 4)
|
rack (>= 1.0, < 4)
|
||||||
rack-contrib (2.5.0)
|
rack-contrib (2.5.0)
|
||||||
@@ -698,6 +698,13 @@ GEM
|
|||||||
ruby2ruby (2.5.0)
|
ruby2ruby (2.5.0)
|
||||||
ruby_parser (~> 3.1)
|
ruby_parser (~> 3.1)
|
||||||
sexp_processor (~> 4.6)
|
sexp_processor (~> 4.6)
|
||||||
|
ruby_llm (1.1.0rc1)
|
||||||
|
base64
|
||||||
|
event_stream_parser (~> 1)
|
||||||
|
faraday (~> 2)
|
||||||
|
faraday-multipart (~> 1)
|
||||||
|
faraday-retry (~> 2)
|
||||||
|
zeitwerk (~> 2)
|
||||||
ruby_parser (3.20.0)
|
ruby_parser (3.20.0)
|
||||||
sexp_processor (~> 4.16)
|
sexp_processor (~> 4.16)
|
||||||
sass (3.7.4)
|
sass (3.7.4)
|
||||||
@@ -964,6 +971,7 @@ DEPENDENCIES
|
|||||||
rubocop-rails
|
rubocop-rails
|
||||||
rubocop-rspec
|
rubocop-rspec
|
||||||
ruby-openai
|
ruby-openai
|
||||||
|
ruby_llm (= 1.1.0rc1)
|
||||||
scout_apm
|
scout_apm
|
||||||
scss_lint
|
scss_lint
|
||||||
seed_dump
|
seed_dump
|
||||||
|
|||||||
@@ -32,7 +32,14 @@ class AccountBuilder
|
|||||||
end
|
end
|
||||||
|
|
||||||
def validate_email
|
def validate_email
|
||||||
Account::SignUpEmailValidationService.new(@email).perform
|
raise InvalidEmail.new({ domain_blocked: domain_blocked }) if domain_blocked?
|
||||||
|
|
||||||
|
address = ValidEmail2::Address.new(@email)
|
||||||
|
if address.valid? && !address.disposable?
|
||||||
|
true
|
||||||
|
else
|
||||||
|
raise InvalidEmail.new({ valid: address.valid?, disposable: address.disposable? })
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def validate_user
|
def validate_user
|
||||||
@@ -74,4 +81,21 @@ class AccountBuilder
|
|||||||
@user.confirm if @confirmed
|
@user.confirm if @confirmed
|
||||||
@user.save!
|
@user.save!
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def domain_blocked?
|
||||||
|
domain = @email.split('@').last
|
||||||
|
|
||||||
|
blocked_domains.each do |blocked_domain|
|
||||||
|
return true if domain.match?(blocked_domain)
|
||||||
|
end
|
||||||
|
|
||||||
|
false
|
||||||
|
end
|
||||||
|
|
||||||
|
def blocked_domains
|
||||||
|
domains = GlobalConfigService.load('BLOCKED_EMAIL_DOMAINS', '')
|
||||||
|
return [] if domains.blank?
|
||||||
|
|
||||||
|
domains.split("\n").map(&:strip)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ class Campaigns::CampaignConversationBuilder
|
|||||||
@contact_inbox.lock!
|
@contact_inbox.lock!
|
||||||
|
|
||||||
# We won't send campaigns if a conversation is already present
|
# We won't send campaigns if a conversation is already present
|
||||||
raise 'Conversation already present' if @contact_inbox.reload.conversations.present?
|
raise 'Conversation alread present' if @contact_inbox.reload.conversations.present?
|
||||||
|
|
||||||
@conversation = ::Conversation.create!(conversation_params)
|
@conversation = ::Conversation.create!(conversation_params)
|
||||||
Messages::MessageBuilder.new(@campaign.sender, @conversation, message_params).perform
|
Messages::MessageBuilder.new(@campaign.sender, @conversation, message_params).perform
|
||||||
|
|||||||
@@ -63,33 +63,9 @@ class ContactInboxWithContactBuilder
|
|||||||
contact = find_contact_by_identifier(contact_attributes[:identifier])
|
contact = find_contact_by_identifier(contact_attributes[:identifier])
|
||||||
contact ||= find_contact_by_email(contact_attributes[:email])
|
contact ||= find_contact_by_email(contact_attributes[:email])
|
||||||
contact ||= find_contact_by_phone_number(contact_attributes[:phone_number])
|
contact ||= find_contact_by_phone_number(contact_attributes[:phone_number])
|
||||||
contact ||= find_contact_by_instagram_source_id(source_id) if instagram_channel?
|
|
||||||
|
|
||||||
contact
|
contact
|
||||||
end
|
end
|
||||||
|
|
||||||
def instagram_channel?
|
|
||||||
inbox.channel_type == 'Channel::Instagram'
|
|
||||||
end
|
|
||||||
|
|
||||||
# There might be existing contact_inboxes created through Channel::FacebookPage
|
|
||||||
# with the same Instagram source_id. New Instagram interactions should create fresh contact_inboxes
|
|
||||||
# while still reusing contacts if found in Facebook channels so that we can create
|
|
||||||
# new conversations with the same contact.
|
|
||||||
def find_contact_by_instagram_source_id(instagram_id)
|
|
||||||
return if instagram_id.blank?
|
|
||||||
|
|
||||||
existing_contact_inbox = ContactInbox.joins(:inbox)
|
|
||||||
.where(source_id: instagram_id)
|
|
||||||
.where(
|
|
||||||
'inboxes.channel_type = ? AND inboxes.account_id = ?',
|
|
||||||
'Channel::FacebookPage',
|
|
||||||
account.id
|
|
||||||
).first
|
|
||||||
|
|
||||||
existing_contact_inbox&.contact
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_contact_by_identifier(identifier)
|
def find_contact_by_identifier(identifier)
|
||||||
return if identifier.blank?
|
return if identifier.blank?
|
||||||
|
|
||||||
|
|||||||
@@ -1,178 +0,0 @@
|
|||||||
class Messages::Instagram::BaseMessageBuilder < Messages::Messenger::MessageBuilder
|
|
||||||
attr_reader :messaging
|
|
||||||
|
|
||||||
def initialize(messaging, inbox, outgoing_echo: false)
|
|
||||||
super()
|
|
||||||
@messaging = messaging
|
|
||||||
@inbox = inbox
|
|
||||||
@outgoing_echo = outgoing_echo
|
|
||||||
end
|
|
||||||
|
|
||||||
def perform
|
|
||||||
return if @inbox.channel.reauthorization_required?
|
|
||||||
|
|
||||||
ActiveRecord::Base.transaction do
|
|
||||||
build_message
|
|
||||||
end
|
|
||||||
rescue StandardError => e
|
|
||||||
handle_error(e)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def attachments
|
|
||||||
@messaging[:message][:attachments] || {}
|
|
||||||
end
|
|
||||||
|
|
||||||
def message_type
|
|
||||||
@outgoing_echo ? :outgoing : :incoming
|
|
||||||
end
|
|
||||||
|
|
||||||
def message_identifier
|
|
||||||
message[:mid]
|
|
||||||
end
|
|
||||||
|
|
||||||
def message_source_id
|
|
||||||
@outgoing_echo ? recipient_id : sender_id
|
|
||||||
end
|
|
||||||
|
|
||||||
def message_is_unsupported?
|
|
||||||
message[:is_unsupported].present? && @messaging[:message][:is_unsupported] == true
|
|
||||||
end
|
|
||||||
|
|
||||||
def sender_id
|
|
||||||
@messaging[:sender][:id]
|
|
||||||
end
|
|
||||||
|
|
||||||
def recipient_id
|
|
||||||
@messaging[:recipient][:id]
|
|
||||||
end
|
|
||||||
|
|
||||||
def message
|
|
||||||
@messaging[:message]
|
|
||||||
end
|
|
||||||
|
|
||||||
def contact
|
|
||||||
@contact ||= @inbox.contact_inboxes.find_by(source_id: message_source_id)&.contact
|
|
||||||
end
|
|
||||||
|
|
||||||
def conversation
|
|
||||||
@conversation ||= set_conversation_based_on_inbox_config
|
|
||||||
end
|
|
||||||
|
|
||||||
def set_conversation_based_on_inbox_config
|
|
||||||
if @inbox.lock_to_single_conversation
|
|
||||||
find_conversation_scope.order(created_at: :desc).first || build_conversation
|
|
||||||
else
|
|
||||||
find_or_build_for_multiple_conversations
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_conversation_scope
|
|
||||||
Conversation.where(conversation_params)
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_or_build_for_multiple_conversations
|
|
||||||
last_conversation = find_conversation_scope.where.not(status: :resolved).order(created_at: :desc).first
|
|
||||||
return build_conversation if last_conversation.nil?
|
|
||||||
|
|
||||||
last_conversation
|
|
||||||
end
|
|
||||||
|
|
||||||
def message_content
|
|
||||||
@messaging[:message][:text]
|
|
||||||
end
|
|
||||||
|
|
||||||
def story_reply_attributes
|
|
||||||
message[:reply_to][:story] if message[:reply_to].present? && message[:reply_to][:story].present?
|
|
||||||
end
|
|
||||||
|
|
||||||
def message_reply_attributes
|
|
||||||
message[:reply_to][:mid] if message[:reply_to].present? && message[:reply_to][:mid].present?
|
|
||||||
end
|
|
||||||
|
|
||||||
def build_message
|
|
||||||
# Duplicate webhook events may be sent for the same message
|
|
||||||
# when a user is connected to the Instagram account through both Messenger and Instagram login.
|
|
||||||
# There is chance for echo events to be sent for the same message.
|
|
||||||
# Therefore, we need to check if the message already exists before creating it.
|
|
||||||
return if message_already_exists?
|
|
||||||
|
|
||||||
return if message_content.blank? && all_unsupported_files?
|
|
||||||
|
|
||||||
@message = conversation.messages.create!(message_params)
|
|
||||||
save_story_id
|
|
||||||
|
|
||||||
attachments.each do |attachment|
|
|
||||||
process_attachment(attachment)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def save_story_id
|
|
||||||
return if story_reply_attributes.blank?
|
|
||||||
|
|
||||||
@message.save_story_info(story_reply_attributes)
|
|
||||||
end
|
|
||||||
|
|
||||||
def build_conversation
|
|
||||||
@contact_inbox ||= contact.contact_inboxes.find_by!(source_id: message_source_id)
|
|
||||||
Conversation.create!(conversation_params.merge(
|
|
||||||
contact_inbox_id: @contact_inbox.id,
|
|
||||||
additional_attributes: additional_conversation_attributes
|
|
||||||
))
|
|
||||||
end
|
|
||||||
|
|
||||||
def additional_conversation_attributes
|
|
||||||
{}
|
|
||||||
end
|
|
||||||
|
|
||||||
def conversation_params
|
|
||||||
{
|
|
||||||
account_id: @inbox.account_id,
|
|
||||||
inbox_id: @inbox.id,
|
|
||||||
contact_id: contact.id
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def message_params
|
|
||||||
params = {
|
|
||||||
account_id: conversation.account_id,
|
|
||||||
inbox_id: conversation.inbox_id,
|
|
||||||
message_type: message_type,
|
|
||||||
source_id: message_identifier,
|
|
||||||
content: message_content,
|
|
||||||
sender: @outgoing_echo ? nil : contact,
|
|
||||||
content_attributes: {
|
|
||||||
in_reply_to_external_id: message_reply_attributes
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
params[:content_attributes][:is_unsupported] = true if message_is_unsupported?
|
|
||||||
params
|
|
||||||
end
|
|
||||||
|
|
||||||
def message_already_exists?
|
|
||||||
cw_message = conversation.messages.where(
|
|
||||||
source_id: @messaging[:message][:mid]
|
|
||||||
).first
|
|
||||||
|
|
||||||
cw_message.present?
|
|
||||||
end
|
|
||||||
|
|
||||||
def all_unsupported_files?
|
|
||||||
return if attachments.empty?
|
|
||||||
|
|
||||||
attachments_type = attachments.pluck(:type).uniq.first
|
|
||||||
unsupported_file_type?(attachments_type)
|
|
||||||
end
|
|
||||||
|
|
||||||
def handle_error(error)
|
|
||||||
ChatwootExceptionTracker.new(error, account: @inbox.account).capture_exception
|
|
||||||
true
|
|
||||||
end
|
|
||||||
|
|
||||||
# Abstract methods to be implemented by subclasses
|
|
||||||
def get_story_object_from_source_id(source_id)
|
|
||||||
raise NotImplementedError
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,42 +1,200 @@
|
|||||||
class Messages::Instagram::MessageBuilder < Messages::Instagram::BaseMessageBuilder
|
# This class creates both outgoing messages from chatwoot and echo outgoing messages based on the flag `outgoing_echo`
|
||||||
|
# Assumptions
|
||||||
|
# 1. Incase of an outgoing message which is echo, source_id will NOT be nil,
|
||||||
|
# based on this we are showing "not sent from chatwoot" message in frontend
|
||||||
|
# Hence there is no need to set user_id in message for outgoing echo messages.
|
||||||
|
|
||||||
|
class Messages::Instagram::MessageBuilder < Messages::Messenger::MessageBuilder
|
||||||
|
attr_reader :messaging
|
||||||
|
|
||||||
def initialize(messaging, inbox, outgoing_echo: false)
|
def initialize(messaging, inbox, outgoing_echo: false)
|
||||||
super(messaging, inbox, outgoing_echo: outgoing_echo)
|
super()
|
||||||
|
@messaging = messaging
|
||||||
|
@inbox = inbox
|
||||||
|
@outgoing_echo = outgoing_echo
|
||||||
|
end
|
||||||
|
|
||||||
|
def perform
|
||||||
|
return if @inbox.channel.reauthorization_required?
|
||||||
|
|
||||||
|
ActiveRecord::Base.transaction do
|
||||||
|
build_message
|
||||||
|
end
|
||||||
|
rescue Koala::Facebook::AuthenticationError => e
|
||||||
|
Rails.logger.warn("Instagram authentication error for inbox: #{@inbox.id} with error: #{e.message}")
|
||||||
|
Rails.logger.error e
|
||||||
|
@inbox.channel.authorization_error!
|
||||||
|
raise
|
||||||
|
rescue StandardError => e
|
||||||
|
ChatwootExceptionTracker.new(e, account: @inbox.account).capture_exception
|
||||||
|
true
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def get_story_object_from_source_id(source_id)
|
def attachments
|
||||||
url = "#{base_uri}/#{source_id}?fields=story,from&access_token=#{@inbox.channel.access_token}"
|
@messaging[:message][:attachments] || {}
|
||||||
|
|
||||||
response = HTTParty.get(url)
|
|
||||||
|
|
||||||
return JSON.parse(response.body).with_indifferent_access if response.success?
|
|
||||||
|
|
||||||
# Create message first if it doesn't exist
|
|
||||||
@message ||= conversation.messages.create!(message_params)
|
|
||||||
handle_error_response(response)
|
|
||||||
nil
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def handle_error_response(response)
|
def message_type
|
||||||
parsed_response = JSON.parse(response.body)
|
@outgoing_echo ? :outgoing : :incoming
|
||||||
error_code = parsed_response.dig('error', 'code')
|
end
|
||||||
|
|
||||||
# https://developers.facebook.com/docs/messenger-platform/error-codes
|
def message_identifier
|
||||||
# Access token has expired or become invalid.
|
message[:mid]
|
||||||
channel.authorization_error! if error_code == 190
|
end
|
||||||
|
|
||||||
# There was a problem scraping data from the provided link.
|
def message_source_id
|
||||||
# https://developers.facebook.com/docs/graph-api/guides/error-handling/ search for error code 1609005
|
@outgoing_echo ? recipient_id : sender_id
|
||||||
if error_code == 1_609_005
|
end
|
||||||
@message.attachments.destroy_all
|
|
||||||
@message.update(content: I18n.t('conversations.messages.instagram_deleted_story_content'))
|
def message_is_unsupported?
|
||||||
|
message[:is_unsupported].present? && @messaging[:message][:is_unsupported] == true
|
||||||
|
end
|
||||||
|
|
||||||
|
def sender_id
|
||||||
|
@messaging[:sender][:id]
|
||||||
|
end
|
||||||
|
|
||||||
|
def recipient_id
|
||||||
|
@messaging[:recipient][:id]
|
||||||
|
end
|
||||||
|
|
||||||
|
def message
|
||||||
|
@messaging[:message]
|
||||||
|
end
|
||||||
|
|
||||||
|
def contact
|
||||||
|
@contact ||= @inbox.contact_inboxes.find_by(source_id: message_source_id)&.contact
|
||||||
|
end
|
||||||
|
|
||||||
|
def conversation
|
||||||
|
@conversation ||= set_conversation_based_on_inbox_config
|
||||||
|
end
|
||||||
|
|
||||||
|
def instagram_direct_message_conversation
|
||||||
|
Conversation.where(conversation_params)
|
||||||
|
.where("additional_attributes ->> 'type' = 'instagram_direct_message'")
|
||||||
|
end
|
||||||
|
|
||||||
|
def set_conversation_based_on_inbox_config
|
||||||
|
if @inbox.lock_to_single_conversation
|
||||||
|
instagram_direct_message_conversation.order(created_at: :desc).first || build_conversation
|
||||||
|
else
|
||||||
|
find_or_build_for_multiple_conversations
|
||||||
end
|
end
|
||||||
|
|
||||||
Rails.logger.error("[InstagramStoryFetchError]: #{parsed_response.dig('error', 'message')} #{error_code}")
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def base_uri
|
def find_or_build_for_multiple_conversations
|
||||||
"https://graph.instagram.com/#{GlobalConfigService.load('INSTAGRAM_API_VERSION', 'v22.0')}"
|
last_conversation = instagram_direct_message_conversation.where.not(status: :resolved).order(created_at: :desc).first
|
||||||
|
|
||||||
|
return build_conversation if last_conversation.nil?
|
||||||
|
|
||||||
|
last_conversation
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def message_content
|
||||||
|
@messaging[:message][:text]
|
||||||
|
end
|
||||||
|
|
||||||
|
def story_reply_attributes
|
||||||
|
message[:reply_to][:story] if message[:reply_to].present? && message[:reply_to][:story].present?
|
||||||
|
end
|
||||||
|
|
||||||
|
def message_reply_attributes
|
||||||
|
message[:reply_to][:mid] if message[:reply_to].present? && message[:reply_to][:mid].present?
|
||||||
|
end
|
||||||
|
|
||||||
|
def build_message
|
||||||
|
return if @outgoing_echo && already_sent_from_chatwoot?
|
||||||
|
return if message_content.blank? && all_unsupported_files?
|
||||||
|
|
||||||
|
@message = conversation.messages.create!(message_params)
|
||||||
|
save_story_id
|
||||||
|
|
||||||
|
attachments.each do |attachment|
|
||||||
|
process_attachment(attachment)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def save_story_id
|
||||||
|
return if story_reply_attributes.blank?
|
||||||
|
|
||||||
|
@message.save_story_info(story_reply_attributes)
|
||||||
|
end
|
||||||
|
|
||||||
|
def build_conversation
|
||||||
|
@contact_inbox ||= contact.contact_inboxes.find_by!(source_id: message_source_id)
|
||||||
|
|
||||||
|
Conversation.create!(conversation_params.merge(
|
||||||
|
contact_inbox_id: @contact_inbox.id,
|
||||||
|
additional_attributes: { type: 'instagram_direct_message' }
|
||||||
|
))
|
||||||
|
end
|
||||||
|
|
||||||
|
def conversation_params
|
||||||
|
{
|
||||||
|
account_id: @inbox.account_id,
|
||||||
|
inbox_id: @inbox.id,
|
||||||
|
contact_id: contact.id
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
def message_params
|
||||||
|
params = {
|
||||||
|
account_id: conversation.account_id,
|
||||||
|
inbox_id: conversation.inbox_id,
|
||||||
|
message_type: message_type,
|
||||||
|
source_id: message_identifier,
|
||||||
|
content: message_content,
|
||||||
|
sender: @outgoing_echo ? nil : contact,
|
||||||
|
content_attributes: {
|
||||||
|
in_reply_to_external_id: message_reply_attributes
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
params[:content_attributes][:is_unsupported] = true if message_is_unsupported?
|
||||||
|
params
|
||||||
|
end
|
||||||
|
|
||||||
|
def already_sent_from_chatwoot?
|
||||||
|
cw_message = conversation.messages.where(
|
||||||
|
source_id: @messaging[:message][:mid]
|
||||||
|
).first
|
||||||
|
|
||||||
|
cw_message.present?
|
||||||
|
end
|
||||||
|
|
||||||
|
def all_unsupported_files?
|
||||||
|
return if attachments.empty?
|
||||||
|
|
||||||
|
attachments_type = attachments.pluck(:type).uniq.first
|
||||||
|
unsupported_file_type?(attachments_type)
|
||||||
|
end
|
||||||
|
|
||||||
|
### Sample response
|
||||||
|
# {
|
||||||
|
# "object": "instagram",
|
||||||
|
# "entry": [
|
||||||
|
# {
|
||||||
|
# "id": "<IGID>",// ig id of the business
|
||||||
|
# "time": 1569262486134,
|
||||||
|
# "messaging": [
|
||||||
|
# {
|
||||||
|
# "sender": {
|
||||||
|
# "id": "<IGSID>"
|
||||||
|
# },
|
||||||
|
# "recipient": {
|
||||||
|
# "id": "<IGID>"
|
||||||
|
# },
|
||||||
|
# "timestamp": 1569262485349,
|
||||||
|
# "message": {
|
||||||
|
# "mid": "<MESSAGE_ID>",
|
||||||
|
# "text": "<MESSAGE_CONTENT>"
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
# ]
|
||||||
|
# }
|
||||||
|
# ],
|
||||||
|
# }
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
class Messages::Instagram::Messenger::MessageBuilder < Messages::Instagram::BaseMessageBuilder
|
|
||||||
def initialize(messaging, inbox, outgoing_echo: false)
|
|
||||||
super(messaging, inbox, outgoing_echo: outgoing_echo)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def get_story_object_from_source_id(source_id)
|
|
||||||
k = Koala::Facebook::API.new(@inbox.channel.page_access_token) if @inbox.facebook?
|
|
||||||
k.get_object(source_id, fields: %w[story from]) || {}
|
|
||||||
rescue Koala::Facebook::AuthenticationError
|
|
||||||
@inbox.channel.authorization_error!
|
|
||||||
raise
|
|
||||||
rescue Koala::Facebook::ClientError => e
|
|
||||||
# The exception occurs when we are trying fetch the deleted story or blocked story.
|
|
||||||
@message.attachments.destroy_all
|
|
||||||
@message.update(content: I18n.t('conversations.messages.instagram_deleted_story_content'))
|
|
||||||
Rails.logger.error e
|
|
||||||
{}
|
|
||||||
rescue StandardError => e
|
|
||||||
ChatwootExceptionTracker.new(e, account: @inbox.account).capture_exception
|
|
||||||
{}
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_conversation_scope
|
|
||||||
Conversation.where(conversation_params)
|
|
||||||
.where("additional_attributes ->> 'type' = 'instagram_direct_message'")
|
|
||||||
end
|
|
||||||
|
|
||||||
def additional_conversation_attributes
|
|
||||||
{ type: 'instagram_direct_message' }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -68,8 +68,20 @@ class Messages::Messenger::MessageBuilder
|
|||||||
message.save!
|
message.save!
|
||||||
end
|
end
|
||||||
|
|
||||||
# This is a placeholder method to be overridden by child classes
|
def get_story_object_from_source_id(source_id)
|
||||||
def get_story_object_from_source_id(_source_id)
|
k = Koala::Facebook::API.new(@inbox.channel.page_access_token) if @inbox.facebook?
|
||||||
|
k.get_object(source_id, fields: %w[story from]) || {}
|
||||||
|
rescue Koala::Facebook::AuthenticationError
|
||||||
|
@inbox.channel.authorization_error!
|
||||||
|
raise
|
||||||
|
rescue Koala::Facebook::ClientError => e
|
||||||
|
# The exception occurs when we are trying fetch the deleted story or blocked story.
|
||||||
|
@message.attachments.destroy_all
|
||||||
|
@message.update(content: I18n.t('conversations.messages.instagram_deleted_story_content'))
|
||||||
|
Rails.logger.error e
|
||||||
|
{}
|
||||||
|
rescue StandardError => e
|
||||||
|
ChatwootExceptionTracker.new(e, account: @inbox.account).capture_exception
|
||||||
{}
|
{}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ class Api::V1::Accounts::AgentBotsController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def permitted_params
|
def permitted_params
|
||||||
params.permit(:name, :description, :outgoing_url, :avatar, :avatar_url, :bot_type, bot_config: {})
|
params.permit(:name, :description, :outgoing_url, :avatar, :avatar_url, :bot_type, bot_config: [:csml_content])
|
||||||
end
|
end
|
||||||
|
|
||||||
def process_avatar_from_url
|
def process_avatar_from_url
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ class Api::V1::Accounts::AgentsController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def allowed_agent_params
|
def allowed_agent_params
|
||||||
[:name, :email, :role, :availability, :auto_offline]
|
[:name, :email, :name, :role, :availability, :auto_offline]
|
||||||
end
|
end
|
||||||
|
|
||||||
def agent_params
|
def agent_params
|
||||||
|
|||||||
@@ -1,6 +1,3 @@
|
|||||||
# TODO : Move this to inboxes controller and deprecate this controller
|
|
||||||
# No need to retain this controller as we could handle everything centrally in inboxes controller
|
|
||||||
|
|
||||||
class Api::V1::Accounts::Channels::TwilioChannelsController < Api::V1::Accounts::BaseController
|
class Api::V1::Accounts::Channels::TwilioChannelsController < Api::V1::Accounts::BaseController
|
||||||
before_action :authorize_request
|
before_action :authorize_request
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,10 @@ class Api::V1::Accounts::Contacts::ConversationsController < Api::V1::Accounts::
|
|||||||
Current.account
|
Current.account
|
||||||
).perform
|
).perform
|
||||||
|
|
||||||
|
# Only allow conversations from inboxes the user has access to
|
||||||
|
inbox_ids = Current.user.assigned_inboxes.pluck(:id)
|
||||||
|
conversations = conversations.where(inbox_id: inbox_ids)
|
||||||
|
|
||||||
@conversations = conversations.order(last_activity_at: :desc).limit(20)
|
@conversations = conversations.order(last_activity_at: :desc).limit(20)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -163,16 +163,9 @@ class Api::V1::Accounts::ContactsController < Api::V1::Accounts::BaseController
|
|||||||
@contact.custom_attributes
|
@contact.custom_attributes
|
||||||
end
|
end
|
||||||
|
|
||||||
def contact_additional_attributes
|
|
||||||
return @contact.additional_attributes.merge(permitted_params[:additional_attributes]) if permitted_params[:additional_attributes]
|
|
||||||
|
|
||||||
@contact.additional_attributes
|
|
||||||
end
|
|
||||||
|
|
||||||
def contact_update_params
|
def contact_update_params
|
||||||
permitted_params.except(:custom_attributes, :avatar_url)
|
# we want the merged custom attributes not the original one
|
||||||
.merge({ custom_attributes: contact_custom_attributes })
|
permitted_params.except(:custom_attributes, :avatar_url).merge({ custom_attributes: contact_custom_attributes })
|
||||||
.merge({ additional_attributes: contact_additional_attributes })
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_include_contact_inboxes
|
def set_include_contact_inboxes
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::Conversations::BaseController
|
class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::Conversations::BaseController
|
||||||
before_action :ensure_api_inbox, only: :update
|
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@messages = message_finder.perform
|
@messages = message_finder.perform
|
||||||
end
|
end
|
||||||
@@ -13,11 +11,6 @@ class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::
|
|||||||
render_could_not_create_error(e.message)
|
render_could_not_create_error(e.message)
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
|
||||||
Messages::StatusUpdateService.new(message, permitted_params[:status], permitted_params[:external_error]).perform
|
|
||||||
@message = message
|
|
||||||
end
|
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
ActiveRecord::Base.transaction do
|
ActiveRecord::Base.transaction do
|
||||||
message.update!(content: I18n.t('conversations.messages.deleted'), content_type: :text, content_attributes: { deleted: true })
|
message.update!(content: I18n.t('conversations.messages.deleted'), content_type: :text, content_attributes: { deleted: true })
|
||||||
@@ -28,9 +21,7 @@ class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::
|
|||||||
def retry
|
def retry
|
||||||
return if message.blank?
|
return if message.blank?
|
||||||
|
|
||||||
service = Messages::StatusUpdateService.new(message, 'sent')
|
message.update!(status: :sent, content_attributes: {})
|
||||||
service.perform
|
|
||||||
message.update!(content_attributes: {})
|
|
||||||
::SendReplyJob.perform_later(message.id)
|
::SendReplyJob.perform_later(message.id)
|
||||||
rescue StandardError => e
|
rescue StandardError => e
|
||||||
render_could_not_create_error(e.message)
|
render_could_not_create_error(e.message)
|
||||||
@@ -65,16 +56,10 @@ class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::
|
|||||||
end
|
end
|
||||||
|
|
||||||
def permitted_params
|
def permitted_params
|
||||||
params.permit(:id, :target_language, :status, :external_error)
|
params.permit(:id, :target_language)
|
||||||
end
|
end
|
||||||
|
|
||||||
def already_translated_content_available?
|
def already_translated_content_available?
|
||||||
message.translations.present? && message.translations[permitted_params[:target_language]].present?
|
message.translations.present? && message.translations[permitted_params[:target_language]].present?
|
||||||
end
|
end
|
||||||
|
|
||||||
# API inbox check
|
|
||||||
def ensure_api_inbox
|
|
||||||
# Only API inboxes can update messages
|
|
||||||
render json: { error: 'Message status update is only allowed for API inboxes' }, status: :forbidden unless @conversation.inbox.api?
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
class Api::V1::Accounts::CustomFiltersController < Api::V1::Accounts::BaseController
|
class Api::V1::Accounts::CustomFiltersController < Api::V1::Accounts::BaseController
|
||||||
before_action :check_authorization
|
before_action :check_authorization
|
||||||
before_action :fetch_custom_filters, only: [:index]
|
before_action :fetch_custom_filters, except: [:create]
|
||||||
before_action :fetch_custom_filter, only: [:show, :update, :destroy]
|
before_action :fetch_custom_filter, only: [:show, :update, :destroy]
|
||||||
DEFAULT_FILTER_TYPE = 'conversation'.freeze
|
DEFAULT_FILTER_TYPE = 'conversation'.freeze
|
||||||
|
|
||||||
@@ -9,8 +9,8 @@ class Api::V1::Accounts::CustomFiltersController < Api::V1::Accounts::BaseContro
|
|||||||
def show; end
|
def show; end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@custom_filter = Current.account.custom_filters.create!(
|
@custom_filter = current_user.custom_filters.create!(
|
||||||
permitted_payload.merge(user: Current.user)
|
permitted_payload.merge(account_id: Current.account.id)
|
||||||
)
|
)
|
||||||
render json: { error: @custom_filter.errors.messages }, status: :unprocessable_entity and return unless @custom_filter.valid?
|
render json: { error: @custom_filter.errors.messages }, status: :unprocessable_entity and return unless @custom_filter.valid?
|
||||||
end
|
end
|
||||||
@@ -27,16 +27,14 @@ class Api::V1::Accounts::CustomFiltersController < Api::V1::Accounts::BaseContro
|
|||||||
private
|
private
|
||||||
|
|
||||||
def fetch_custom_filters
|
def fetch_custom_filters
|
||||||
@custom_filters = Current.account.custom_filters.where(
|
@custom_filters = current_user.custom_filters.where(
|
||||||
user: Current.user,
|
account_id: Current.account.id,
|
||||||
filter_type: permitted_params[:filter_type] || DEFAULT_FILTER_TYPE
|
filter_type: permitted_params[:filter_type] || DEFAULT_FILTER_TYPE
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_custom_filter
|
def fetch_custom_filter
|
||||||
@custom_filter = Current.account.custom_filters.where(
|
@custom_filter = @custom_filters.find(permitted_params[:id])
|
||||||
user: Current.user
|
|
||||||
).find(permitted_params[:id])
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def permitted_payload
|
def permitted_payload
|
||||||
|
|||||||
@@ -42,9 +42,7 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
inbox_params = permitted_params.except(:channel, :csat_config)
|
@inbox.update!(permitted_params.except(:channel))
|
||||||
inbox_params[:csat_config] = format_csat_config(permitted_params[:csat_config]) if permitted_params[:csat_config].present?
|
|
||||||
@inbox.update!(inbox_params)
|
|
||||||
update_inbox_working_hours
|
update_inbox_working_hours
|
||||||
update_channel if channel_update_required?
|
update_channel if channel_update_required?
|
||||||
end
|
end
|
||||||
@@ -123,22 +121,10 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
@inbox.channel.save!
|
@inbox.channel.save!
|
||||||
end
|
end
|
||||||
|
|
||||||
def format_csat_config(config)
|
|
||||||
{
|
|
||||||
display_type: config['display_type'] || 'emoji',
|
|
||||||
message: config['message'] || '',
|
|
||||||
survey_rules: {
|
|
||||||
operator: config.dig('survey_rules', 'operator') || 'contains',
|
|
||||||
values: config.dig('survey_rules', 'values') || []
|
|
||||||
}
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def inbox_attributes
|
def inbox_attributes
|
||||||
[:name, :avatar, :greeting_enabled, :greeting_message, :enable_email_collect, :csat_survey_enabled,
|
[:name, :avatar, :greeting_enabled, :greeting_message, :enable_email_collect, :csat_survey_enabled,
|
||||||
:enable_auto_assignment, :working_hours_enabled, :out_of_office_message, :timezone, :allow_messages_after_resolved,
|
:enable_auto_assignment, :working_hours_enabled, :out_of_office_message, :timezone, :allow_messages_after_resolved,
|
||||||
:lock_to_single_conversation, :portal_id, :sender_name_type, :business_name,
|
:lock_to_single_conversation, :portal_id, :sender_name_type, :business_name]
|
||||||
{ csat_config: [:display_type, :message, { survey_rules: [:operator, { values: [] }] }] }]
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def permitted_params(channel_attributes = [])
|
def permitted_params(channel_attributes = [])
|
||||||
|
|||||||
@@ -94,8 +94,7 @@ class Api::V1::Accounts::Integrations::LinearController < Api::V1::Accounts::Bas
|
|||||||
end
|
end
|
||||||
|
|
||||||
def permitted_params
|
def permitted_params
|
||||||
params.permit(:team_id, :project_id, :conversation_id, :issue_id, :link_id, :title, :description, :assignee_id, :priority, :state_id,
|
params.permit(:team_id, :project_id, :conversation_id, :issue_id, :link_id, :title, :description, :assignee_id, :priority, label_ids: [])
|
||||||
label_ids: [])
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_hook
|
def fetch_hook
|
||||||
|
|||||||
@@ -44,9 +44,8 @@ class Api::V1::AccountsController < Api::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
@account.assign_attributes(account_params.slice(:name, :locale, :domain, :support_email))
|
@account.assign_attributes(account_params.slice(:name, :locale, :domain, :support_email, :auto_resolve_duration))
|
||||||
@account.custom_attributes.merge!(custom_attributes_params)
|
@account.custom_attributes.merge!(custom_attributes_params)
|
||||||
@account.settings.merge!(settings_params)
|
|
||||||
@account.custom_attributes['onboarding_step'] = 'invite_team' if @account.custom_attributes['onboarding_step'] == 'account_update'
|
@account.custom_attributes['onboarding_step'] = 'invite_team' if @account.custom_attributes['onboarding_step'] == 'account_update'
|
||||||
@account.save!
|
@account.save!
|
||||||
end
|
end
|
||||||
@@ -84,17 +83,13 @@ class Api::V1::AccountsController < Api::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def account_params
|
def account_params
|
||||||
params.permit(:account_name, :email, :name, :password, :locale, :domain, :support_email, :user_full_name)
|
params.permit(:account_name, :email, :name, :password, :locale, :domain, :support_email, :auto_resolve_duration, :user_full_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
def custom_attributes_params
|
def custom_attributes_params
|
||||||
params.permit(:industry, :company_size, :timezone)
|
params.permit(:industry, :company_size, :timezone)
|
||||||
end
|
end
|
||||||
|
|
||||||
def settings_params
|
|
||||||
params.permit(:auto_resolve_after, :auto_resolve_message, :auto_resolve_ignore_waiting)
|
|
||||||
end
|
|
||||||
|
|
||||||
def check_signup_enabled
|
def check_signup_enabled
|
||||||
raise ActionController::RoutingError, 'Not Found' if GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false') == 'false'
|
raise ActionController::RoutingError, 'Not Found' if GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false') == 'false'
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -2,15 +2,10 @@ class Api::V1::Widget::CampaignsController < Api::V1::Widget::BaseController
|
|||||||
skip_before_action :set_contact
|
skip_before_action :set_contact
|
||||||
|
|
||||||
def index
|
def index
|
||||||
account = @web_widget.inbox.account
|
@campaigns = @web_widget
|
||||||
@campaigns = if account.feature_enabled?('campaigns')
|
.inbox
|
||||||
@web_widget
|
.campaigns
|
||||||
.inbox
|
.where(enabled: true, account_id: @web_widget.inbox.account_id)
|
||||||
.campaigns
|
.includes(:sender)
|
||||||
.where(enabled: true, account_id: account.id)
|
|
||||||
.includes(:sender)
|
|
||||||
else
|
|
||||||
[]
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ class Api::V2::AccountsController < Api::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def account_params
|
def account_params
|
||||||
params.permit(:account_name, :email, :name, :password, :locale, :domain, :support_email, :user_full_name)
|
params.permit(:account_name, :email, :name, :password, :locale, :domain, :support_email, :auto_resolve_duration, :user_full_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
def check_signup_enabled
|
def check_signup_enabled
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
module AccessTokenAuthHelper
|
module AccessTokenAuthHelper
|
||||||
BOT_ACCESSIBLE_ENDPOINTS = {
|
BOT_ACCESSIBLE_ENDPOINTS = {
|
||||||
'api/v1/accounts/conversations' => %w[toggle_status toggle_priority create update custom_attributes],
|
'api/v1/accounts/conversations' => %w[toggle_status toggle_priority create update],
|
||||||
'api/v1/accounts/conversations/messages' => ['create'],
|
'api/v1/accounts/conversations/messages' => ['create'],
|
||||||
'api/v1/accounts/conversations/assignments' => ['create']
|
'api/v1/accounts/conversations/assignments' => ['create']
|
||||||
}.freeze
|
}.freeze
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
module InstagramConcern
|
module InstagramConcern
|
||||||
extend ActiveSupport::Concern
|
extend ActiveSupport::Concern
|
||||||
|
include HTTParty
|
||||||
|
|
||||||
def instagram_client
|
def instagram_client
|
||||||
::OAuth2::Client.new(
|
::OAuth2::Client.new(
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ class DashboardController < ActionController::Base
|
|||||||
'LOGOUT_REDIRECT_LINK',
|
'LOGOUT_REDIRECT_LINK',
|
||||||
'DISABLE_USER_PROFILE_UPDATE',
|
'DISABLE_USER_PROFILE_UPDATE',
|
||||||
'DEPLOYMENT_ENV',
|
'DEPLOYMENT_ENV',
|
||||||
'INSTALLATION_PRICING_PLAN'
|
'CSML_EDITOR_HOST', 'INSTALLATION_PRICING_PLAN'
|
||||||
).merge(app_config)
|
).merge(app_config)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -65,7 +65,6 @@ class DashboardController < ActionController::Base
|
|||||||
VAPID_PUBLIC_KEY: VapidService.public_key,
|
VAPID_PUBLIC_KEY: VapidService.public_key,
|
||||||
ENABLE_ACCOUNT_SIGNUP: GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false'),
|
ENABLE_ACCOUNT_SIGNUP: GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false'),
|
||||||
FB_APP_ID: GlobalConfigService.load('FB_APP_ID', ''),
|
FB_APP_ID: GlobalConfigService.load('FB_APP_ID', ''),
|
||||||
INSTAGRAM_APP_ID: GlobalConfigService.load('INSTAGRAM_APP_ID', ''),
|
|
||||||
FACEBOOK_API_VERSION: GlobalConfigService.load('FACEBOOK_API_VERSION', 'v17.0'),
|
FACEBOOK_API_VERSION: GlobalConfigService.load('FACEBOOK_API_VERSION', 'v17.0'),
|
||||||
IS_ENTERPRISE: ChatwootApp.enterprise?,
|
IS_ENTERPRISE: ChatwootApp.enterprise?,
|
||||||
AZURE_APP_ID: GlobalConfigService.load('AZURE_APP_ID', ''),
|
AZURE_APP_ID: GlobalConfigService.load('AZURE_APP_ID', ''),
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ class DeviseOverrides::OmniauthCallbacksController < DeviseTokenAuth::OmniauthCa
|
|||||||
|
|
||||||
def sign_up_user
|
def sign_up_user
|
||||||
return redirect_to login_page_url(error: 'no-account-found') unless account_signup_allowed?
|
return redirect_to login_page_url(error: 'no-account-found') unless account_signup_allowed?
|
||||||
return redirect_to login_page_url(error: 'business-account-only') unless validate_signup_email_is_business_domain?
|
return redirect_to login_page_url(error: 'business-account-only') unless validate_business_account?
|
||||||
|
|
||||||
create_account_for_user
|
create_account_for_user
|
||||||
token = @resource.send(:set_reset_password_token)
|
token = @resource.send(:set_reset_password_token)
|
||||||
@@ -53,11 +53,9 @@ class DeviseOverrides::OmniauthCallbacksController < DeviseTokenAuth::OmniauthCa
|
|||||||
).first
|
).first
|
||||||
end
|
end
|
||||||
|
|
||||||
def validate_signup_email_is_business_domain?
|
def validate_business_account?
|
||||||
# return true if the user is a business account, false if it is a blocked domain account
|
# return true if the user is a business account, false if it is a gmail account
|
||||||
Account::SignUpEmailValidationService.new(auth_hash['info']['email']).perform
|
auth_hash['info']['email'].exclude?('@gmail.com')
|
||||||
rescue CustomExceptions::Account::InvalidEmail
|
|
||||||
false
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def create_account_for_user
|
def create_account_for_user
|
||||||
|
|||||||
@@ -66,5 +66,3 @@ class SuperAdmin::AccountsController < SuperAdmin::ApplicationController
|
|||||||
# rubocop:enable Rails/I18nLocaleTexts
|
# rubocop:enable Rails/I18nLocaleTexts
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
SuperAdmin::AccountsController.prepend_mod_with('SuperAdmin::AccountsController')
|
|
||||||
|
|||||||
@@ -24,10 +24,9 @@ class Twilio::CallbackController < ApplicationController
|
|||||||
:Body,
|
:Body,
|
||||||
:ToCountry,
|
:ToCountry,
|
||||||
:FromState,
|
:FromState,
|
||||||
*Array.new(10) { |i| :"MediaUrl#{i}" },
|
:MediaUrl0,
|
||||||
*Array.new(10) { |i| :"MediaContentType#{i}" },
|
:MediaContentType0,
|
||||||
:MessagingServiceSid,
|
:MessagingServiceSid
|
||||||
:NumMedia
|
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -9,17 +9,10 @@ class AccountDashboard < Administrate::BaseDashboard
|
|||||||
# on pages throughout the dashboard.
|
# on pages throughout the dashboard.
|
||||||
|
|
||||||
enterprise_attribute_types = if ChatwootApp.enterprise?
|
enterprise_attribute_types = if ChatwootApp.enterprise?
|
||||||
attributes = {
|
{
|
||||||
limits: AccountLimitsField
|
limits: Enterprise::AccountLimitsField,
|
||||||
|
all_features: Enterprise::AccountFeaturesField
|
||||||
}
|
}
|
||||||
|
|
||||||
# Only show manually managed features in Chatwoot Cloud deployment
|
|
||||||
attributes[:manually_managed_features] = ManuallyManagedFeaturesField if ChatwootApp.chatwoot_cloud?
|
|
||||||
|
|
||||||
# Add all_features last so it appears after manually_managed_features
|
|
||||||
attributes[:all_features] = AccountFeaturesField
|
|
||||||
|
|
||||||
attributes
|
|
||||||
else
|
else
|
||||||
{}
|
{}
|
||||||
end
|
end
|
||||||
@@ -53,14 +46,7 @@ class AccountDashboard < Administrate::BaseDashboard
|
|||||||
|
|
||||||
# SHOW_PAGE_ATTRIBUTES
|
# SHOW_PAGE_ATTRIBUTES
|
||||||
# an array of attributes that will be displayed on the model's show page.
|
# an array of attributes that will be displayed on the model's show page.
|
||||||
enterprise_show_page_attributes = if ChatwootApp.enterprise?
|
enterprise_show_page_attributes = ChatwootApp.enterprise? ? %i[custom_attributes limits all_features] : []
|
||||||
attrs = %i[custom_attributes limits]
|
|
||||||
attrs << :manually_managed_features if ChatwootApp.chatwoot_cloud?
|
|
||||||
attrs << :all_features
|
|
||||||
attrs
|
|
||||||
else
|
|
||||||
[]
|
|
||||||
end
|
|
||||||
SHOW_PAGE_ATTRIBUTES = (%i[
|
SHOW_PAGE_ATTRIBUTES = (%i[
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
@@ -75,14 +61,7 @@ class AccountDashboard < Administrate::BaseDashboard
|
|||||||
# FORM_ATTRIBUTES
|
# FORM_ATTRIBUTES
|
||||||
# an array of attributes that will be displayed
|
# an array of attributes that will be displayed
|
||||||
# on the model's form (`new` and `edit`) pages.
|
# on the model's form (`new` and `edit`) pages.
|
||||||
enterprise_form_attributes = if ChatwootApp.enterprise?
|
enterprise_form_attributes = ChatwootApp.enterprise? ? %i[limits all_features] : []
|
||||||
attrs = %i[limits]
|
|
||||||
attrs << :manually_managed_features if ChatwootApp.chatwoot_cloud?
|
|
||||||
attrs << :all_features
|
|
||||||
attrs
|
|
||||||
else
|
|
||||||
[]
|
|
||||||
end
|
|
||||||
FORM_ATTRIBUTES = (%i[
|
FORM_ATTRIBUTES = (%i[
|
||||||
name
|
name
|
||||||
locale
|
locale
|
||||||
@@ -117,11 +96,6 @@ class AccountDashboard < Administrate::BaseDashboard
|
|||||||
# to prevent an error from being raised (wrong number of arguments)
|
# to prevent an error from being raised (wrong number of arguments)
|
||||||
# Reference: https://github.com/thoughtbot/administrate/pull/2356/files#diff-4e220b661b88f9a19ac527c50d6f1577ef6ab7b0bed2bfdf048e22e6bfa74a05R204
|
# Reference: https://github.com/thoughtbot/administrate/pull/2356/files#diff-4e220b661b88f9a19ac527c50d6f1577ef6ab7b0bed2bfdf048e22e6bfa74a05R204
|
||||||
def permitted_attributes(action)
|
def permitted_attributes(action)
|
||||||
attrs = super + [limits: {}]
|
super + [limits: {}]
|
||||||
|
|
||||||
# Add manually_managed_features to permitted attributes only for Chatwoot Cloud
|
|
||||||
attrs << { manually_managed_features: [] } if ChatwootApp.chatwoot_cloud?
|
|
||||||
|
|
||||||
attrs
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
require 'administrate/field/base'
|
||||||
|
|
||||||
|
class Enterprise::AccountFeaturesField < Administrate::Field::Base
|
||||||
|
def to_s
|
||||||
|
data
|
||||||
|
end
|
||||||
|
end
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
require 'administrate/field/base'
|
require 'administrate/field/base'
|
||||||
|
|
||||||
class AccountLimitsField < Administrate::Field::Base
|
class Enterprise::AccountLimitsField < Administrate::Field::Base
|
||||||
def to_s
|
def to_s
|
||||||
data.present? ? data.to_json : { agents: nil, inboxes: nil, captain_responses: nil, captain_documents: nil }.to_json
|
data.present? ? data.to_json : { agents: nil, inboxes: nil, captain_responses: nil, captain_documents: nil }.to_json
|
||||||
end
|
end
|
||||||
@@ -88,10 +88,7 @@ class ConversationFinder
|
|||||||
|
|
||||||
def find_conversation_by_inbox
|
def find_conversation_by_inbox
|
||||||
@conversations = current_account.conversations
|
@conversations = current_account.conversations
|
||||||
|
@conversations = @conversations.where(inbox_id: @inbox_ids) unless params[:inbox_id].blank? && @is_admin
|
||||||
return unless params[:inbox_id]
|
|
||||||
|
|
||||||
@conversations = @conversations.where(inbox_id: @inbox_ids)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def find_all_conversations
|
def find_all_conversations
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ module SuperAdmin::AccountFeaturesHelper
|
|||||||
end
|
end
|
||||||
|
|
||||||
def self.filter_internal_features(features)
|
def self.filter_internal_features(features)
|
||||||
return features if ChatwootApp.chatwoot_cloud?
|
return features if GlobalConfig.get_value('DEPLOYMENT_ENV') == 'cloud'
|
||||||
|
|
||||||
internal_features = account_features.select { |f| f['chatwoot_internal'] }.pluck('name')
|
internal_features = account_features.select { |f| f['chatwoot_internal'] }.pluck('name')
|
||||||
features.except(*internal_features)
|
features.except(*internal_features)
|
||||||
|
|||||||
@@ -1,26 +1,9 @@
|
|||||||
/* global axios */
|
|
||||||
import ApiClient from './ApiClient';
|
import ApiClient from './ApiClient';
|
||||||
|
|
||||||
class AgentBotsAPI extends ApiClient {
|
class AgentBotsAPI extends ApiClient {
|
||||||
constructor() {
|
constructor() {
|
||||||
super('agent_bots', { accountScoped: true });
|
super('agent_bots', { accountScoped: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
create(data) {
|
|
||||||
return axios.post(this.url, data, {
|
|
||||||
headers: { 'Content-Type': 'multipart/form-data' },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
update(id, data) {
|
|
||||||
return axios.patch(`${this.url}/${id}`, data, {
|
|
||||||
headers: { 'Content-Type': 'multipart/form-data' },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
deleteAgentBotAvatar(botId) {
|
|
||||||
return axios.delete(`${this.url}/${botId}/avatar`);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default new AgentBotsAPI();
|
export default new AgentBotsAPI();
|
||||||
|
|||||||
@@ -14,13 +14,6 @@ class CaptainAssistant extends ApiClient {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
playground({ assistantId, messageContent, messageHistory }) {
|
|
||||||
return axios.post(`${this.url}/${assistantId}/playground`, {
|
|
||||||
message_content: messageContent,
|
|
||||||
message_history: messageHistory,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default new CaptainAssistant();
|
export default new CaptainAssistant();
|
||||||
|
|||||||
@@ -29,19 +29,6 @@
|
|||||||
--iris-11: 87 83 198;
|
--iris-11: 87 83 198;
|
||||||
--iris-12: 39 41 98;
|
--iris-12: 39 41 98;
|
||||||
|
|
||||||
--blue-1: 251 253 255;
|
|
||||||
--blue-2: 245 249 255;
|
|
||||||
--blue-3: 233 243 255;
|
|
||||||
--blue-4: 218 236 255;
|
|
||||||
--blue-5: 201 226 255;
|
|
||||||
--blue-6: 181 213 255;
|
|
||||||
--blue-7: 155 195 252;
|
|
||||||
--blue-8: 117 171 247;
|
|
||||||
--blue-9: 39 129 246;
|
|
||||||
--blue-10: 16 115 233;
|
|
||||||
--blue-11: 8 109 224;
|
|
||||||
--blue-12: 11 50 101;
|
|
||||||
|
|
||||||
--ruby-1: 255 252 253;
|
--ruby-1: 255 252 253;
|
||||||
--ruby-2: 255 247 248;
|
--ruby-2: 255 247 248;
|
||||||
--ruby-3: 254 234 237;
|
--ruby-3: 254 234 237;
|
||||||
@@ -144,19 +131,6 @@
|
|||||||
--iris-11: 158 177 255;
|
--iris-11: 158 177 255;
|
||||||
--iris-12: 224 223 254;
|
--iris-12: 224 223 254;
|
||||||
|
|
||||||
--blue-1: 10 17 28;
|
|
||||||
--blue-2: 15 24 38;
|
|
||||||
--blue-3: 15 39 72;
|
|
||||||
--blue-4: 10 49 99;
|
|
||||||
--blue-5: 18 61 117;
|
|
||||||
--blue-6: 29 84 134;
|
|
||||||
--blue-7: 40 89 156;
|
|
||||||
--blue-8: 48 106 186;
|
|
||||||
--blue-9: 39 129 246;
|
|
||||||
--blue-10: 21 116 231;
|
|
||||||
--blue-11: 126 182 255;
|
|
||||||
--blue-12: 205 227 255;
|
|
||||||
|
|
||||||
--ruby-1: 25 17 19;
|
--ruby-1: 25 17 19;
|
||||||
--ruby-2: 30 21 23;
|
--ruby-2: 30 21 23;
|
||||||
--ruby-3: 58 20 30;
|
--ruby-3: 58 20 30;
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { ref, watch } from 'vue';
|
|
||||||
|
|
||||||
const props = defineProps({
|
|
||||||
title: { type: String, required: true },
|
|
||||||
isOpen: { type: Boolean, default: false },
|
|
||||||
});
|
|
||||||
|
|
||||||
const isExpanded = ref(props.isOpen);
|
|
||||||
|
|
||||||
const toggleAccordion = () => {
|
|
||||||
isExpanded.value = !isExpanded.value;
|
|
||||||
};
|
|
||||||
|
|
||||||
watch(
|
|
||||||
() => props.isOpen,
|
|
||||||
newValue => {
|
|
||||||
isExpanded.value = newValue;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="border rounded-lg border-n-slate-4">
|
|
||||||
<button
|
|
||||||
class="flex items-center justify-between w-full p-4 text-left"
|
|
||||||
@click="toggleAccordion"
|
|
||||||
>
|
|
||||||
<span class="text-sm font-medium text-n-slate-12">{{ title }}</span>
|
|
||||||
<span
|
|
||||||
class="w-5 h-5 transition-transform duration-200 i-lucide-chevron-down"
|
|
||||||
:class="{ 'rotate-180': isExpanded }"
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
<div v-if="isExpanded" class="p-4 pt-0">
|
|
||||||
<slot />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
-65
@@ -1,65 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { ref } from 'vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import { useToggle } from '@vueuse/core';
|
|
||||||
|
|
||||||
import Button from 'dashboard/components-next/button/Button.vue';
|
|
||||||
import ConfirmContactDeleteDialog from 'dashboard/components-next/Contacts/ContactsForm/ConfirmContactDeleteDialog.vue';
|
|
||||||
|
|
||||||
defineProps({
|
|
||||||
selectedContact: {
|
|
||||||
type: Object,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
|
|
||||||
const [showDeleteSection, toggleDeleteSection] = useToggle();
|
|
||||||
const confirmDeleteContactDialogRef = ref(null);
|
|
||||||
|
|
||||||
const openConfirmDeleteContactDialog = () => {
|
|
||||||
confirmDeleteContactDialogRef.value?.dialogRef.open();
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="flex flex-col items-start border-t border-n-strong px-6 py-5">
|
|
||||||
<Button
|
|
||||||
:label="t('CONTACTS_LAYOUT.DETAILS.DELETE_CONTACT')"
|
|
||||||
sm
|
|
||||||
link
|
|
||||||
slate
|
|
||||||
class="hover:!no-underline text-n-slate-12"
|
|
||||||
icon="i-lucide-chevron-down"
|
|
||||||
trailing-icon
|
|
||||||
@click="toggleDeleteSection()"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div
|
|
||||||
class="transition-all duration-300 ease-in-out grid w-full overflow-hidden"
|
|
||||||
:class="
|
|
||||||
showDeleteSection
|
|
||||||
? 'grid-rows-[1fr] opacity-100 mt-2'
|
|
||||||
: 'grid-rows-[0fr] opacity-0 mt-0'
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<div class="overflow-hidden min-h-0">
|
|
||||||
<span class="inline-flex text-n-slate-11 text-sm items-center gap-1">
|
|
||||||
{{ t('CONTACTS_LAYOUT.CARD.DELETE_CONTACT.MESSAGE') }}
|
|
||||||
<Button
|
|
||||||
:label="t('CONTACTS_LAYOUT.CARD.DELETE_CONTACT.BUTTON')"
|
|
||||||
sm
|
|
||||||
ruby
|
|
||||||
link
|
|
||||||
@click="openConfirmDeleteContactDialog()"
|
|
||||||
/>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ConfirmContactDeleteDialog
|
|
||||||
ref="confirmDeleteContactDialogRef"
|
|
||||||
:selected-contact="selectedContact"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
@@ -7,7 +7,6 @@ import ContactsForm from 'dashboard/components-next/Contacts/ContactsForm/Contac
|
|||||||
import Button from 'dashboard/components-next/button/Button.vue';
|
import Button from 'dashboard/components-next/button/Button.vue';
|
||||||
import Avatar from 'dashboard/components-next/avatar/Avatar.vue';
|
import Avatar from 'dashboard/components-next/avatar/Avatar.vue';
|
||||||
import Flag from 'dashboard/components-next/flag/Flag.vue';
|
import Flag from 'dashboard/components-next/flag/Flag.vue';
|
||||||
import ContactDeleteSection from 'dashboard/components-next/Contacts/ContactsCard/ContactDeleteSection.vue';
|
|
||||||
import countries from 'shared/constants/countries';
|
import countries from 'shared/constants/countries';
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
@@ -150,15 +149,15 @@ const onClickViewDetails = () => emit('showContact', props.id);
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<template #after>
|
<template #after>
|
||||||
<div
|
<transition
|
||||||
class="transition-all duration-500 ease-in-out grid overflow-hidden"
|
enter-active-class="overflow-hidden transition-all duration-300 ease-out"
|
||||||
:class="
|
leave-active-class="overflow-hidden transition-all duration-300 ease-in"
|
||||||
isExpanded
|
enter-from-class="overflow-hidden opacity-0 max-h-0"
|
||||||
? 'grid-rows-[1fr] opacity-100'
|
enter-to-class="opacity-100 max-h-[690px] sm:max-h-[470px] md:max-h-[410px]"
|
||||||
: 'grid-rows-[0fr] opacity-0'
|
leave-from-class="opacity-100 max-h-[690px] sm:max-h-[470px] md:max-h-[410px]"
|
||||||
"
|
leave-to-class="overflow-hidden opacity-0 max-h-0"
|
||||||
>
|
>
|
||||||
<div class="overflow-hidden">
|
<div v-show="isExpanded" class="w-full">
|
||||||
<div class="flex flex-col gap-6 p-6 border-t border-n-strong">
|
<div class="flex flex-col gap-6 p-6 border-t border-n-strong">
|
||||||
<ContactsForm
|
<ContactsForm
|
||||||
ref="contactsFormRef"
|
ref="contactsFormRef"
|
||||||
@@ -177,14 +176,8 @@ const onClickViewDetails = () => emit('showContact', props.id);
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<ContactDeleteSection
|
|
||||||
:selected-contact="{
|
|
||||||
id: props.id,
|
|
||||||
name: props.name,
|
|
||||||
}"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</transition>
|
||||||
</template>
|
</template>
|
||||||
</CardLayout>
|
</CardLayout>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
+5
-1
@@ -47,7 +47,11 @@ defineExpose({ dialogRef });
|
|||||||
ref="dialogRef"
|
ref="dialogRef"
|
||||||
type="alert"
|
type="alert"
|
||||||
:title="t('CONTACTS_LAYOUT.DETAILS.DELETE_DIALOG.TITLE')"
|
:title="t('CONTACTS_LAYOUT.DETAILS.DELETE_DIALOG.TITLE')"
|
||||||
:description="t('CONTACTS_LAYOUT.DETAILS.DELETE_DIALOG.DESCRIPTION')"
|
:description="
|
||||||
|
t('CONTACTS_LAYOUT.DETAILS.DELETE_DIALOG.DESCRIPTION', {
|
||||||
|
contactName: props.selectedContact.name,
|
||||||
|
})
|
||||||
|
"
|
||||||
:confirm-button-label="t('CONTACTS_LAYOUT.DETAILS.DELETE_DIALOG.CONFIRM')"
|
:confirm-button-label="t('CONTACTS_LAYOUT.DETAILS.DELETE_DIALOG.CONFIRM')"
|
||||||
@confirm="handleDialogConfirm"
|
@confirm="handleDialogConfirm"
|
||||||
/>
|
/>
|
||||||
|
|||||||
-1
@@ -51,7 +51,6 @@ defineExpose({ dialogRef, contactsFormRef, onSuccess });
|
|||||||
<Button
|
<Button
|
||||||
:label="t('DIALOG.BUTTONS.CANCEL')"
|
:label="t('DIALOG.BUTTONS.CANCEL')"
|
||||||
variant="link"
|
variant="link"
|
||||||
type="reset"
|
|
||||||
class="h-10 hover:!no-underline hover:text-n-brand"
|
class="h-10 hover:!no-underline hover:text-n-brand"
|
||||||
@click="closeDialog"
|
@click="closeDialog"
|
||||||
/>
|
/>
|
||||||
|
|||||||
+4
@@ -31,6 +31,10 @@ const sortMenus = [
|
|||||||
label: t('CONTACTS_LAYOUT.HEADER.ACTIONS.SORT_BY.OPTIONS.EMAIL'),
|
label: t('CONTACTS_LAYOUT.HEADER.ACTIONS.SORT_BY.OPTIONS.EMAIL'),
|
||||||
value: 'email',
|
value: 'email',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: t('CONTACTS_LAYOUT.HEADER.ACTIONS.SORT_BY.OPTIONS.PHONE_NUMBER'),
|
||||||
|
value: 'phone_number',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: t('CONTACTS_LAYOUT.HEADER.ACTIONS.SORT_BY.OPTIONS.COMPANY'),
|
label: t('CONTACTS_LAYOUT.HEADER.ACTIONS.SORT_BY.OPTIONS.COMPANY'),
|
||||||
value: 'company_name',
|
value: 'company_name',
|
||||||
|
|||||||
@@ -87,10 +87,8 @@ useKeyboardEvents(keyboardEvents);
|
|||||||
<ContactNoteItem
|
<ContactNoteItem
|
||||||
v-for="note in notes"
|
v-for="note in notes"
|
||||||
:key="note.id"
|
:key="note.id"
|
||||||
class="mx-6 py-4"
|
|
||||||
:note="note"
|
:note="note"
|
||||||
:written-by="getWrittenBy(note)"
|
:written-by="getWrittenBy(note)"
|
||||||
allow-delete
|
|
||||||
@delete="onDelete"
|
@delete="onDelete"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+10
-56
@@ -1,8 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { useTemplateRef, onMounted, ref } from 'vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { dynamicTime } from 'shared/helpers/timeHelper';
|
import { dynamicTime } from 'shared/helpers/timeHelper';
|
||||||
import { useToggle } from '@vueuse/core';
|
|
||||||
import { useMessageFormatter } from 'shared/composables/useMessageFormatter';
|
import { useMessageFormatter } from 'shared/composables/useMessageFormatter';
|
||||||
import Avatar from 'dashboard/components-next/avatar/Avatar.vue';
|
import Avatar from 'dashboard/components-next/avatar/Avatar.vue';
|
||||||
import Button from 'dashboard/components-next/button/Button.vue';
|
import Button from 'dashboard/components-next/button/Button.vue';
|
||||||
@@ -16,63 +14,39 @@ const props = defineProps({
|
|||||||
type: String,
|
type: String,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
allowDelete: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
collapsible: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['delete']);
|
const emit = defineEmits(['delete']);
|
||||||
const noteContentRef = useTemplateRef('noteContentRef');
|
|
||||||
const needsCollapse = ref(false);
|
|
||||||
const [isExpanded, toggleExpanded] = useToggle();
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const { formatMessage } = useMessageFormatter();
|
const { formatMessage } = useMessageFormatter();
|
||||||
|
|
||||||
const handleDelete = () => {
|
const handleDelete = () => {
|
||||||
emit('delete', props.note.id);
|
emit('delete', props.note.id);
|
||||||
};
|
};
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
if (props.collapsible) {
|
|
||||||
// Check if content height exceeds approximately 4 lines
|
|
||||||
// Assuming line height is ~1.625 and font size is ~14px
|
|
||||||
const threshold = 14 * 1.625 * 4; // ~84px
|
|
||||||
needsCollapse.value = noteContentRef.value?.clientHeight > threshold;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="flex flex-col gap-2 border-b border-n-strong group/note">
|
<div
|
||||||
<div class="flex items-center justify-between gap-2">
|
class="flex flex-col gap-2 py-2 mx-6 border-b border-n-strong group/note"
|
||||||
<div class="flex items-center gap-1.5 min-w-0">
|
>
|
||||||
|
<div class="flex items-center justify-between">
|
||||||
|
<div class="flex items-center gap-1.5 py-2.5 min-w-0">
|
||||||
<Avatar
|
<Avatar
|
||||||
:name="note?.user?.name || 'Bot'"
|
:name="note?.user?.name || 'Bot'"
|
||||||
:src="
|
:src="note?.user?.thumbnail || '/assets/images/chatwoot_bot.png'"
|
||||||
note?.user?.name
|
|
||||||
? note?.user?.thumbnail
|
|
||||||
: '/assets/images/chatwoot_bot.png'
|
|
||||||
"
|
|
||||||
:size="16"
|
:size="16"
|
||||||
rounded-full
|
rounded-full
|
||||||
/>
|
/>
|
||||||
<div class="min-w-0 truncate">
|
<div class="min-w-0 truncate">
|
||||||
<span class="inline-flex items-center gap-1 text-sm text-n-slate-11">
|
<span class="inline-flex items-center gap-1 text-sm text-n-slate-11">
|
||||||
<span class="font-medium text-n-slate-12">{{ writtenBy }}</span>
|
<span class="font-medium">{{ writtenBy }}</span>
|
||||||
{{ t('CONTACTS_LAYOUT.SIDEBAR.NOTES.WROTE') }}
|
{{ t('CONTACTS_LAYOUT.SIDEBAR.NOTES.WROTE') }}
|
||||||
<span class="font-medium text-n-slate-12">
|
<span class="font-medium">{{ dynamicTime(note.createdAt) }}</span>
|
||||||
{{ dynamicTime(note.createdAt) }}
|
|
||||||
</span>
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Button
|
<Button
|
||||||
v-if="allowDelete"
|
|
||||||
variant="faded"
|
variant="faded"
|
||||||
color="ruby"
|
color="ruby"
|
||||||
size="xs"
|
size="xs"
|
||||||
@@ -82,28 +56,8 @@ onMounted(() => {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<p
|
<p
|
||||||
ref="noteContentRef"
|
|
||||||
v-dompurify-html="formatMessage(note.content || '')"
|
v-dompurify-html="formatMessage(note.content || '')"
|
||||||
class="mb-0 prose-sm prose-p:text-sm prose-p:leading-relaxed prose-p:mb-1 prose-p:mt-0 prose-ul:mb-1 prose-ul:mt-0 text-n-slate-12"
|
class="mb-0 prose-sm prose-p:mb-1 prose-p:mt-0 prose-ul:mb-1 prose-ul:mt-0 text-n-slate-12"
|
||||||
:class="{
|
|
||||||
'line-clamp-4': collapsible && !isExpanded && needsCollapse,
|
|
||||||
}"
|
|
||||||
/>
|
/>
|
||||||
<p v-if="collapsible && needsCollapse">
|
|
||||||
<Button
|
|
||||||
variant="faded"
|
|
||||||
color="blue"
|
|
||||||
size="xs"
|
|
||||||
:icon="isExpanded ? 'i-lucide-chevron-up' : 'i-lucide-chevron-down'"
|
|
||||||
@click="() => toggleExpanded()"
|
|
||||||
>
|
|
||||||
<template v-if="isExpanded">
|
|
||||||
{{ t('CONTACTS_LAYOUT.SIDEBAR.NOTES.COLLAPSE') }}
|
|
||||||
</template>
|
|
||||||
<template v-else>
|
|
||||||
{{ t('CONTACTS_LAYOUT.SIDEBAR.NOTES.EXPAND') }}
|
|
||||||
</template>
|
|
||||||
</Button>
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
-1
@@ -200,7 +200,6 @@ defineExpose({ state, isSubmitDisabled });
|
|||||||
:label="state.icon"
|
:label="state.icon"
|
||||||
color="slate"
|
color="slate"
|
||||||
size="sm"
|
size="sm"
|
||||||
type="button"
|
|
||||||
:icon="!state.icon ? 'i-lucide-smile-plus' : ''"
|
:icon="!state.icon ? 'i-lucide-smile-plus' : ''"
|
||||||
class="!h-[2.4rem] !w-[2.375rem] absolute top-[1.94rem] !outline-none !rounded-[0.438rem] border-0 ltr:left-px rtl:right-px ltr:!rounded-r-none rtl:!rounded-l-none"
|
class="!h-[2.4rem] !w-[2.375rem] absolute top-[1.94rem] !outline-none !rounded-[0.438rem] border-0 ltr:left-px rtl:right-px ltr:!rounded-r-none rtl:!rounded-l-none"
|
||||||
@click="isEmojiPickerOpen = !isEmojiPickerOpen"
|
@click="isEmojiPickerOpen = !isEmojiPickerOpen"
|
||||||
|
|||||||
+6
-15
@@ -7,8 +7,8 @@ import { useStore, useStoreGetters } from 'dashboard/composables/store';
|
|||||||
import { uploadFile } from 'dashboard/helper/uploadHelper';
|
import { uploadFile } from 'dashboard/helper/uploadHelper';
|
||||||
import { checkFileSizeLimit } from 'shared/helpers/FileHelper';
|
import { checkFileSizeLimit } from 'shared/helpers/FileHelper';
|
||||||
import { useVuelidate } from '@vuelidate/core';
|
import { useVuelidate } from '@vuelidate/core';
|
||||||
import { required, minLength, helpers } from '@vuelidate/validators';
|
import { required, minLength } from '@vuelidate/validators';
|
||||||
import { shouldBeUrl, isValidSlug } from 'shared/helpers/Validators';
|
import { shouldBeUrl } from 'shared/helpers/Validators';
|
||||||
|
|
||||||
import Button from 'dashboard/components-next/button/Button.vue';
|
import Button from 'dashboard/components-next/button/Button.vue';
|
||||||
import Input from 'dashboard/components-next/input/Input.vue';
|
import Input from 'dashboard/components-next/input/Input.vue';
|
||||||
@@ -61,16 +61,7 @@ const liveChatWidgets = computed(() => {
|
|||||||
|
|
||||||
const rules = {
|
const rules = {
|
||||||
name: { required, minLength: minLength(2) },
|
name: { required, minLength: minLength(2) },
|
||||||
slug: {
|
slug: { required },
|
||||||
required: helpers.withMessage(
|
|
||||||
() => t('HELP_CENTER.CREATE_PORTAL_DIALOG.SLUG.ERROR'),
|
|
||||||
required
|
|
||||||
),
|
|
||||||
isValidSlug: helpers.withMessage(
|
|
||||||
() => t('HELP_CENTER.CREATE_PORTAL_DIALOG.SLUG.FORMAT_ERROR'),
|
|
||||||
isValidSlug
|
|
||||||
),
|
|
||||||
},
|
|
||||||
homePageLink: { shouldBeUrl },
|
homePageLink: { shouldBeUrl },
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -80,9 +71,9 @@ const nameError = computed(() =>
|
|||||||
v$.value.name.$error ? t('HELP_CENTER.CREATE_PORTAL_DIALOG.NAME.ERROR') : ''
|
v$.value.name.$error ? t('HELP_CENTER.CREATE_PORTAL_DIALOG.NAME.ERROR') : ''
|
||||||
);
|
);
|
||||||
|
|
||||||
const slugError = computed(() => {
|
const slugError = computed(() =>
|
||||||
return v$.value.slug.$errors[0]?.$message || '';
|
v$.value.slug.$error ? t('HELP_CENTER.CREATE_PORTAL_DIALOG.SLUG.ERROR') : ''
|
||||||
});
|
);
|
||||||
|
|
||||||
const homePageLinkError = computed(() =>
|
const homePageLinkError = computed(() =>
|
||||||
v$.value.homePageLink.$error
|
v$.value.homePageLink.$error
|
||||||
|
|||||||
+5
-18
@@ -6,9 +6,8 @@ import { useAlert, useTrack } from 'dashboard/composables';
|
|||||||
import { PORTALS_EVENTS } from 'dashboard/helper/AnalyticsHelper/events';
|
import { PORTALS_EVENTS } from 'dashboard/helper/AnalyticsHelper/events';
|
||||||
import { convertToCategorySlug } from 'dashboard/helper/commons.js';
|
import { convertToCategorySlug } from 'dashboard/helper/commons.js';
|
||||||
import { useVuelidate } from '@vuelidate/core';
|
import { useVuelidate } from '@vuelidate/core';
|
||||||
import { required, minLength, helpers } from '@vuelidate/validators';
|
import { required, minLength } from '@vuelidate/validators';
|
||||||
import { buildPortalURL } from 'dashboard/helper/portalHelper';
|
import { buildPortalURL } from 'dashboard/helper/portalHelper';
|
||||||
import { isValidSlug } from 'shared/helpers/Validators';
|
|
||||||
|
|
||||||
import Dialog from 'dashboard/components-next/dialog/Dialog.vue';
|
import Dialog from 'dashboard/components-next/dialog/Dialog.vue';
|
||||||
import Input from 'dashboard/components-next/input/Input.vue';
|
import Input from 'dashboard/components-next/input/Input.vue';
|
||||||
@@ -32,16 +31,7 @@ const state = reactive({
|
|||||||
|
|
||||||
const rules = {
|
const rules = {
|
||||||
name: { required, minLength: minLength(2) },
|
name: { required, minLength: minLength(2) },
|
||||||
slug: {
|
slug: { required },
|
||||||
required: helpers.withMessage(
|
|
||||||
() => t('HELP_CENTER.CREATE_PORTAL_DIALOG.SLUG.ERROR'),
|
|
||||||
required
|
|
||||||
),
|
|
||||||
isValidSlug: helpers.withMessage(
|
|
||||||
() => t('HELP_CENTER.CREATE_PORTAL_DIALOG.SLUG.FORMAT_ERROR'),
|
|
||||||
isValidSlug
|
|
||||||
),
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const v$ = useVuelidate(rules, state);
|
const v$ = useVuelidate(rules, state);
|
||||||
@@ -50,9 +40,9 @@ const nameError = computed(() =>
|
|||||||
v$.value.name.$error ? t('HELP_CENTER.CREATE_PORTAL_DIALOG.NAME.ERROR') : ''
|
v$.value.name.$error ? t('HELP_CENTER.CREATE_PORTAL_DIALOG.NAME.ERROR') : ''
|
||||||
);
|
);
|
||||||
|
|
||||||
const slugError = computed(() => {
|
const slugError = computed(() =>
|
||||||
return v$.value.slug.$errors[0]?.$message || '';
|
v$.value.slug.$error ? t('HELP_CENTER.CREATE_PORTAL_DIALOG.SLUG.ERROR') : ''
|
||||||
});
|
);
|
||||||
|
|
||||||
const isSubmitDisabled = computed(() => v$.value.$invalid);
|
const isSubmitDisabled = computed(() => v$.value.$invalid);
|
||||||
|
|
||||||
@@ -141,7 +131,6 @@ defineExpose({ dialogRef });
|
|||||||
:message="
|
:message="
|
||||||
nameError || t('HELP_CENTER.CREATE_PORTAL_DIALOG.NAME.MESSAGE')
|
nameError || t('HELP_CENTER.CREATE_PORTAL_DIALOG.NAME.MESSAGE')
|
||||||
"
|
"
|
||||||
@blur="v$.name.$touch()"
|
|
||||||
/>
|
/>
|
||||||
<Input
|
<Input
|
||||||
id="portal-slug"
|
id="portal-slug"
|
||||||
@@ -151,8 +140,6 @@ defineExpose({ dialogRef });
|
|||||||
:label="t('HELP_CENTER.CREATE_PORTAL_DIALOG.SLUG.LABEL')"
|
:label="t('HELP_CENTER.CREATE_PORTAL_DIALOG.SLUG.LABEL')"
|
||||||
:message-type="slugError ? 'error' : 'info'"
|
:message-type="slugError ? 'error' : 'info'"
|
||||||
:message="slugError || buildPortalURL(state.slug)"
|
:message="slugError || buildPortalURL(state.slug)"
|
||||||
@input="v$.slug.$touch()"
|
|
||||||
@blur="v$.slug.$touch()"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
<!--
|
|
||||||
* Preserves RTL/LTR context when teleporting content
|
|
||||||
* Ensures direction-specific classes (ltr:tailwind-class, rtl:tailwind-class) work correctly
|
|
||||||
* when content is teleported outside the app's container with [dir] attribute
|
|
||||||
-->
|
|
||||||
<script setup>
|
|
||||||
import { computed } from 'vue';
|
|
||||||
import { useMapGetter } from 'dashboard/composables/store';
|
|
||||||
|
|
||||||
defineProps({
|
|
||||||
to: {
|
|
||||||
type: String,
|
|
||||||
default: 'body',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const isRTL = useMapGetter('accounts/isRTL');
|
|
||||||
|
|
||||||
const contentDirection = computed(() => (isRTL.value ? 'rtl' : 'ltr'));
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<Teleport :to="to">
|
|
||||||
<div :dir="contentDirection">
|
|
||||||
<slot />
|
|
||||||
</div>
|
|
||||||
</Teleport>
|
|
||||||
</template>
|
|
||||||
@@ -117,7 +117,7 @@ const STYLE_CONFIG = {
|
|||||||
'text-n-ruby-11 hover:enabled:bg-n-ruby-9/10 focus-visible:bg-n-ruby-9/10 outline-n-ruby-8',
|
'text-n-ruby-11 hover:enabled:bg-n-ruby-9/10 focus-visible:bg-n-ruby-9/10 outline-n-ruby-8',
|
||||||
ghost:
|
ghost:
|
||||||
'text-n-ruby-11 hover:enabled:bg-n-alpha-2 focus-visible:bg-n-alpha-2 outline-transparent',
|
'text-n-ruby-11 hover:enabled:bg-n-alpha-2 focus-visible:bg-n-alpha-2 outline-transparent',
|
||||||
link: 'text-n-ruby-9 dark:text-n-ruby-11 hover:enabled:underline focus-visible:underline outline-transparent',
|
link: 'text-n-ruby-9 hover:enabled:underline focus-visible:underline outline-transparent',
|
||||||
},
|
},
|
||||||
amber: {
|
amber: {
|
||||||
solid:
|
solid:
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
import { computed } from 'vue';
|
import { computed } from 'vue';
|
||||||
import { usePolicy } from 'dashboard/composables/usePolicy';
|
import { usePolicy } from 'dashboard/composables/usePolicy';
|
||||||
import Button from 'dashboard/components-next/button/Button.vue';
|
import Button from 'dashboard/components-next/button/Button.vue';
|
||||||
import BackButton from 'dashboard/components/widgets/BackButton.vue';
|
|
||||||
import PaginationFooter from 'dashboard/components-next/pagination/PaginationFooter.vue';
|
import PaginationFooter from 'dashboard/components-next/pagination/PaginationFooter.vue';
|
||||||
import Spinner from 'dashboard/components-next/spinner/Spinner.vue';
|
import Spinner from 'dashboard/components-next/spinner/Spinner.vue';
|
||||||
import Policy from 'dashboard/components/policy.vue';
|
import Policy from 'dashboard/components/policy.vue';
|
||||||
@@ -24,10 +23,6 @@ const props = defineProps({
|
|||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
backUrl: {
|
|
||||||
type: [String, Object],
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
buttonPolicy: {
|
buttonPolicy: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => [],
|
default: () => [],
|
||||||
@@ -44,10 +39,6 @@ const props = defineProps({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
showKnowMore: {
|
|
||||||
type: Boolean,
|
|
||||||
default: true,
|
|
||||||
},
|
|
||||||
isEmpty: {
|
isEmpty: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
@@ -82,23 +73,19 @@ const handlePageChange = event => {
|
|||||||
class="flex items-start lg:items-center justify-between w-full py-6 lg:py-0 lg:h-20 gap-4 lg:gap-2 flex-col lg:flex-row"
|
class="flex items-start lg:items-center justify-between w-full py-6 lg:py-0 lg:h-20 gap-4 lg:gap-2 flex-col lg:flex-row"
|
||||||
>
|
>
|
||||||
<div class="flex gap-4 items-center">
|
<div class="flex gap-4 items-center">
|
||||||
<BackButton v-if="backUrl" :to="backUrl" />
|
|
||||||
<slot name="headerTitle">
|
<slot name="headerTitle">
|
||||||
<span class="text-xl font-medium text-n-slate-12">
|
<span class="text-xl font-medium text-n-slate-12">
|
||||||
{{ headerTitle }}
|
{{ headerTitle }}
|
||||||
</span>
|
</span>
|
||||||
</slot>
|
</slot>
|
||||||
<div
|
<div v-if="!isEmpty" class="flex items-center gap-2">
|
||||||
v-if="!isEmpty && showKnowMore"
|
|
||||||
class="flex items-center gap-2"
|
|
||||||
>
|
|
||||||
<div class="w-0.5 h-4 rounded-2xl bg-n-weak" />
|
<div class="w-0.5 h-4 rounded-2xl bg-n-weak" />
|
||||||
<slot name="knowMore" />
|
<slot name="knowMore" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="!showPaywall && buttonLabel"
|
v-if="!showPaywall"
|
||||||
v-on-clickaway="() => emit('close')"
|
v-on-clickaway="() => emit('close')"
|
||||||
class="relative group/campaign-button"
|
class="relative group/campaign-button"
|
||||||
>
|
>
|
||||||
@@ -117,7 +104,7 @@ const handlePageChange = event => {
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<main class="flex-1 px-6 overflow-y-auto xl:px-0">
|
<main class="flex-1 px-6 overflow-y-auto xl:px-0">
|
||||||
<div class="w-full max-w-[60rem] h-full mx-auto py-4">
|
<div class="w-full max-w-[60rem] mx-auto py-4">
|
||||||
<slot v-if="!showPaywall" name="controls" />
|
<slot v-if="!showPaywall" name="controls" />
|
||||||
<div
|
<div
|
||||||
v-if="isFetching"
|
v-if="isFetching"
|
||||||
|
|||||||
@@ -76,12 +76,9 @@ const handleAction = ({ action, value }) => {
|
|||||||
<template>
|
<template>
|
||||||
<CardLayout>
|
<CardLayout>
|
||||||
<div class="flex justify-between w-full gap-1">
|
<div class="flex justify-between w-full gap-1">
|
||||||
<router-link
|
<span class="text-base text-n-slate-12 line-clamp-1">
|
||||||
:to="{ name: 'captain_assistants_edit', params: { assistantId: id } }"
|
|
||||||
class="text-base text-n-slate-12 line-clamp-1 hover:underline transition-colors"
|
|
||||||
>
|
|
||||||
{{ name }}
|
{{ name }}
|
||||||
</router-link>
|
</span>
|
||||||
<div class="flex items-center gap-2">
|
<div class="flex items-center gap-2">
|
||||||
<div
|
<div
|
||||||
v-on-clickaway="() => toggleDropdown(false)"
|
v-on-clickaway="() => toggleDropdown(false)"
|
||||||
|
|||||||
@@ -1,111 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { ref } from 'vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import NextButton from 'dashboard/components-next/button/Button.vue';
|
|
||||||
import MessageList from './MessageList.vue';
|
|
||||||
import CaptainAssistant from 'dashboard/api/captain/assistant';
|
|
||||||
|
|
||||||
const { assistantId } = defineProps({
|
|
||||||
assistantId: {
|
|
||||||
type: Number,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
const messages = ref([]);
|
|
||||||
const newMessage = ref('');
|
|
||||||
const isLoading = ref(false);
|
|
||||||
|
|
||||||
const formatMessagesForApi = () => {
|
|
||||||
return messages.value.map(message => ({
|
|
||||||
role: message.sender,
|
|
||||||
content: message.content,
|
|
||||||
}));
|
|
||||||
};
|
|
||||||
|
|
||||||
const resetConversation = () => {
|
|
||||||
messages.value = [];
|
|
||||||
newMessage.value = '';
|
|
||||||
};
|
|
||||||
|
|
||||||
const sendMessage = async () => {
|
|
||||||
if (!newMessage.value.trim() || isLoading.value) return;
|
|
||||||
|
|
||||||
const userMessage = {
|
|
||||||
content: newMessage.value,
|
|
||||||
sender: 'user',
|
|
||||||
timestamp: new Date().toISOString(),
|
|
||||||
};
|
|
||||||
messages.value.push(userMessage);
|
|
||||||
const currentMessage = newMessage.value;
|
|
||||||
newMessage.value = '';
|
|
||||||
|
|
||||||
try {
|
|
||||||
isLoading.value = true;
|
|
||||||
const { data } = await CaptainAssistant.playground({
|
|
||||||
assistantId,
|
|
||||||
messageContent: currentMessage,
|
|
||||||
messageHistory: formatMessagesForApi(),
|
|
||||||
});
|
|
||||||
|
|
||||||
messages.value.push({
|
|
||||||
content: data.response,
|
|
||||||
sender: 'assistant',
|
|
||||||
timestamp: new Date().toISOString(),
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
console.error('Error getting assistant response:', error);
|
|
||||||
} finally {
|
|
||||||
isLoading.value = false;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
class="flex flex-col h-full rounded-lg p-4 border border-n-slate-4 text-n-slate-11"
|
|
||||||
>
|
|
||||||
<div class="mb-4">
|
|
||||||
<div class="flex justify-between items-center mb-1">
|
|
||||||
<h3 class="text-lg font-medium">
|
|
||||||
{{ t('CAPTAIN.PLAYGROUND.HEADER') }}
|
|
||||||
</h3>
|
|
||||||
<NextButton
|
|
||||||
ghost
|
|
||||||
size="small"
|
|
||||||
icon="i-lucide-rotate-ccw"
|
|
||||||
@click="resetConversation"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<p class="text-sm text-n-slate-11">
|
|
||||||
{{ t('CAPTAIN.PLAYGROUND.DESCRIPTION') }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<MessageList :messages="messages" :is-loading="isLoading" />
|
|
||||||
|
|
||||||
<div
|
|
||||||
class="flex items-center bg-n-solid-1 outline outline-n-container rounded-lg p-3"
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
v-model="newMessage"
|
|
||||||
class="flex-1 bg-transparent border-none focus:outline-none text-sm mb-0"
|
|
||||||
:placeholder="t('CAPTAIN.PLAYGROUND.MESSAGE_PLACEHOLDER')"
|
|
||||||
@keyup.enter="sendMessage"
|
|
||||||
/>
|
|
||||||
<NextButton
|
|
||||||
ghost
|
|
||||||
size="small"
|
|
||||||
:disabled="!newMessage.trim()"
|
|
||||||
icon="i-lucide-send"
|
|
||||||
@click="sendMessage"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p class="text-xs text-n-slate-11 pt-2 text-center">
|
|
||||||
{{ t('CAPTAIN.PLAYGROUND.CREDIT_NOTE') }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
@@ -1,91 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import { ref, watch, nextTick } from 'vue';
|
|
||||||
import Avatar from 'dashboard/components-next/avatar/Avatar.vue';
|
|
||||||
import { useMessageFormatter } from 'shared/composables/useMessageFormatter';
|
|
||||||
|
|
||||||
const props = defineProps({
|
|
||||||
messages: {
|
|
||||||
type: Array,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
isLoading: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const messageContainer = ref(null);
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
const { formatMessage } = useMessageFormatter();
|
|
||||||
|
|
||||||
const isUserMessage = sender => sender === 'user';
|
|
||||||
|
|
||||||
const getMessageAlignment = sender =>
|
|
||||||
isUserMessage(sender) ? 'justify-end' : 'justify-start';
|
|
||||||
|
|
||||||
const getMessageDirection = sender =>
|
|
||||||
isUserMessage(sender) ? 'flex-row-reverse' : 'flex-row';
|
|
||||||
|
|
||||||
const getAvatarName = sender =>
|
|
||||||
isUserMessage(sender)
|
|
||||||
? t('CAPTAIN.PLAYGROUND.USER')
|
|
||||||
: t('CAPTAIN.PLAYGROUND.ASSISTANT');
|
|
||||||
|
|
||||||
const getMessageStyle = sender =>
|
|
||||||
isUserMessage(sender)
|
|
||||||
? 'bg-n-strong text-n-white'
|
|
||||||
: 'bg-n-solid-iris text-n-slate-12';
|
|
||||||
|
|
||||||
const scrollToBottom = async () => {
|
|
||||||
await nextTick();
|
|
||||||
if (messageContainer.value) {
|
|
||||||
messageContainer.value.scrollTop = messageContainer.value.scrollHeight;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
watch(() => props.messages.length, scrollToBottom);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div ref="messageContainer" class="flex-1 overflow-y-auto mb-4 space-y-2">
|
|
||||||
<div
|
|
||||||
v-for="(message, index) in messages"
|
|
||||||
:key="index"
|
|
||||||
class="flex"
|
|
||||||
:class="getMessageAlignment(message.sender)"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="flex items-start gap-1.5"
|
|
||||||
:class="getMessageDirection(message.sender)"
|
|
||||||
>
|
|
||||||
<Avatar :name="getAvatarName(message.sender)" rounded-full :size="24" />
|
|
||||||
<div
|
|
||||||
class="max-w-[80%] rounded-lg p-3 text-sm"
|
|
||||||
:class="getMessageStyle(message.sender)"
|
|
||||||
>
|
|
||||||
<div class="break-words" v-html="formatMessage(message.content)" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div v-if="isLoading" class="flex justify-start">
|
|
||||||
<div class="flex items-start gap-1.5">
|
|
||||||
<Avatar :name="getAvatarName('assistant')" rounded-full :size="24" />
|
|
||||||
<div
|
|
||||||
class="max-w-sm rounded-lg p-3 text-sm bg-n-solid-iris text-n-slate-12"
|
|
||||||
>
|
|
||||||
<div class="flex gap-1">
|
|
||||||
<div class="w-2 h-2 rounded-full bg-n-iris-10 animate-bounce" />
|
|
||||||
<div
|
|
||||||
class="w-2 h-2 rounded-full bg-n-iris-10 animate-bounce [animation-delay:0.2s]"
|
|
||||||
/>
|
|
||||||
<div
|
|
||||||
class="w-2 h-2 rounded-full bg-n-iris-10 animate-bounce [animation-delay:0.4s]"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
-309
@@ -1,309 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { reactive, computed, watch } from 'vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import { useVuelidate } from '@vuelidate/core';
|
|
||||||
import { required, minLength } from '@vuelidate/validators';
|
|
||||||
import { useMapGetter } from 'dashboard/composables/store';
|
|
||||||
|
|
||||||
import Input from 'dashboard/components-next/input/Input.vue';
|
|
||||||
import Button from 'dashboard/components-next/button/Button.vue';
|
|
||||||
import Editor from 'dashboard/components-next/Editor/Editor.vue';
|
|
||||||
import Accordion from 'dashboard/components-next/Accordion/Accordion.vue';
|
|
||||||
|
|
||||||
const props = defineProps({
|
|
||||||
mode: {
|
|
||||||
type: String,
|
|
||||||
required: true,
|
|
||||||
validator: value => ['edit', 'create'].includes(value),
|
|
||||||
},
|
|
||||||
assistant: {
|
|
||||||
type: Object,
|
|
||||||
default: () => ({}),
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const emit = defineEmits(['submit']);
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
|
|
||||||
const formState = {
|
|
||||||
uiFlags: useMapGetter('captainAssistants/getUIFlags'),
|
|
||||||
};
|
|
||||||
|
|
||||||
const initialState = {
|
|
||||||
name: '',
|
|
||||||
description: '',
|
|
||||||
productName: '',
|
|
||||||
welcomeMessage: '',
|
|
||||||
handoffMessage: '',
|
|
||||||
resolutionMessage: '',
|
|
||||||
instructions: '',
|
|
||||||
features: {
|
|
||||||
conversationFaqs: false,
|
|
||||||
memories: false,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
const state = reactive({ ...initialState });
|
|
||||||
|
|
||||||
const validationRules = {
|
|
||||||
name: { required, minLength: minLength(1) },
|
|
||||||
description: { required, minLength: minLength(1) },
|
|
||||||
productName: { required, minLength: minLength(1) },
|
|
||||||
welcomeMessage: { minLength: minLength(1) },
|
|
||||||
handoffMessage: { minLength: minLength(1) },
|
|
||||||
resolutionMessage: { minLength: minLength(1) },
|
|
||||||
instructions: { minLength: minLength(1) },
|
|
||||||
};
|
|
||||||
|
|
||||||
const v$ = useVuelidate(validationRules, state);
|
|
||||||
|
|
||||||
const isLoading = computed(() => formState.uiFlags.value.creatingItem);
|
|
||||||
|
|
||||||
const getErrorMessage = field => {
|
|
||||||
return v$.value[field].$error ? v$.value[field].$errors[0].$message : '';
|
|
||||||
};
|
|
||||||
|
|
||||||
const formErrors = computed(() => ({
|
|
||||||
name: getErrorMessage('name'),
|
|
||||||
description: getErrorMessage('description'),
|
|
||||||
productName: getErrorMessage('productName'),
|
|
||||||
welcomeMessage: getErrorMessage('welcomeMessage'),
|
|
||||||
handoffMessage: getErrorMessage('handoffMessage'),
|
|
||||||
resolutionMessage: getErrorMessage('resolutionMessage'),
|
|
||||||
instructions: getErrorMessage('instructions'),
|
|
||||||
}));
|
|
||||||
|
|
||||||
const updateStateFromAssistant = assistant => {
|
|
||||||
const { config = {} } = assistant;
|
|
||||||
state.name = assistant.name;
|
|
||||||
state.description = assistant.description;
|
|
||||||
state.productName = config.product_name;
|
|
||||||
state.welcomeMessage = config.welcome_message;
|
|
||||||
state.handoffMessage = config.handoff_message;
|
|
||||||
state.resolutionMessage = config.resolution_message;
|
|
||||||
state.instructions = config.instructions;
|
|
||||||
state.features = {
|
|
||||||
conversationFaqs: config.feature_faq || false,
|
|
||||||
memories: config.feature_memory || false,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleBasicInfoUpdate = async () => {
|
|
||||||
const result = await Promise.all([
|
|
||||||
v$.value.name.$validate(),
|
|
||||||
v$.value.description.$validate(),
|
|
||||||
v$.value.productName.$validate(),
|
|
||||||
]).then(results => results.every(Boolean));
|
|
||||||
if (!result) return;
|
|
||||||
|
|
||||||
const payload = {
|
|
||||||
name: state.name,
|
|
||||||
description: state.description,
|
|
||||||
config: {
|
|
||||||
...props.assistant.config,
|
|
||||||
product_name: state.productName,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
emit('submit', payload);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleSystemMessagesUpdate = async () => {
|
|
||||||
const result = await Promise.all([
|
|
||||||
v$.value.welcomeMessage.$validate(),
|
|
||||||
v$.value.handoffMessage.$validate(),
|
|
||||||
v$.value.resolutionMessage.$validate(),
|
|
||||||
]).then(results => results.every(Boolean));
|
|
||||||
if (!result) return;
|
|
||||||
|
|
||||||
const payload = {
|
|
||||||
config: {
|
|
||||||
...props.assistant.config,
|
|
||||||
welcome_message: state.welcomeMessage,
|
|
||||||
handoff_message: state.handoffMessage,
|
|
||||||
resolution_message: state.resolutionMessage,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
emit('submit', payload);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleInstructionsUpdate = async () => {
|
|
||||||
const result = await v$.value.instructions.$validate();
|
|
||||||
if (!result) return;
|
|
||||||
|
|
||||||
const payload = {
|
|
||||||
config: {
|
|
||||||
...props.assistant.config,
|
|
||||||
instructions: state.instructions,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
emit('submit', payload);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleFeaturesUpdate = () => {
|
|
||||||
const payload = {
|
|
||||||
config: {
|
|
||||||
...props.assistant.config,
|
|
||||||
feature_faq: state.features.conversationFaqs,
|
|
||||||
feature_memory: state.features.memories,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
emit('submit', payload);
|
|
||||||
};
|
|
||||||
|
|
||||||
watch(
|
|
||||||
() => props.assistant,
|
|
||||||
newAssistant => {
|
|
||||||
if (props.mode === 'edit' && newAssistant) {
|
|
||||||
updateStateFromAssistant(newAssistant);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{ immediate: true }
|
|
||||||
);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<form class="flex flex-col gap-4" @submit.prevent="handleSubmit">
|
|
||||||
<!-- Basic Information Section -->
|
|
||||||
<Accordion
|
|
||||||
:title="t('CAPTAIN.ASSISTANTS.FORM.SECTIONS.BASIC_INFO')"
|
|
||||||
is-open
|
|
||||||
>
|
|
||||||
<div class="flex flex-col gap-4 pt-4">
|
|
||||||
<Input
|
|
||||||
v-model="state.name"
|
|
||||||
:label="t('CAPTAIN.ASSISTANTS.FORM.NAME.LABEL')"
|
|
||||||
:placeholder="t('CAPTAIN.ASSISTANTS.FORM.NAME.PLACEHOLDER')"
|
|
||||||
:message="formErrors.name"
|
|
||||||
:message-type="formErrors.name ? 'error' : 'info'"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<Editor
|
|
||||||
v-model="state.description"
|
|
||||||
:label="t('CAPTAIN.ASSISTANTS.FORM.DESCRIPTION.LABEL')"
|
|
||||||
:placeholder="t('CAPTAIN.ASSISTANTS.FORM.DESCRIPTION.PLACEHOLDER')"
|
|
||||||
:message="formErrors.description"
|
|
||||||
:message-type="formErrors.description ? 'error' : 'info'"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<Input
|
|
||||||
v-model="state.productName"
|
|
||||||
:label="t('CAPTAIN.ASSISTANTS.FORM.PRODUCT_NAME.LABEL')"
|
|
||||||
:placeholder="t('CAPTAIN.ASSISTANTS.FORM.PRODUCT_NAME.PLACEHOLDER')"
|
|
||||||
:message="formErrors.productName"
|
|
||||||
:message-type="formErrors.productName ? 'error' : 'info'"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div class="flex justify-end">
|
|
||||||
<Button
|
|
||||||
size="small"
|
|
||||||
:loading="isLoading"
|
|
||||||
@click="handleBasicInfoUpdate"
|
|
||||||
>
|
|
||||||
{{ t('CAPTAIN.ASSISTANTS.FORM.UPDATE') }}
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Accordion>
|
|
||||||
|
|
||||||
<!-- Instructions Section -->
|
|
||||||
<Accordion :title="t('CAPTAIN.ASSISTANTS.FORM.SECTIONS.INSTRUCTIONS')">
|
|
||||||
<div class="flex flex-col gap-4 pt-4">
|
|
||||||
<Editor
|
|
||||||
v-model="state.instructions"
|
|
||||||
:placeholder="t('CAPTAIN.ASSISTANTS.FORM.INSTRUCTIONS.PLACEHOLDER')"
|
|
||||||
:message="formErrors.instructions"
|
|
||||||
:max-length="20000"
|
|
||||||
:message-type="formErrors.instructions ? 'error' : 'info'"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div class="flex justify-end">
|
|
||||||
<Button
|
|
||||||
size="small"
|
|
||||||
:loading="isLoading"
|
|
||||||
:label="t('CAPTAIN.ASSISTANTS.FORM.UPDATE')"
|
|
||||||
@click="handleInstructionsUpdate"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Accordion>
|
|
||||||
|
|
||||||
<!-- Greeting Messages Section -->
|
|
||||||
<Accordion :title="t('CAPTAIN.ASSISTANTS.FORM.SECTIONS.SYSTEM_MESSAGES')">
|
|
||||||
<div class="flex flex-col gap-4 pt-4">
|
|
||||||
<Editor
|
|
||||||
v-model="state.handoffMessage"
|
|
||||||
:label="t('CAPTAIN.ASSISTANTS.FORM.HANDOFF_MESSAGE.LABEL')"
|
|
||||||
:placeholder="
|
|
||||||
t('CAPTAIN.ASSISTANTS.FORM.HANDOFF_MESSAGE.PLACEHOLDER')
|
|
||||||
"
|
|
||||||
:message="formErrors.handoffMessage"
|
|
||||||
:message-type="formErrors.handoffMessage ? 'error' : 'info'"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<Editor
|
|
||||||
v-model="state.resolutionMessage"
|
|
||||||
:label="t('CAPTAIN.ASSISTANTS.FORM.RESOLUTION_MESSAGE.LABEL')"
|
|
||||||
:placeholder="
|
|
||||||
t('CAPTAIN.ASSISTANTS.FORM.RESOLUTION_MESSAGE.PLACEHOLDER')
|
|
||||||
"
|
|
||||||
:message="formErrors.resolutionMessage"
|
|
||||||
:message-type="formErrors.resolutionMessage ? 'error' : 'info'"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div class="flex justify-end">
|
|
||||||
<Button
|
|
||||||
size="small"
|
|
||||||
:loading="isLoading"
|
|
||||||
:label="t('CAPTAIN.ASSISTANTS.FORM.UPDATE')"
|
|
||||||
@click="handleSystemMessagesUpdate"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Accordion>
|
|
||||||
|
|
||||||
<!-- Features Section -->
|
|
||||||
<Accordion :title="t('CAPTAIN.ASSISTANTS.FORM.SECTIONS.FEATURES')">
|
|
||||||
<div class="flex flex-col gap-4 pt-4">
|
|
||||||
<div class="flex flex-col gap-2">
|
|
||||||
<label class="text-sm font-medium text-n-slate-12">
|
|
||||||
{{ t('CAPTAIN.ASSISTANTS.FORM.FEATURES.TITLE') }}
|
|
||||||
</label>
|
|
||||||
<div class="flex flex-col gap-2">
|
|
||||||
<label class="flex items-center gap-2">
|
|
||||||
<input
|
|
||||||
v-model="state.features.conversationFaqs"
|
|
||||||
type="checkbox"
|
|
||||||
class="form-checkbox"
|
|
||||||
/>
|
|
||||||
{{
|
|
||||||
t('CAPTAIN.ASSISTANTS.FORM.FEATURES.ALLOW_CONVERSATION_FAQS')
|
|
||||||
}}
|
|
||||||
</label>
|
|
||||||
<label class="flex items-center gap-2">
|
|
||||||
<input
|
|
||||||
v-model="state.features.memories"
|
|
||||||
type="checkbox"
|
|
||||||
class="form-checkbox"
|
|
||||||
/>
|
|
||||||
{{ t('CAPTAIN.ASSISTANTS.FORM.FEATURES.ALLOW_MEMORIES') }}
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex justify-end">
|
|
||||||
<Button
|
|
||||||
size="small"
|
|
||||||
:loading="isLoading"
|
|
||||||
:label="t('CAPTAIN.ASSISTANTS.FORM.UPDATE')"
|
|
||||||
@click="handleFeaturesUpdate"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Accordion>
|
|
||||||
</form>
|
|
||||||
</template>
|
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { nextTick, ref, watch } from 'vue';
|
import { nextTick, ref, watch } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import { useTrack } from 'dashboard/composables';
|
import { useTrack } from 'dashboard/composables';
|
||||||
import { COPILOT_EVENTS } from 'dashboard/helper/AnalyticsHelper/events';
|
import { COPILOT_EVENTS } from 'dashboard/helper/AnalyticsHelper/events';
|
||||||
|
|
||||||
@@ -40,8 +39,6 @@ const props = defineProps({
|
|||||||
|
|
||||||
const emit = defineEmits(['sendMessage', 'reset', 'setAssistant']);
|
const emit = defineEmits(['sendMessage', 'reset', 'setAssistant']);
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
|
|
||||||
const COPILOT_USER_ROLES = ['assistant', 'system'];
|
const COPILOT_USER_ROLES = ['assistant', 'system'];
|
||||||
|
|
||||||
const sendMessage = message => {
|
const sendMessage = message => {
|
||||||
@@ -50,7 +47,7 @@ const sendMessage = message => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const useSuggestion = opt => {
|
const useSuggestion = opt => {
|
||||||
emit('sendMessage', t(opt.prompt));
|
emit('sendMessage', opt.prompt);
|
||||||
useTrack(COPILOT_EVENTS.SEND_SUGGESTED);
|
useTrack(COPILOT_EVENTS.SEND_SUGGESTED);
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -69,16 +66,16 @@ const scrollToBottom = async () => {
|
|||||||
|
|
||||||
const promptOptions = [
|
const promptOptions = [
|
||||||
{
|
{
|
||||||
label: 'CAPTAIN.COPILOT.PROMPTS.SUMMARIZE.LABEL',
|
label: 'Summarize this conversation',
|
||||||
prompt: 'CAPTAIN.COPILOT.PROMPTS.SUMMARIZE.CONTENT',
|
prompt: `Summarize the key points discussed between the customer and the support agent, including the customer's concerns, questions, and the solutions or responses provided by the support agent`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'CAPTAIN.COPILOT.PROMPTS.SUGGEST.LABEL',
|
label: 'Suggest an answer',
|
||||||
prompt: 'CAPTAIN.COPILOT.PROMPTS.SUGGEST.CONTENT',
|
prompt: `Analyze the customer’s inquiry, and draft a response that effectively addresses their concerns or questions. Ensure the reply is clear, concise, and provides helpful information.`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'CAPTAIN.COPILOT.PROMPTS.RATE.LABEL',
|
label: 'Rate this conversation',
|
||||||
prompt: 'CAPTAIN.COPILOT.PROMPTS.RATE.CONTENT',
|
prompt: `Review the conversation to see how well it meets the customer’s needs. Share a rating out of 5 based on tone, clarity, and effectiveness.`,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -92,7 +89,7 @@ watch(
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="flex flex-col h-full text-sm leading-6 tracking-tight w-full">
|
<div class="flex flex-col h-full text-sm leading-6 tracking-tight">
|
||||||
<div ref="chatContainer" class="flex-1 px-4 py-4 space-y-6 overflow-y-auto">
|
<div ref="chatContainer" class="flex-1 px-4 py-4 space-y-6 overflow-y-auto">
|
||||||
<template v-for="message in messages" :key="message.id">
|
<template v-for="message in messages" :key="message.id">
|
||||||
<CopilotAgentMessage
|
<CopilotAgentMessage
|
||||||
@@ -124,7 +121,7 @@ watch(
|
|||||||
class="px-2 py-1 rounded-md border border-n-weak bg-n-slate-2 text-n-slate-11 flex items-center gap-1"
|
class="px-2 py-1 rounded-md border border-n-weak bg-n-slate-2 text-n-slate-11 flex items-center gap-1"
|
||||||
@click="() => useSuggestion(prompt)"
|
@click="() => useSuggestion(prompt)"
|
||||||
>
|
>
|
||||||
<span>{{ t(prompt.label) }}</span>
|
<span>{{ prompt.label }}</span>
|
||||||
<Icon icon="i-lucide-chevron-right" />
|
<Icon icon="i-lucide-chevron-right" />
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -33,8 +33,6 @@ const insertIntoRichEditor = computed(() => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
const hasEmptyMessageContent = computed(() => !props.message?.content);
|
|
||||||
|
|
||||||
const useCopilotResponse = () => {
|
const useCopilotResponse = () => {
|
||||||
if (insertIntoRichEditor.value) {
|
if (insertIntoRichEditor.value) {
|
||||||
emitter.emit(BUS_EVENTS.INSERT_INTO_RICH_EDITOR, props.message?.content);
|
emitter.emit(BUS_EVENTS.INSERT_INTO_RICH_EDITOR, props.message?.content);
|
||||||
@@ -55,17 +53,9 @@ const useCopilotResponse = () => {
|
|||||||
/>
|
/>
|
||||||
<div class="flex flex-col gap-1 text-n-slate-12">
|
<div class="flex flex-col gap-1 text-n-slate-12">
|
||||||
<div class="font-medium">{{ $t('CAPTAIN.NAME') }}</div>
|
<div class="font-medium">{{ $t('CAPTAIN.NAME') }}</div>
|
||||||
<span v-if="hasEmptyMessageContent" class="text-n-ruby-11">
|
<div v-dompurify-html="messageContent" class="prose-sm break-words" />
|
||||||
{{ $t('CAPTAIN.COPILOT.EMPTY_MESSAGE') }}
|
|
||||||
</span>
|
|
||||||
<div
|
|
||||||
v-else
|
|
||||||
v-dompurify-html="messageContent"
|
|
||||||
class="prose-sm break-words"
|
|
||||||
/>
|
|
||||||
<div class="flex flex-row mt-1">
|
<div class="flex flex-row mt-1">
|
||||||
<Button
|
<Button
|
||||||
v-if="!hasEmptyMessageContent"
|
|
||||||
:label="$t('CAPTAIN.COPILOT.USE')"
|
:label="$t('CAPTAIN.COPILOT.USE')"
|
||||||
faded
|
faded
|
||||||
sm
|
sm
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import CopilotHeader from './CopilotHeader.vue';
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<Story
|
|
||||||
title="Captain/Copilot/CopilotHeader"
|
|
||||||
:layout="{ type: 'grid', width: '800px' }"
|
|
||||||
>
|
|
||||||
<!-- Default State -->
|
|
||||||
<Variant title="Default State">
|
|
||||||
<CopilotHeader />
|
|
||||||
</Variant>
|
|
||||||
|
|
||||||
<!-- With New Conversation Button -->
|
|
||||||
<Variant title="With New Conversation Button">
|
|
||||||
<!-- eslint-disable-next-line vue/prefer-true-attribute-shorthand -->
|
|
||||||
<CopilotHeader :has-messages="true" />
|
|
||||||
</Variant>
|
|
||||||
</Story>
|
|
||||||
</template>
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import Button from '../button/Button.vue';
|
|
||||||
defineProps({
|
|
||||||
hasMessages: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
defineEmits(['reset', 'close']);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
class="flex items-center justify-between px-5 py-2 border-b border-n-weak h-12"
|
|
||||||
>
|
|
||||||
<div class="flex items-center justify-between gap-2 flex-1">
|
|
||||||
<span class="font-medium text-sm text-n-slate-12">
|
|
||||||
{{ $t('CAPTAIN.COPILOT.TITLE') }}
|
|
||||||
</span>
|
|
||||||
<div class="flex items-center">
|
|
||||||
<Button
|
|
||||||
v-if="hasMessages"
|
|
||||||
icon="i-lucide-plus"
|
|
||||||
ghost
|
|
||||||
sm
|
|
||||||
@click="$emit('reset')"
|
|
||||||
/>
|
|
||||||
<Button icon="i-lucide-x" ghost sm @click="$emit('close')" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
@@ -13,16 +13,19 @@ const sendMessage = () => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<form class="relative" @submit.prevent="sendMessage">
|
<form
|
||||||
|
class="border border-n-weak bg-n-alpha-3 rounded-lg h-12 flex"
|
||||||
|
@submit.prevent="sendMessage"
|
||||||
|
>
|
||||||
<input
|
<input
|
||||||
v-model="message"
|
v-model="message"
|
||||||
type="text"
|
type="text"
|
||||||
:placeholder="$t('CAPTAIN.COPILOT.SEND_MESSAGE')"
|
:placeholder="$t('CAPTAIN.COPILOT.SEND_MESSAGE')"
|
||||||
class="w-full reset-base bg-n-alpha-3 ltr:pl-4 ltr:pr-12 rtl:pl-12 rtl:pr-4 py-3 text-n-slate-11 text-sm border border-n-weak rounded-lg focus:outline-none focus:ring-1 focus:ring-n-blue-11 focus:border-n-blue-11"
|
class="w-full reset-base bg-transparent px-4 py-3 text-n-slate-11 text-sm"
|
||||||
@keyup.enter="sendMessage"
|
@keyup.enter="sendMessage"
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
class="absolute ltr:right-1 rtl:left-1 top-1/2 -translate-y-1/2 h-9 w-10 flex items-center justify-center text-n-slate-11 hover:text-n-blue-11"
|
class="h-auto w-12 flex items-center justify-center text-n-slate-11"
|
||||||
type="submit"
|
type="submit"
|
||||||
>
|
>
|
||||||
<i class="i-ph-arrow-up" />
|
<i class="i-ph-arrow-up" />
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import Icon from '../../components-next/icon/Icon.vue';
|
|
||||||
defineProps({
|
|
||||||
content: {
|
|
||||||
type: String,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
class="flex flex-col gap-2 p-3 rounded-lg bg-n-background/50 border border-n-weak hover:bg-n-background/80 transition-colors duration-200"
|
|
||||||
>
|
|
||||||
<div class="flex items-start gap-2">
|
|
||||||
<Icon
|
|
||||||
icon="i-lucide-sparkles"
|
|
||||||
class="w-4 h-4 mt-0.5 flex-shrink-0 text-n-slate-9"
|
|
||||||
/>
|
|
||||||
<div class="text-sm text-n-slate-11">
|
|
||||||
{{ content }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import CopilotThinkingGroup from './CopilotThinkingGroup.vue';
|
|
||||||
|
|
||||||
const messages = [
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
content: 'Analyzing the user query',
|
|
||||||
reasoning: 'Breaking down the request into actionable steps',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
content: 'Searching codebase',
|
|
||||||
reasoning: 'Looking for relevant files and functions',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 3,
|
|
||||||
content: 'Generating response',
|
|
||||||
reasoning: 'Composing a helpful and accurate answer',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<Story title="Captain/Copilot/CopilotThinkingGroup" group="components">
|
|
||||||
<Variant title="Default">
|
|
||||||
<CopilotThinkingGroup :messages="messages" />
|
|
||||||
</Variant>
|
|
||||||
|
|
||||||
<Variant title="With Default Collapsed">
|
|
||||||
<!-- eslint-disable-next-line -->
|
|
||||||
<CopilotThinkingGroup :messages="messages" :default-collapsed="true" />
|
|
||||||
</Variant>
|
|
||||||
</Story>
|
|
||||||
</template>
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { ref, watch, computed } from 'vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import Icon from '../icon/Icon.vue';
|
|
||||||
import CopilotThinkingBlock from './CopilotThinkingBlock.vue';
|
|
||||||
|
|
||||||
const props = defineProps({
|
|
||||||
messages: { type: Array, required: true },
|
|
||||||
defaultCollapsed: { type: Boolean, default: false },
|
|
||||||
});
|
|
||||||
const { t } = useI18n();
|
|
||||||
const isExpanded = ref(!props.defaultCollapsed);
|
|
||||||
|
|
||||||
const thinkingCount = computed(() => props.messages.length);
|
|
||||||
|
|
||||||
watch(
|
|
||||||
() => props.defaultCollapsed,
|
|
||||||
newValue => {
|
|
||||||
if (newValue) {
|
|
||||||
isExpanded.value = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="flex flex-col gap-2">
|
|
||||||
<button
|
|
||||||
class="group flex items-center gap-2 text-xs text-n-slate-10 hover:text-n-slate-11 transition-colors duration-200 -ml-3"
|
|
||||||
@click="isExpanded = !isExpanded"
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
:icon="isExpanded ? 'i-lucide-chevron-down' : 'i-lucide-chevron-right'"
|
|
||||||
class="w-4 h-4 transition-transform duration-200 group-hover:scale-110"
|
|
||||||
/>
|
|
||||||
<span class="flex items-center gap-2">
|
|
||||||
{{ t('CAPTAIN.COPILOT.SHOW_STEPS') }}
|
|
||||||
<span
|
|
||||||
class="inline-flex items-center justify-center h-4 min-w-4 px-1 text-xs font-medium rounded-full bg-n-solid-3 text-n-slate-11"
|
|
||||||
>
|
|
||||||
{{ thinkingCount }}
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
</button>
|
|
||||||
<div
|
|
||||||
v-show="isExpanded"
|
|
||||||
class="space-y-3 transition-all duration-200"
|
|
||||||
:class="{
|
|
||||||
'opacity-100': isExpanded,
|
|
||||||
'opacity-0 max-h-0 overflow-hidden': !isExpanded,
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
<CopilotThinkingBlock
|
|
||||||
v-for="message in messages"
|
|
||||||
:key="message.id"
|
|
||||||
:content="message.content"
|
|
||||||
:reasoning="message.reasoning"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
@@ -2,9 +2,9 @@
|
|||||||
import { ref, computed } from 'vue';
|
import { ref, computed } from 'vue';
|
||||||
import { OnClickOutside } from '@vueuse/components';
|
import { OnClickOutside } from '@vueuse/components';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useMapGetter } from 'dashboard/composables/store.js';
|
||||||
|
|
||||||
import Button from 'dashboard/components-next/button/Button.vue';
|
import Button from 'dashboard/components-next/button/Button.vue';
|
||||||
import TeleportWithDirection from 'dashboard/components-next/TeleportWithDirection.vue';
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
type: {
|
type: {
|
||||||
@@ -59,6 +59,8 @@ const emit = defineEmits(['confirm', 'close']);
|
|||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const isRTL = useMapGetter('accounts/isRTL');
|
||||||
|
|
||||||
const dialogRef = ref(null);
|
const dialogRef = ref(null);
|
||||||
const dialogContentRef = ref(null);
|
const dialogContentRef = ref(null);
|
||||||
|
|
||||||
@@ -92,7 +94,7 @@ defineExpose({ open, close });
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<TeleportWithDirection to="body">
|
<Teleport to="body">
|
||||||
<dialog
|
<dialog
|
||||||
ref="dialogRef"
|
ref="dialogRef"
|
||||||
class="w-full transition-all duration-300 ease-in-out shadow-xl rounded-xl"
|
class="w-full transition-all duration-300 ease-in-out shadow-xl rounded-xl"
|
||||||
@@ -100,6 +102,7 @@ defineExpose({ open, close });
|
|||||||
maxWidthClass,
|
maxWidthClass,
|
||||||
overflowYAuto ? 'overflow-y-auto' : 'overflow-visible',
|
overflowYAuto ? 'overflow-y-auto' : 'overflow-visible',
|
||||||
]"
|
]"
|
||||||
|
:dir="isRTL ? 'rtl' : 'ltr'"
|
||||||
@close="close"
|
@close="close"
|
||||||
>
|
>
|
||||||
<OnClickOutside @trigger="close">
|
<OnClickOutside @trigger="close">
|
||||||
@@ -122,10 +125,7 @@ defineExpose({ open, close });
|
|||||||
<slot />
|
<slot />
|
||||||
<!-- Dialog content will be injected here -->
|
<!-- Dialog content will be injected here -->
|
||||||
<slot name="footer">
|
<slot name="footer">
|
||||||
<div
|
<div class="flex items-center justify-between w-full gap-3">
|
||||||
v-if="showCancelButton || showConfirmButton"
|
|
||||||
class="flex items-center justify-between w-full gap-3"
|
|
||||||
>
|
|
||||||
<Button
|
<Button
|
||||||
v-if="showCancelButton"
|
v-if="showCancelButton"
|
||||||
variant="faded"
|
variant="faded"
|
||||||
@@ -149,7 +149,7 @@ defineExpose({ open, close });
|
|||||||
</form>
|
</form>
|
||||||
</OnClickOutside>
|
</OnClickOutside>
|
||||||
</dialog>
|
</dialog>
|
||||||
</TeleportWithDirection>
|
</Teleport>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|||||||
@@ -81,7 +81,6 @@ onMounted(() => {
|
|||||||
<button
|
<button
|
||||||
v-for="(item, index) in filteredMenuItems"
|
v-for="(item, index) in filteredMenuItems"
|
||||||
:key="index"
|
:key="index"
|
||||||
type="button"
|
|
||||||
class="inline-flex items-center justify-start w-full h-8 min-w-0 gap-2 px-2 py-1.5 transition-all duration-200 ease-in-out border-0 rounded-lg z-60 hover:bg-n-alpha-1 dark:hover:bg-n-alpha-2 disabled:cursor-not-allowed disabled:pointer-events-none disabled:opacity-50"
|
class="inline-flex items-center justify-start w-full h-8 min-w-0 gap-2 px-2 py-1.5 transition-all duration-200 ease-in-out border-0 rounded-lg z-60 hover:bg-n-alpha-1 dark:hover:bg-n-alpha-2 disabled:cursor-not-allowed disabled:pointer-events-none disabled:opacity-50"
|
||||||
:class="{
|
:class="{
|
||||||
'bg-n-alpha-1 dark:bg-n-solid-active': item.isSelected,
|
'bg-n-alpha-1 dark:bg-n-solid-active': item.isSelected,
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { computed, ref } from 'vue';
|
import { computed } from 'vue';
|
||||||
import { useElementBounding, useWindowSize } from '@vueuse/core';
|
|
||||||
import DropdownContainer from 'next/dropdown-menu/base/DropdownContainer.vue';
|
import DropdownContainer from 'next/dropdown-menu/base/DropdownContainer.vue';
|
||||||
import DropdownSection from 'next/dropdown-menu/base/DropdownSection.vue';
|
import DropdownSection from 'next/dropdown-menu/base/DropdownSection.vue';
|
||||||
import DropdownBody from 'next/dropdown-menu/base/DropdownBody.vue';
|
import DropdownBody from 'next/dropdown-menu/base/DropdownBody.vue';
|
||||||
@@ -26,10 +25,6 @@ const props = defineProps({
|
|||||||
type: String,
|
type: String,
|
||||||
default: 'faded',
|
default: 'faded',
|
||||||
},
|
},
|
||||||
label: {
|
|
||||||
type: String,
|
|
||||||
default: null,
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const selected = defineModel({
|
const selected = defineModel({
|
||||||
@@ -37,13 +32,6 @@ const selected = defineModel({
|
|||||||
required: true,
|
required: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
const triggerRef = ref(null);
|
|
||||||
const dropdownRef = ref(null);
|
|
||||||
|
|
||||||
const { top } = useElementBounding(triggerRef);
|
|
||||||
const { height } = useWindowSize();
|
|
||||||
const { height: dropdownHeight } = useElementBounding(dropdownRef);
|
|
||||||
|
|
||||||
const selectedOption = computed(() => {
|
const selectedOption = computed(() => {
|
||||||
return props.options.find(o => o.value === selected.value) || {};
|
return props.options.find(o => o.value === selected.value) || {};
|
||||||
});
|
});
|
||||||
@@ -53,16 +41,6 @@ const iconToRender = computed(() => {
|
|||||||
return selectedOption.value.icon || 'i-lucide-chevron-down';
|
return selectedOption.value.icon || 'i-lucide-chevron-down';
|
||||||
});
|
});
|
||||||
|
|
||||||
const dropdownPosition = computed(() => {
|
|
||||||
const DROPDOWN_MAX_HEIGHT = 340;
|
|
||||||
// Get actual height if available or use default
|
|
||||||
const menuHeight = dropdownHeight.value
|
|
||||||
? dropdownHeight.value + 20
|
|
||||||
: DROPDOWN_MAX_HEIGHT;
|
|
||||||
const spaceBelow = height.value - top.value;
|
|
||||||
return spaceBelow < menuHeight ? 'bottom-0' : 'top-0';
|
|
||||||
});
|
|
||||||
|
|
||||||
const updateSelected = newValue => {
|
const updateSelected = newValue => {
|
||||||
selected.value = newValue;
|
selected.value = newValue;
|
||||||
};
|
};
|
||||||
@@ -73,23 +51,17 @@ const updateSelected = newValue => {
|
|||||||
<template #trigger="{ toggle }">
|
<template #trigger="{ toggle }">
|
||||||
<slot name="trigger" :toggle="toggle">
|
<slot name="trigger" :toggle="toggle">
|
||||||
<Button
|
<Button
|
||||||
ref="triggerRef"
|
|
||||||
sm
|
sm
|
||||||
slate
|
slate
|
||||||
:variant
|
:variant
|
||||||
:icon="iconToRender"
|
:icon="iconToRender"
|
||||||
:trailing-icon="selectedOption.icon ? false : true"
|
:trailing-icon="selectedOption.icon ? false : true"
|
||||||
:label="label || (hideLabel ? null : selectedOption.label)"
|
:label="hideLabel ? null : selectedOption.label"
|
||||||
@click="toggle"
|
@click="toggle"
|
||||||
/>
|
/>
|
||||||
</slot>
|
</slot>
|
||||||
</template>
|
</template>
|
||||||
<DropdownBody
|
<DropdownBody class="top-0 min-w-48 z-50" strong>
|
||||||
ref="dropdownRef"
|
|
||||||
class="min-w-48 z-50"
|
|
||||||
:class="dropdownPosition"
|
|
||||||
strong
|
|
||||||
>
|
|
||||||
<DropdownSection class="max-h-80 overflow-scroll">
|
<DropdownSection class="max-h-80 overflow-scroll">
|
||||||
<DropdownItem
|
<DropdownItem
|
||||||
v-for="option in options"
|
v-for="option in options"
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ export function useChannelIcon(inbox) {
|
|||||||
'Channel::TwitterProfile': 'i-ri-twitter-x-fill',
|
'Channel::TwitterProfile': 'i-ri-twitter-x-fill',
|
||||||
'Channel::WebWidget': 'i-ri-global-fill',
|
'Channel::WebWidget': 'i-ri-global-fill',
|
||||||
'Channel::Whatsapp': 'i-ri-whatsapp-fill',
|
'Channel::Whatsapp': 'i-ri-whatsapp-fill',
|
||||||
'Channel::Instagram': 'i-ri-instagram-fill',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const providerIconMap = {
|
const providerIconMap = {
|
||||||
|
|||||||
@@ -1,66 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { computed, ref } from 'vue';
|
|
||||||
import Input from './Input.vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
|
|
||||||
const props = defineProps({
|
|
||||||
min: { type: Number, default: 0 },
|
|
||||||
max: { type: Number, default: Infinity },
|
|
||||||
disabled: { type: Boolean, default: false },
|
|
||||||
});
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
const duration = defineModel('modelValue', { type: Number, default: null });
|
|
||||||
|
|
||||||
const UNIT_TYPES = {
|
|
||||||
MINUTES: 'minutes',
|
|
||||||
HOURS: 'hours',
|
|
||||||
DAYS: 'days',
|
|
||||||
};
|
|
||||||
const unit = ref(UNIT_TYPES.MINUTES);
|
|
||||||
|
|
||||||
const transformedValue = computed({
|
|
||||||
get() {
|
|
||||||
if (unit.value === UNIT_TYPES.MINUTES) return duration.value;
|
|
||||||
if (unit.value === UNIT_TYPES.HOURS) return Math.floor(duration.value / 60);
|
|
||||||
if (unit.value === UNIT_TYPES.DAYS)
|
|
||||||
return Math.floor(duration.value / 24 / 60);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
},
|
|
||||||
set(newValue) {
|
|
||||||
let minuteValue;
|
|
||||||
if (unit.value === UNIT_TYPES.MINUTES) {
|
|
||||||
minuteValue = Math.floor(newValue);
|
|
||||||
} else if (unit.value === UNIT_TYPES.HOURS) {
|
|
||||||
minuteValue = Math.floor(newValue * 60);
|
|
||||||
} else if (unit.value === UNIT_TYPES.DAYS) {
|
|
||||||
minuteValue = Math.floor(newValue * 24 * 60);
|
|
||||||
}
|
|
||||||
|
|
||||||
duration.value = Math.min(Math.max(minuteValue, props.min), props.max);
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<Input
|
|
||||||
v-model="transformedValue"
|
|
||||||
type="number"
|
|
||||||
autocomplete="off"
|
|
||||||
:disabled="disabled"
|
|
||||||
:placeholder="t('DURATION_INPUT.PLACEHOLDER')"
|
|
||||||
class="flex-grow w-full disabled:"
|
|
||||||
/>
|
|
||||||
<select
|
|
||||||
v-model="unit"
|
|
||||||
:disabled="disabled"
|
|
||||||
class="mb-0 text-sm disabled:outline-n-weak disabled:opacity-40"
|
|
||||||
>
|
|
||||||
<option :value="UNIT_TYPES.MINUTES">
|
|
||||||
{{ t('DURATION_INPUT.MINUTES') }}
|
|
||||||
</option>
|
|
||||||
<option :value="UNIT_TYPES.HOURS">{{ t('DURATION_INPUT.HOURS') }}</option>
|
|
||||||
<option :value="UNIT_TYPES.DAYS">{{ t('DURATION_INPUT.DAYS') }}</option>
|
|
||||||
</select>
|
|
||||||
</template>
|
|
||||||
@@ -117,7 +117,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
conversationId: { type: Number, required: true },
|
conversationId: { type: Number, required: true },
|
||||||
createdAt: { type: Number, required: true }, // eslint-disable-line vue/no-unused-properties
|
createdAt: { type: Number, required: true }, // eslint-disable-line vue/no-unused-properties
|
||||||
currentUserId: { type: Number, required: true }, // eslint-disable-line vue/no-unused-properties
|
currentUserId: { type: Number, required: true },
|
||||||
groupWithNext: { type: Boolean, default: false },
|
groupWithNext: { type: Boolean, default: false },
|
||||||
inboxId: { type: Number, default: null }, // eslint-disable-line vue/no-unused-properties
|
inboxId: { type: Number, default: null }, // eslint-disable-line vue/no-unused-properties
|
||||||
inboxSupportsReplyTo: { type: Object, default: () => ({}) },
|
inboxSupportsReplyTo: { type: Object, default: () => ({}) },
|
||||||
@@ -173,10 +173,7 @@ const variant = computed(() => {
|
|||||||
return variants[props.messageType] || MESSAGE_VARIANTS.USER;
|
return variants[props.messageType] || MESSAGE_VARIANTS.USER;
|
||||||
});
|
});
|
||||||
|
|
||||||
const isBotOrAgentMessage = computed(() => {
|
const isMyMessage = computed(() => {
|
||||||
if (props.messageType === MESSAGE_TYPES.ACTIVITY) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
// if an outgoing message is still processing, then it's definitely a
|
// if an outgoing message is still processing, then it's definitely a
|
||||||
// message sent by the current user
|
// message sent by the current user
|
||||||
if (
|
if (
|
||||||
@@ -186,21 +183,16 @@ const isBotOrAgentMessage = computed(() => {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
const senderId = props.senderId ?? props.sender?.id;
|
const senderId = props.senderId ?? props.sender?.id;
|
||||||
const senderType = props.sender?.type ?? props.senderType;
|
const senderType = props.senderType ?? props.sender?.type;
|
||||||
|
|
||||||
if (!senderType || !senderId) {
|
if (!senderType || !senderId) {
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
return (
|
||||||
[SENDER_TYPES.AGENT_BOT, SENDER_TYPES.CAPTAIN_ASSISTANT].includes(
|
senderType.toLowerCase() === SENDER_TYPES.USER.toLowerCase() &&
|
||||||
senderType
|
props.currentUserId === senderId
|
||||||
)
|
);
|
||||||
) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return senderType.toLowerCase() === SENDER_TYPES.USER.toLowerCase();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -208,7 +200,7 @@ const isBotOrAgentMessage = computed(() => {
|
|||||||
* @returns {import('vue').ComputedRef<'left'|'right'|'center'>} The computed orientation
|
* @returns {import('vue').ComputedRef<'left'|'right'|'center'>} The computed orientation
|
||||||
*/
|
*/
|
||||||
const orientation = computed(() => {
|
const orientation = computed(() => {
|
||||||
if (isBotOrAgentMessage.value) {
|
if (isMyMessage.value) {
|
||||||
return ORIENTATION.RIGHT;
|
return ORIENTATION.RIGHT;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -229,8 +221,8 @@ const flexOrientationClass = computed(() => {
|
|||||||
|
|
||||||
const gridClass = computed(() => {
|
const gridClass = computed(() => {
|
||||||
const map = {
|
const map = {
|
||||||
[ORIENTATION.LEFT]: 'grid grid-cols-1fr',
|
[ORIENTATION.LEFT]: 'grid grid-cols-[24px_1fr]',
|
||||||
[ORIENTATION.RIGHT]: 'grid grid-cols-[1fr_24px]',
|
[ORIENTATION.RIGHT]: 'grid grid-cols-1fr',
|
||||||
};
|
};
|
||||||
|
|
||||||
return map[orientation.value];
|
return map[orientation.value];
|
||||||
@@ -239,12 +231,12 @@ const gridClass = computed(() => {
|
|||||||
const gridTemplate = computed(() => {
|
const gridTemplate = computed(() => {
|
||||||
const map = {
|
const map = {
|
||||||
[ORIENTATION.LEFT]: `
|
[ORIENTATION.LEFT]: `
|
||||||
"bubble"
|
"avatar bubble"
|
||||||
"meta"
|
"spacer meta"
|
||||||
`,
|
`,
|
||||||
[ORIENTATION.RIGHT]: `
|
[ORIENTATION.RIGHT]: `
|
||||||
"bubble avatar"
|
"bubble"
|
||||||
"meta spacer"
|
"meta"
|
||||||
`,
|
`,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -259,7 +251,7 @@ const shouldGroupWithNext = computed(() => {
|
|||||||
|
|
||||||
const shouldShowAvatar = computed(() => {
|
const shouldShowAvatar = computed(() => {
|
||||||
if (props.messageType === MESSAGE_TYPES.ACTIVITY) return false;
|
if (props.messageType === MESSAGE_TYPES.ACTIVITY) return false;
|
||||||
if (orientation.value === ORIENTATION.LEFT) return false;
|
if (orientation.value === ORIENTATION.RIGHT) return false;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
@@ -402,29 +394,23 @@ function handleReplyTo() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const avatarInfo = computed(() => {
|
const avatarInfo = computed(() => {
|
||||||
// If no sender, return bot info
|
if (!props.sender || props.sender.type === SENDER_TYPES.AGENT_BOT) {
|
||||||
if (!props.sender) {
|
|
||||||
return {
|
return {
|
||||||
name: t('CONVERSATION.BOT'),
|
name: t('CONVERSATION.BOT'),
|
||||||
src: '',
|
src: '',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const { sender } = props;
|
if (props.sender) {
|
||||||
const { name, type, avatarUrl, thumbnail } = sender || {};
|
|
||||||
|
|
||||||
// If sender type is agent bot, use avatarUrl
|
|
||||||
if ([SENDER_TYPES.AGENT_BOT, SENDER_TYPES.CAPTAIN_ASSISTANT].includes(type)) {
|
|
||||||
return {
|
return {
|
||||||
name: name ?? '',
|
name: props.sender.name,
|
||||||
src: avatarUrl ?? '',
|
src: props.sender?.thumbnail,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// For all other senders, use thumbnail
|
|
||||||
return {
|
return {
|
||||||
name: name ?? '',
|
name: '',
|
||||||
src: thumbnail ?? '',
|
src: '',
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -452,7 +438,7 @@ provideMessageContext({
|
|||||||
isPrivate: computed(() => props.private),
|
isPrivate: computed(() => props.private),
|
||||||
variant,
|
variant,
|
||||||
orientation,
|
orientation,
|
||||||
isBotOrAgentMessage,
|
isMyMessage,
|
||||||
shouldGroupWithNext,
|
shouldGroupWithNext,
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
@@ -484,14 +470,14 @@ provideMessageContext({
|
|||||||
'w-full': variant === MESSAGE_VARIANTS.EMAIL,
|
'w-full': variant === MESSAGE_VARIANTS.EMAIL,
|
||||||
},
|
},
|
||||||
]"
|
]"
|
||||||
class="gap-x-2"
|
class="gap-x-3"
|
||||||
:style="{
|
:style="{
|
||||||
gridTemplateAreas: gridTemplate,
|
gridTemplateAreas: gridTemplate,
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-if="!shouldGroupWithNext && shouldShowAvatar"
|
v-if="!shouldGroupWithNext && shouldShowAvatar"
|
||||||
v-tooltip.left-end="avatarTooltip"
|
v-tooltip.right-end="avatarTooltip"
|
||||||
class="[grid-area:avatar] flex items-end"
|
class="[grid-area:avatar] flex items-end"
|
||||||
>
|
>
|
||||||
<Avatar v-bind="avatarInfo" :size="24" />
|
<Avatar v-bind="avatarInfo" :size="24" />
|
||||||
@@ -499,8 +485,7 @@ provideMessageContext({
|
|||||||
<div
|
<div
|
||||||
class="[grid-area:bubble] flex"
|
class="[grid-area:bubble] flex"
|
||||||
:class="{
|
:class="{
|
||||||
'ltr:pl-8 rtl:pr-8 justify-end': orientation === ORIENTATION.RIGHT,
|
'ltr:pl-9 rtl:pl-0 justify-end': orientation === ORIENTATION.RIGHT,
|
||||||
'ltr:pr-8 rtl:pl-8': orientation === ORIENTATION.LEFT,
|
|
||||||
'min-w-0': variant === MESSAGE_VARIANTS.EMAIL,
|
'min-w-0': variant === MESSAGE_VARIANTS.EMAIL,
|
||||||
}"
|
}"
|
||||||
@contextmenu="openContextMenu($event)"
|
@contextmenu="openContextMenu($event)"
|
||||||
|
|||||||
@@ -19,17 +19,10 @@ const {
|
|||||||
isAWebWidgetInbox,
|
isAWebWidgetInbox,
|
||||||
isAWhatsAppChannel,
|
isAWhatsAppChannel,
|
||||||
isAnEmailChannel,
|
isAnEmailChannel,
|
||||||
isAnInstagramChannel,
|
|
||||||
} = useInbox();
|
} = useInbox();
|
||||||
|
|
||||||
const {
|
const { status, isPrivate, createdAt, sourceId, messageType } =
|
||||||
status,
|
useMessageContext();
|
||||||
isPrivate,
|
|
||||||
createdAt,
|
|
||||||
sourceId,
|
|
||||||
messageType,
|
|
||||||
contentAttributes,
|
|
||||||
} = useMessageContext();
|
|
||||||
|
|
||||||
const readableTime = computed(() =>
|
const readableTime = computed(() =>
|
||||||
messageTimestamp(createdAt.value, 'LLL d, h:mm a')
|
messageTimestamp(createdAt.value, 'LLL d, h:mm a')
|
||||||
@@ -37,11 +30,6 @@ const readableTime = computed(() =>
|
|||||||
|
|
||||||
const showStatusIndicator = computed(() => {
|
const showStatusIndicator = computed(() => {
|
||||||
if (isPrivate.value) return false;
|
if (isPrivate.value) return false;
|
||||||
// Don't show status for failed messages, we already show error message
|
|
||||||
if (status.value === MESSAGE_STATUS.FAILED) return false;
|
|
||||||
// Don't show status for deleted messages
|
|
||||||
if (contentAttributes.value?.deleted) return false;
|
|
||||||
|
|
||||||
if (messageType.value === MESSAGE_TYPES.OUTGOING) return true;
|
if (messageType.value === MESSAGE_TYPES.OUTGOING) return true;
|
||||||
if (messageType.value === MESSAGE_TYPES.TEMPLATE) return true;
|
if (messageType.value === MESSAGE_TYPES.TEMPLATE) return true;
|
||||||
|
|
||||||
@@ -59,8 +47,7 @@ const isSent = computed(() => {
|
|||||||
isATwilioChannel.value ||
|
isATwilioChannel.value ||
|
||||||
isAFacebookInbox.value ||
|
isAFacebookInbox.value ||
|
||||||
isASmsInbox.value ||
|
isASmsInbox.value ||
|
||||||
isATelegramChannel.value ||
|
isATelegramChannel.value
|
||||||
isAnInstagramChannel.value
|
|
||||||
) {
|
) {
|
||||||
return sourceId.value && status.value === MESSAGE_STATUS.SENT;
|
return sourceId.value && status.value === MESSAGE_STATUS.SENT;
|
||||||
}
|
}
|
||||||
@@ -99,8 +86,7 @@ const isRead = computed(() => {
|
|||||||
if (
|
if (
|
||||||
isAWhatsAppChannel.value ||
|
isAWhatsAppChannel.value ||
|
||||||
isATwilioChannel.value ||
|
isATwilioChannel.value ||
|
||||||
isAFacebookInbox.value ||
|
isAFacebookInbox.value
|
||||||
isAnInstagramChannel.value
|
|
||||||
) {
|
) {
|
||||||
return sourceId.value && status.value === MESSAGE_STATUS.READ;
|
return sourceId.value && status.value === MESSAGE_STATUS.READ;
|
||||||
}
|
}
|
||||||
@@ -116,6 +102,7 @@ const statusToShow = computed(() => {
|
|||||||
if (isRead.value) return MESSAGE_STATUS.READ;
|
if (isRead.value) return MESSAGE_STATUS.READ;
|
||||||
if (isDelivered.value) return MESSAGE_STATUS.DELIVERED;
|
if (isDelivered.value) return MESSAGE_STATUS.DELIVERED;
|
||||||
if (isSent.value) return MESSAGE_STATUS.SENT;
|
if (isSent.value) return MESSAGE_STATUS.SENT;
|
||||||
|
if (status.value === MESSAGE_STATUS.FAILED) return MESSAGE_STATUS.FAILED;
|
||||||
|
|
||||||
return MESSAGE_STATUS.PROGRESS;
|
return MESSAGE_STATUS.PROGRESS;
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { defineProps, defineEmits } from 'vue';
|
|
||||||
|
|
||||||
defineProps({
|
|
||||||
showingOriginal: Boolean,
|
|
||||||
});
|
|
||||||
|
|
||||||
defineEmits(['toggle']);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<span>
|
|
||||||
<span
|
|
||||||
class="text-xs text-n-slate-11 cursor-pointer hover:underline select-none"
|
|
||||||
@click="$emit('toggle')"
|
|
||||||
>
|
|
||||||
{{
|
|
||||||
showingOriginal
|
|
||||||
? $t('CONVERSATION.VIEW_TRANSLATED')
|
|
||||||
: $t('CONVERSATION.VIEW_ORIGINAL')
|
|
||||||
}}
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
</template>
|
|
||||||
@@ -14,7 +14,7 @@ const readableTime = computed(() =>
|
|||||||
<template>
|
<template>
|
||||||
<BaseBubble
|
<BaseBubble
|
||||||
v-tooltip.top="readableTime"
|
v-tooltip.top="readableTime"
|
||||||
class="px-3 py-1 !rounded-xl flex min-w-0 items-center gap-2"
|
class="px-2 py-0.5 !rounded-full flex min-w-0 items-center gap-2"
|
||||||
data-bubble-name="activity"
|
data-bubble-name="activity"
|
||||||
>
|
>
|
||||||
<span v-dompurify-html="content" :title="content" />
|
<span v-dompurify-html="content" :title="content" />
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
import { computed } from 'vue';
|
import { computed } from 'vue';
|
||||||
import BaseBubble from './Base.vue';
|
import BaseBubble from './Base.vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { CSAT_RATINGS, CSAT_DISPLAY_TYPES } from 'shared/constants/messages';
|
import { CSAT_RATINGS } from 'shared/constants/messages';
|
||||||
import { useMessageContext } from '../provider.js';
|
import { useMessageContext } from '../provider.js';
|
||||||
|
|
||||||
const { contentAttributes, content } = useMessageContext();
|
const { contentAttributes } = useMessageContext();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
const response = computed(() => {
|
const response = computed(() => {
|
||||||
@@ -16,14 +16,6 @@ const isRatingSubmitted = computed(() => {
|
|||||||
return !!response.value.rating;
|
return !!response.value.rating;
|
||||||
});
|
});
|
||||||
|
|
||||||
const displayType = computed(() => {
|
|
||||||
return contentAttributes.value?.displayType || CSAT_DISPLAY_TYPES.EMOJI;
|
|
||||||
});
|
|
||||||
|
|
||||||
const isStarRating = computed(() => {
|
|
||||||
return displayType.value === CSAT_DISPLAY_TYPES.STAR;
|
|
||||||
});
|
|
||||||
|
|
||||||
const rating = computed(() => {
|
const rating = computed(() => {
|
||||||
if (isRatingSubmitted.value) {
|
if (isRatingSubmitted.value) {
|
||||||
return CSAT_RATINGS.find(
|
return CSAT_RATINGS.find(
|
||||||
@@ -33,33 +25,16 @@ const rating = computed(() => {
|
|||||||
|
|
||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
|
|
||||||
const starRatingValue = computed(() => {
|
|
||||||
return response.value.rating || 0;
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<BaseBubble class="px-4 py-3" data-bubble-name="csat">
|
<BaseBubble class="px-4 py-3" data-bubble-name="csat">
|
||||||
<h4>{{ content || t('CONVERSATION.CSAT_REPLY_MESSAGE') }}</h4>
|
<h4>{{ t('CONVERSATION.CSAT_REPLY_MESSAGE') }}</h4>
|
||||||
<dl v-if="isRatingSubmitted" class="mt-4">
|
<dl v-if="isRatingSubmitted" class="mt-4">
|
||||||
<dt class="text-n-slate-11 italic">
|
<dt class="text-n-slate-11 italic">
|
||||||
{{ t('CONVERSATION.RATING_TITLE') }}
|
{{ t('CONVERSATION.RATING_TITLE') }}
|
||||||
</dt>
|
</dt>
|
||||||
<dd v-if="!isStarRating">
|
<dd>{{ t(rating.translationKey) }}</dd>
|
||||||
{{ t(rating.translationKey) }}
|
|
||||||
</dd>
|
|
||||||
<dd v-else class="flex mt-1">
|
|
||||||
<span v-for="n in 5" :key="n" class="text-2xl mr-1">
|
|
||||||
<i
|
|
||||||
:class="[
|
|
||||||
n <= starRatingValue
|
|
||||||
? 'i-ri-star-fill text-n-amber-9'
|
|
||||||
: 'i-ri-star-line text-n-slate-10',
|
|
||||||
]"
|
|
||||||
/>
|
|
||||||
</span>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt v-if="response.feedbackMessage" class="text-n-slate-11 italic mt-2">
|
<dt v-if="response.feedbackMessage" class="text-n-slate-11 italic mt-2">
|
||||||
{{ t('CONVERSATION.FEEDBACK_TITLE') }}
|
{{ t('CONVERSATION.FEEDBACK_TITLE') }}
|
||||||
|
|||||||
@@ -9,11 +9,9 @@ import BaseBubble from 'next/message/bubbles/Base.vue';
|
|||||||
import FormattedContent from 'next/message/bubbles/Text/FormattedContent.vue';
|
import FormattedContent from 'next/message/bubbles/Text/FormattedContent.vue';
|
||||||
import AttachmentChips from 'next/message/chips/AttachmentChips.vue';
|
import AttachmentChips from 'next/message/chips/AttachmentChips.vue';
|
||||||
import EmailMeta from './EmailMeta.vue';
|
import EmailMeta from './EmailMeta.vue';
|
||||||
import TranslationToggle from 'dashboard/components-next/message/TranslationToggle.vue';
|
|
||||||
|
|
||||||
import { useMessageContext } from '../../provider.js';
|
import { useMessageContext } from '../../provider.js';
|
||||||
import { MESSAGE_TYPES } from 'next/message/constants.js';
|
import { MESSAGE_TYPES } from 'next/message/constants.js';
|
||||||
import { useTranslations } from 'dashboard/composables/useTranslations';
|
|
||||||
|
|
||||||
const { content, contentAttributes, attachments, messageType } =
|
const { content, contentAttributes, attachments, messageType } =
|
||||||
useMessageContext();
|
useMessageContext();
|
||||||
@@ -21,77 +19,35 @@ const { content, contentAttributes, attachments, messageType } =
|
|||||||
const isExpandable = ref(false);
|
const isExpandable = ref(false);
|
||||||
const isExpanded = ref(false);
|
const isExpanded = ref(false);
|
||||||
const showQuotedMessage = ref(false);
|
const showQuotedMessage = ref(false);
|
||||||
const renderOriginal = ref(false);
|
|
||||||
const contentContainer = useTemplateRef('contentContainer');
|
const contentContainer = useTemplateRef('contentContainer');
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
isExpandable.value = contentContainer.value?.scrollHeight > 400;
|
isExpandable.value = contentContainer.value?.scrollHeight > 400;
|
||||||
});
|
});
|
||||||
|
|
||||||
const isOutgoing = computed(() => messageType.value === MESSAGE_TYPES.OUTGOING);
|
const isOutgoing = computed(() => {
|
||||||
|
return messageType.value === MESSAGE_TYPES.OUTGOING;
|
||||||
|
});
|
||||||
const isIncoming = computed(() => !isOutgoing.value);
|
const isIncoming = computed(() => !isOutgoing.value);
|
||||||
|
|
||||||
const { hasTranslations, translationContent } =
|
const textToShow = computed(() => {
|
||||||
useTranslations(contentAttributes);
|
|
||||||
|
|
||||||
const originalEmailText = computed(() => {
|
|
||||||
const text =
|
const text =
|
||||||
contentAttributes?.value?.email?.textContent?.full ?? content.value;
|
contentAttributes?.value?.email?.textContent?.full ?? content.value;
|
||||||
return text?.replace(/\n/g, '<br>');
|
return text?.replace(/\n/g, '<br>');
|
||||||
});
|
});
|
||||||
|
|
||||||
const originalEmailHtml = computed(
|
// Use TextContent as the default to fullHTML
|
||||||
() =>
|
|
||||||
contentAttributes?.value?.email?.htmlContent?.full ??
|
|
||||||
originalEmailText.value
|
|
||||||
);
|
|
||||||
|
|
||||||
const messageContent = computed(() => {
|
|
||||||
// If translations exist and we're showing translations (not original)
|
|
||||||
if (hasTranslations.value && !renderOriginal.value) {
|
|
||||||
return translationContent.value;
|
|
||||||
}
|
|
||||||
// Otherwise show original content
|
|
||||||
return content.value;
|
|
||||||
});
|
|
||||||
|
|
||||||
const textToShow = computed(() => {
|
|
||||||
// If translations exist and we're showing translations (not original)
|
|
||||||
if (hasTranslations.value && !renderOriginal.value) {
|
|
||||||
return translationContent.value;
|
|
||||||
}
|
|
||||||
// Otherwise show original text
|
|
||||||
return originalEmailText.value;
|
|
||||||
});
|
|
||||||
|
|
||||||
const fullHTML = computed(() => {
|
const fullHTML = computed(() => {
|
||||||
// If translations exist and we're showing translations (not original)
|
return contentAttributes?.value?.email?.htmlContent?.full ?? textToShow.value;
|
||||||
if (hasTranslations.value && !renderOriginal.value) {
|
|
||||||
return translationContent.value;
|
|
||||||
}
|
|
||||||
// Otherwise show original HTML
|
|
||||||
return originalEmailHtml.value;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const unquotedHTML = computed(() =>
|
const unquotedHTML = computed(() => {
|
||||||
EmailQuoteExtractor.extractQuotes(fullHTML.value)
|
return EmailQuoteExtractor.extractQuotes(fullHTML.value);
|
||||||
);
|
|
||||||
|
|
||||||
const hasQuotedMessage = computed(() =>
|
|
||||||
EmailQuoteExtractor.hasQuotes(fullHTML.value)
|
|
||||||
);
|
|
||||||
|
|
||||||
// Ensure unique keys for <Letter> when toggling between original and translated views.
|
|
||||||
// This forces Vue to re-render the component and update content correctly.
|
|
||||||
const translationKeySuffix = computed(() => {
|
|
||||||
if (renderOriginal.value) return 'original';
|
|
||||||
if (hasTranslations.value) return 'translated';
|
|
||||||
return 'original';
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const handleSeeOriginal = () => {
|
const hasQuotedMessage = computed(() => {
|
||||||
renderOriginal.value = !renderOriginal.value;
|
return EmailQuoteExtractor.hasQuotes(fullHTML.value);
|
||||||
};
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@@ -119,7 +75,7 @@ const handleSeeOriginal = () => {
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-if="isExpandable && !isExpanded"
|
v-if="isExpandable && !isExpanded"
|
||||||
class="absolute left-0 right-0 bottom-0 h-40 px-8 flex items-end bg-gradient-to-t from-n-slate-4 via-n-slate-4 via-20% to-transparent"
|
class="absolute left-0 right-0 bottom-0 h-40 px-8 flex items-end bg-gradient-to-t from-n-gray-3 via-n-gray-3 via-20% to-transparent"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
class="text-n-slate-12 py-2 px-8 mx-auto text-center flex items-center gap-2"
|
class="text-n-slate-12 py-2 px-8 mx-auto text-center flex items-center gap-2"
|
||||||
@@ -132,12 +88,11 @@ const handleSeeOriginal = () => {
|
|||||||
<FormattedContent
|
<FormattedContent
|
||||||
v-if="isOutgoing && content"
|
v-if="isOutgoing && content"
|
||||||
class="text-n-slate-12"
|
class="text-n-slate-12"
|
||||||
:content="messageContent"
|
:content="content"
|
||||||
/>
|
/>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<Letter
|
<Letter
|
||||||
v-if="showQuotedMessage"
|
v-if="showQuotedMessage"
|
||||||
:key="`letter-quoted-${translationKeySuffix}`"
|
|
||||||
class-name="prose prose-bubble !max-w-none letter-render"
|
class-name="prose prose-bubble !max-w-none letter-render"
|
||||||
:allowed-css-properties="[
|
:allowed-css-properties="[
|
||||||
...allowedCssProperties,
|
...allowedCssProperties,
|
||||||
@@ -149,7 +104,6 @@ const handleSeeOriginal = () => {
|
|||||||
/>
|
/>
|
||||||
<Letter
|
<Letter
|
||||||
v-else
|
v-else
|
||||||
:key="`letter-unquoted-${translationKeySuffix}`"
|
|
||||||
class-name="prose prose-bubble !max-w-none letter-render"
|
class-name="prose prose-bubble !max-w-none letter-render"
|
||||||
:html="unquotedHTML"
|
:html="unquotedHTML"
|
||||||
:allowed-css-properties="[
|
:allowed-css-properties="[
|
||||||
@@ -181,12 +135,6 @@ const handleSeeOriginal = () => {
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<TranslationToggle
|
|
||||||
v-if="hasTranslations"
|
|
||||||
class="py-2 px-3"
|
|
||||||
:showing-original="renderOriginal"
|
|
||||||
@toggle="handleSeeOriginal"
|
|
||||||
/>
|
|
||||||
<section
|
<section
|
||||||
v-if="Array.isArray(attachments) && attachments.length"
|
v-if="Array.isArray(attachments) && attachments.length"
|
||||||
class="px-4 pb-4 space-y-2"
|
class="px-4 pb-4 space-y-2"
|
||||||
|
|||||||
@@ -3,16 +3,16 @@ import { computed, ref } from 'vue';
|
|||||||
import BaseBubble from 'next/message/bubbles/Base.vue';
|
import BaseBubble from 'next/message/bubbles/Base.vue';
|
||||||
import FormattedContent from './FormattedContent.vue';
|
import FormattedContent from './FormattedContent.vue';
|
||||||
import AttachmentChips from 'next/message/chips/AttachmentChips.vue';
|
import AttachmentChips from 'next/message/chips/AttachmentChips.vue';
|
||||||
import TranslationToggle from 'dashboard/components-next/message/TranslationToggle.vue';
|
|
||||||
import { MESSAGE_TYPES } from '../../constants';
|
import { MESSAGE_TYPES } from '../../constants';
|
||||||
import { useMessageContext } from '../../provider.js';
|
import { useMessageContext } from '../../provider.js';
|
||||||
import { useTranslations } from 'dashboard/composables/useTranslations';
|
|
||||||
|
|
||||||
const { content, attachments, contentAttributes, messageType } =
|
const { content, attachments, contentAttributes, messageType } =
|
||||||
useMessageContext();
|
useMessageContext();
|
||||||
|
|
||||||
const { hasTranslations, translationContent } =
|
const hasTranslations = computed(() => {
|
||||||
useTranslations(contentAttributes);
|
const { translations = {} } = contentAttributes.value;
|
||||||
|
return Object.keys(translations || {}).length > 0;
|
||||||
|
});
|
||||||
|
|
||||||
const renderOriginal = ref(false);
|
const renderOriginal = ref(false);
|
||||||
|
|
||||||
@@ -22,7 +22,8 @@ const renderContent = computed(() => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (hasTranslations.value) {
|
if (hasTranslations.value) {
|
||||||
return translationContent.value;
|
const translations = contentAttributes.value.translations;
|
||||||
|
return translations[Object.keys(translations)[0]];
|
||||||
}
|
}
|
||||||
|
|
||||||
return content.value;
|
return content.value;
|
||||||
@@ -36,6 +37,12 @@ const isEmpty = computed(() => {
|
|||||||
return !content.value && !attachments.value?.length;
|
return !content.value && !attachments.value?.length;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const viewToggleKey = computed(() => {
|
||||||
|
return renderOriginal.value
|
||||||
|
? 'CONVERSATION.VIEW_TRANSLATED'
|
||||||
|
: 'CONVERSATION.VIEW_ORIGINAL';
|
||||||
|
});
|
||||||
|
|
||||||
const handleSeeOriginal = () => {
|
const handleSeeOriginal = () => {
|
||||||
renderOriginal.value = !renderOriginal.value;
|
renderOriginal.value = !renderOriginal.value;
|
||||||
};
|
};
|
||||||
@@ -48,12 +55,15 @@ const handleSeeOriginal = () => {
|
|||||||
{{ $t('CONVERSATION.NO_CONTENT') }}
|
{{ $t('CONVERSATION.NO_CONTENT') }}
|
||||||
</span>
|
</span>
|
||||||
<FormattedContent v-if="renderContent" :content="renderContent" />
|
<FormattedContent v-if="renderContent" :content="renderContent" />
|
||||||
<TranslationToggle
|
<span class="-mt-3">
|
||||||
v-if="hasTranslations"
|
<span
|
||||||
class="-mt-3"
|
v-if="hasTranslations"
|
||||||
:showing-original="renderOriginal"
|
class="text-xs text-n-slate-11 cursor-pointer hover:underline"
|
||||||
@toggle="handleSeeOriginal"
|
@click="handleSeeOriginal"
|
||||||
/>
|
>
|
||||||
|
{{ $t(viewToggleKey) }}
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
<AttachmentChips :attachments="attachments" class="gap-2" />
|
<AttachmentChips :attachments="attachments" class="gap-2" />
|
||||||
<template v-if="isTemplate">
|
<template v-if="isTemplate">
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ const textColorClass = computed(() => {
|
|||||||
docx: 'dark:text-[#D6E1FF] text-[#1F2D5C]', // indigo-12
|
docx: 'dark:text-[#D6E1FF] text-[#1F2D5C]', // indigo-12
|
||||||
json: 'text-n-slate-12',
|
json: 'text-n-slate-12',
|
||||||
odt: 'dark:text-[#D6E1FF] text-[#1F2D5C]', // indigo-12
|
odt: 'dark:text-[#D6E1FF] text-[#1F2D5C]', // indigo-12
|
||||||
pdf: 'text-n-slate-12',
|
pdf: 'text-n-ruby-12',
|
||||||
ppt: 'dark:text-[#FFE0C2] text-[#582D1D]',
|
ppt: 'dark:text-[#FFE0C2] text-[#582D1D]',
|
||||||
pptx: 'dark:text-[#FFE0C2] text-[#582D1D]',
|
pptx: 'dark:text-[#FFE0C2] text-[#582D1D]',
|
||||||
rar: 'dark:text-[#EDEEF0] text-[#2F265F]',
|
rar: 'dark:text-[#EDEEF0] text-[#2F265F]',
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ export const SENDER_TYPES = {
|
|||||||
CONTACT: 'Contact',
|
CONTACT: 'Contact',
|
||||||
USER: 'User',
|
USER: 'User',
|
||||||
AGENT_BOT: 'agent_bot',
|
AGENT_BOT: 'agent_bot',
|
||||||
CAPTAIN_ASSISTANT: 'captain_assistant',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ORIENTATION = {
|
export const ORIENTATION = {
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ const MessageControl = Symbol('MessageControl');
|
|||||||
* @property {import('vue').Ref<Sender|null>} [sender=null] - The sender information
|
* @property {import('vue').Ref<Sender|null>} [sender=null] - The sender information
|
||||||
* @property {import('vue').ComputedRef<MessageOrientation>} orientation - The visual variant of the message
|
* @property {import('vue').ComputedRef<MessageOrientation>} orientation - The visual variant of the message
|
||||||
* @property {import('vue').ComputedRef<MessageVariant>} variant - The visual variant of the message
|
* @property {import('vue').ComputedRef<MessageVariant>} variant - The visual variant of the message
|
||||||
* @property {import('vue').ComputedRef<boolean>} isBotOrAgentMessage - Does the message belong to the current user
|
* @property {import('vue').ComputedRef<boolean>} isMyMessage - Does the message belong to the current user
|
||||||
* @property {import('vue').ComputedRef<boolean>} isPrivate - Proxy computed value for private
|
* @property {import('vue').ComputedRef<boolean>} isPrivate - Proxy computed value for private
|
||||||
* @property {import('vue').ComputedRef<boolean>} shouldGroupWithNext - Should group with the next message or not, it is differnt from groupWithNext, this has a bypass for a failed message
|
* @property {import('vue').ComputedRef<boolean>} shouldGroupWithNext - Should group with the next message or not, it is differnt from groupWithNext, this has a bypass for a failed message
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -185,7 +185,6 @@ watch(
|
|||||||
"
|
"
|
||||||
trailing-icon
|
trailing-icon
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
type="button"
|
|
||||||
class="!h-[1.875rem] top-1 ltr:ml-px rtl:mr-px !px-2 outline-0 !outline-none !rounded-lg border-0 ltr:!rounded-r-none rtl:!rounded-l-none"
|
class="!h-[1.875rem] top-1 ltr:ml-px rtl:mr-px !px-2 outline-0 !outline-none !rounded-lg border-0 ltr:!rounded-r-none rtl:!rounded-l-none"
|
||||||
@click="toggleCountryDropdown"
|
@click="toggleCountryDropdown"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -15,13 +15,6 @@ const props = defineProps({
|
|||||||
type: String,
|
type: String,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
subMenuPosition: {
|
|
||||||
type: String,
|
|
||||||
default: 'right',
|
|
||||||
validator: value => {
|
|
||||||
return ['right', 'left', 'bottom'].includes(value);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['update:modelValue']);
|
const emit = defineEmits(['update:modelValue']);
|
||||||
@@ -51,21 +44,14 @@ const handleSelect = value => {
|
|||||||
trailing-icon
|
trailing-icon
|
||||||
color="slate"
|
color="slate"
|
||||||
variant="faded"
|
variant="faded"
|
||||||
class="!w-fit max-w-40"
|
class="!w-fit"
|
||||||
:class="{ 'dark:!bg-n-alpha-2 !bg-n-slate-9/20': isOpen }"
|
:class="{ 'dark:!bg-n-alpha-2 !bg-n-slate-9/20': isOpen }"
|
||||||
:label="labelValue"
|
:label="labelValue"
|
||||||
@click="toggleMenu"
|
@click="toggleMenu"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
v-if="isOpen"
|
v-if="isOpen"
|
||||||
class="absolute select-none max-w-64 flex flex-col gap-1 bg-n-alpha-3 backdrop-blur-[100px] p-1 top-0 shadow-lg z-40 rounded-lg border border-n-weak dark:border-n-strong/50"
|
class="absolute ltr:left-full rtl:right-full select-none max-w-48 ltr:ml-1 rtl:mr-1 flex flex-col gap-1 bg-n-alpha-3 backdrop-blur-[100px] p-1 top-0 shadow-lg rounded-lg border border-n-weak"
|
||||||
:class="{
|
|
||||||
'ltr:left-full rtl:right-full ltr:ml-1 rtl:mr-1':
|
|
||||||
subMenuPosition === 'right',
|
|
||||||
'ltr:right-full rtl:left-full ltr:mr-1 rtl:ml-1':
|
|
||||||
subMenuPosition === 'left',
|
|
||||||
'top-full mt-1 ltr:right-0 rtl:left-0': subMenuPosition === 'bottom',
|
|
||||||
}"
|
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
v-for="option in options"
|
v-for="option in options"
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import { useStore } from 'vuex';
|
|||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useStorage } from '@vueuse/core';
|
import { useStorage } from '@vueuse/core';
|
||||||
import { useSidebarKeyboardShortcuts } from './useSidebarKeyboardShortcuts';
|
import { useSidebarKeyboardShortcuts } from './useSidebarKeyboardShortcuts';
|
||||||
|
import { FEATURE_FLAGS } from 'dashboard/featureFlags';
|
||||||
|
|
||||||
import Button from 'dashboard/components-next/button/Button.vue';
|
import Button from 'dashboard/components-next/button/Button.vue';
|
||||||
import SidebarGroup from './SidebarGroup.vue';
|
import SidebarGroup from './SidebarGroup.vue';
|
||||||
@@ -36,6 +37,18 @@ const toggleShortcutModalFn = show => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const currentAccountId = useMapGetter('getCurrentAccountId');
|
||||||
|
const isFeatureEnabledonAccount = useMapGetter(
|
||||||
|
'accounts/isFeatureEnabledonAccount'
|
||||||
|
);
|
||||||
|
|
||||||
|
const showV4Routes = computed(() => {
|
||||||
|
return isFeatureEnabledonAccount.value(
|
||||||
|
currentAccountId.value,
|
||||||
|
FEATURE_FLAGS.REPORT_V4
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
useSidebarKeyboardShortcuts(toggleShortcutModalFn);
|
useSidebarKeyboardShortcuts(toggleShortcutModalFn);
|
||||||
|
|
||||||
// We're using localStorage to store the expanded item in the sidebar
|
// We're using localStorage to store the expanded item in the sidebar
|
||||||
@@ -103,7 +116,32 @@ const newReportRoutes = () => [
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const reportRoutes = computed(() => newReportRoutes());
|
const oldReportRoutes = () => [
|
||||||
|
{
|
||||||
|
name: 'Reports Agent',
|
||||||
|
label: t('SIDEBAR.REPORTS_AGENT'),
|
||||||
|
to: accountScopedRoute('agent_reports'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Reports Label',
|
||||||
|
label: t('SIDEBAR.REPORTS_LABEL'),
|
||||||
|
to: accountScopedRoute('label_reports'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Reports Inbox',
|
||||||
|
label: t('SIDEBAR.REPORTS_INBOX'),
|
||||||
|
to: accountScopedRoute('inbox_reports'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Reports Team',
|
||||||
|
label: t('SIDEBAR.REPORTS_TEAM'),
|
||||||
|
to: accountScopedRoute('team_reports'),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const reportRoutes = computed(() =>
|
||||||
|
showV4Routes.value ? newReportRoutes() : oldReportRoutes()
|
||||||
|
);
|
||||||
|
|
||||||
const menuItems = computed(() => {
|
const menuItems = computed(() => {
|
||||||
return [
|
return [
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import { useMapGetter, useStore } from 'dashboard/composables/store';
|
|||||||
import wootConstants from 'dashboard/constants/globals';
|
import wootConstants from 'dashboard/constants/globals';
|
||||||
import { useAlert } from 'dashboard/composables';
|
import { useAlert } from 'dashboard/composables';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useImpersonation } from 'dashboard/composables/useImpersonation';
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
DropdownContainer,
|
DropdownContainer,
|
||||||
@@ -21,8 +20,6 @@ const currentUserAvailability = useMapGetter('getCurrentUserAvailability');
|
|||||||
const currentAccountId = useMapGetter('getCurrentAccountId');
|
const currentAccountId = useMapGetter('getCurrentAccountId');
|
||||||
const currentUserAutoOffline = useMapGetter('getCurrentUserAutoOffline');
|
const currentUserAutoOffline = useMapGetter('getCurrentUserAutoOffline');
|
||||||
|
|
||||||
const { isImpersonating } = useImpersonation();
|
|
||||||
|
|
||||||
const { AVAILABILITY_STATUS_KEYS } = wootConstants;
|
const { AVAILABILITY_STATUS_KEYS } = wootConstants;
|
||||||
const statusList = computed(() => {
|
const statusList = computed(() => {
|
||||||
return [
|
return [
|
||||||
@@ -49,10 +46,6 @@ const activeStatus = computed(() => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
function changeAvailabilityStatus(availability) {
|
function changeAvailabilityStatus(availability) {
|
||||||
if (isImpersonating.value) {
|
|
||||||
useAlert(t('PROFILE_SETTINGS.FORM.AVAILABILITY.IMPERSONATING_ERROR'));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
store.dispatch('updateAvailability', {
|
store.dispatch('updateAvailability', {
|
||||||
availability,
|
availability,
|
||||||
|
|||||||
@@ -27,10 +27,10 @@ const updateValue = () => {
|
|||||||
>
|
>
|
||||||
<span class="sr-only">{{ t('SWITCH.TOGGLE') }}</span>
|
<span class="sr-only">{{ t('SWITCH.TOGGLE') }}</span>
|
||||||
<span
|
<span
|
||||||
class="absolute top-0.5 left-0.5 h-3 w-3 transform rounded-full shadow-sm transition-transform duration-200 ease-in-out"
|
class="absolute top-[0.07rem] left-0.5 h-3 w-3 transform rounded-full shadow-sm transition-transform duration-200 ease-in-out"
|
||||||
:class="
|
:class="
|
||||||
modelValue
|
modelValue
|
||||||
? 'translate-x-3 bg-white'
|
? 'translate-x-2.5 bg-white'
|
||||||
: 'translate-x-0 bg-white dark:bg-n-black'
|
: 'translate-x-0 bg-white dark:bg-n-black'
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ import {
|
|||||||
computed,
|
computed,
|
||||||
watch,
|
watch,
|
||||||
onMounted,
|
onMounted,
|
||||||
onUnmounted,
|
|
||||||
defineEmits,
|
defineEmits,
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
import { useStore } from 'vuex';
|
import { useStore } from 'vuex';
|
||||||
@@ -30,7 +29,6 @@ import ConversationItem from './ConversationItem.vue';
|
|||||||
import DeleteCustomViews from 'dashboard/routes/dashboard/customviews/DeleteCustomViews.vue';
|
import DeleteCustomViews from 'dashboard/routes/dashboard/customviews/DeleteCustomViews.vue';
|
||||||
import ConversationBulkActions from './widgets/conversation/conversationBulkActions/Index.vue';
|
import ConversationBulkActions from './widgets/conversation/conversationBulkActions/Index.vue';
|
||||||
import IntersectionObserver from './IntersectionObserver.vue';
|
import IntersectionObserver from './IntersectionObserver.vue';
|
||||||
import TeleportWithDirection from 'dashboard/components-next/TeleportWithDirection.vue';
|
|
||||||
|
|
||||||
import { useUISettings } from 'dashboard/composables/useUISettings';
|
import { useUISettings } from 'dashboard/composables/useUISettings';
|
||||||
import { useAlert } from 'dashboard/composables';
|
import { useAlert } from 'dashboard/composables';
|
||||||
@@ -44,7 +42,7 @@ import {
|
|||||||
useSnakeCase,
|
useSnakeCase,
|
||||||
} from 'dashboard/composables/useTransformKeys';
|
} from 'dashboard/composables/useTransformKeys';
|
||||||
import { useEmitter } from 'dashboard/composables/emitter';
|
import { useEmitter } from 'dashboard/composables/emitter';
|
||||||
import { useEventListener, useScrollLock } from '@vueuse/core';
|
import { useEventListener } from '@vueuse/core';
|
||||||
|
|
||||||
import { emitter } from 'shared/helpers/mitt';
|
import { emitter } from 'shared/helpers/mitt';
|
||||||
|
|
||||||
@@ -87,12 +85,6 @@ const store = useStore();
|
|||||||
|
|
||||||
const conversationListRef = ref(null);
|
const conversationListRef = ref(null);
|
||||||
const conversationDynamicScroller = ref(null);
|
const conversationDynamicScroller = ref(null);
|
||||||
const conversationListScrollableElement = computed(
|
|
||||||
() => conversationDynamicScroller.value?.$el
|
|
||||||
);
|
|
||||||
const conversationListScrollLock = useScrollLock(
|
|
||||||
conversationListScrollableElement
|
|
||||||
);
|
|
||||||
|
|
||||||
const activeAssigneeTab = ref(wootConstants.ASSIGNEE_TYPE.ME);
|
const activeAssigneeTab = ref(wootConstants.ASSIGNEE_TYPE.ME);
|
||||||
const activeStatus = ref(wootConstants.STATUS_TYPE.OPEN);
|
const activeStatus = ref(wootConstants.STATUS_TYPE.OPEN);
|
||||||
@@ -746,7 +738,6 @@ function allSelectedConversationsStatus(status) {
|
|||||||
|
|
||||||
function onContextMenuToggle(state) {
|
function onContextMenuToggle(state) {
|
||||||
isContextMenuOpen.value = state;
|
isContextMenuOpen.value = state;
|
||||||
conversationListScrollLock.value = state;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleSelectAll(check) {
|
function toggleSelectAll(check) {
|
||||||
@@ -770,10 +761,6 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
onUnmounted(() => {
|
|
||||||
conversationListScrollLock.value = false;
|
|
||||||
});
|
|
||||||
|
|
||||||
provide('selectConversation', selectConversation);
|
provide('selectConversation', selectConversation);
|
||||||
provide('deSelectConversation', deSelectConversation);
|
provide('deSelectConversation', deSelectConversation);
|
||||||
provide('assignAgent', onAssignAgent);
|
provide('assignAgent', onAssignAgent);
|
||||||
@@ -841,17 +828,14 @@ watch(conversationFilters, (newVal, oldVal) => {
|
|||||||
@basic-filter-change="onBasicFilterChange"
|
@basic-filter-change="onBasicFilterChange"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<TeleportWithDirection
|
<Teleport v-if="showAddFoldersModal" to="#saveFilterTeleportTarget">
|
||||||
v-if="showAddFoldersModal"
|
|
||||||
to="#saveFilterTeleportTarget"
|
|
||||||
>
|
|
||||||
<SaveCustomView
|
<SaveCustomView
|
||||||
v-model="appliedFilter"
|
v-model="appliedFilter"
|
||||||
:custom-views-query="foldersQuery"
|
:custom-views-query="foldersQuery"
|
||||||
:open-last-saved-item="openLastSavedItemInFolder"
|
:open-last-saved-item="openLastSavedItemInFolder"
|
||||||
@close="onCloseAddFoldersModal"
|
@close="onCloseAddFoldersModal"
|
||||||
/>
|
/>
|
||||||
</TeleportWithDirection>
|
</Teleport>
|
||||||
|
|
||||||
<DeleteCustomViews
|
<DeleteCustomViews
|
||||||
v-if="showDeleteFoldersModal"
|
v-if="showDeleteFoldersModal"
|
||||||
@@ -948,10 +932,7 @@ watch(conversationFilters, (newVal, oldVal) => {
|
|||||||
</template>
|
</template>
|
||||||
</DynamicScroller>
|
</DynamicScroller>
|
||||||
</div>
|
</div>
|
||||||
<TeleportWithDirection
|
<Teleport v-if="showAdvancedFilters" to="#conversationFilterTeleportTarget">
|
||||||
v-if="showAdvancedFilters"
|
|
||||||
to="#conversationFilterTeleportTarget"
|
|
||||||
>
|
|
||||||
<ConversationFilter
|
<ConversationFilter
|
||||||
v-model="appliedFilter"
|
v-model="appliedFilter"
|
||||||
:folder-name="activeFolderName"
|
:folder-name="activeFolderName"
|
||||||
@@ -960,6 +941,6 @@ watch(conversationFilters, (newVal, oldVal) => {
|
|||||||
@update-folder="onUpdateSavedFilter"
|
@update-folder="onUpdateSavedFilter"
|
||||||
@close="closeAdvanceFiltersModal"
|
@close="closeAdvanceFiltersModal"
|
||||||
/>
|
/>
|
||||||
</TeleportWithDirection>
|
</Teleport>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -49,12 +49,12 @@ export default {
|
|||||||
if (this.isAttributeTypeDate) {
|
if (this.isAttributeTypeDate) {
|
||||||
return this.value
|
return this.value
|
||||||
? new Date(this.value || new Date()).toLocaleDateString()
|
? new Date(this.value || new Date()).toLocaleDateString()
|
||||||
: '---';
|
: '';
|
||||||
}
|
}
|
||||||
if (this.isAttributeTypeCheckbox) {
|
if (this.isAttributeTypeCheckbox) {
|
||||||
return this.value === 'false' ? false : this.value;
|
return this.value === 'false' ? false : this.value;
|
||||||
}
|
}
|
||||||
return this.hasValue ? this.value : '---';
|
return this.value;
|
||||||
},
|
},
|
||||||
formattedValue() {
|
formattedValue() {
|
||||||
return this.isAttributeTypeDate
|
return this.isAttributeTypeDate
|
||||||
@@ -83,9 +83,6 @@ export default {
|
|||||||
isAttributeTypeDate() {
|
isAttributeTypeDate() {
|
||||||
return this.attributeType === 'date';
|
return this.attributeType === 'date';
|
||||||
},
|
},
|
||||||
hasValue() {
|
|
||||||
return this.value !== null && this.value !== '';
|
|
||||||
},
|
|
||||||
urlValue() {
|
urlValue() {
|
||||||
return isValidURL(this.value) ? this.value : '---';
|
return isValidURL(this.value) ? this.value : '---';
|
||||||
},
|
},
|
||||||
@@ -226,7 +223,7 @@ export default {
|
|||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
<NextButton
|
<NextButton
|
||||||
v-if="showActions && hasValue"
|
v-if="showActions && value"
|
||||||
v-tooltip.left="$t('CUSTOM_ATTRIBUTES.ACTIONS.DELETE')"
|
v-tooltip.left="$t('CUSTOM_ATTRIBUTES.ACTIONS.DELETE')"
|
||||||
slate
|
slate
|
||||||
sm
|
sm
|
||||||
@@ -284,13 +281,13 @@ export default {
|
|||||||
v-else
|
v-else
|
||||||
class="group-hover:bg-n-slate-3 group-hover:dark:bg-n-solid-3 inline-block rounded-sm mb-0 break-all py-0.5 px-1"
|
class="group-hover:bg-n-slate-3 group-hover:dark:bg-n-solid-3 inline-block rounded-sm mb-0 break-all py-0.5 px-1"
|
||||||
>
|
>
|
||||||
{{ displayValue }}
|
{{ displayValue || '---' }}
|
||||||
</p>
|
</p>
|
||||||
<div
|
<div
|
||||||
class="flex items-center max-w-[2rem] gap-1 ml-1 rtl:mr-1 rtl:ml-0"
|
class="flex items-center max-w-[2rem] gap-1 ml-1 rtl:mr-1 rtl:ml-0"
|
||||||
>
|
>
|
||||||
<NextButton
|
<NextButton
|
||||||
v-if="showActions && hasValue"
|
v-if="showActions && value"
|
||||||
v-tooltip="$t('CUSTOM_ATTRIBUTES.ACTIONS.COPY')"
|
v-tooltip="$t('CUSTOM_ATTRIBUTES.ACTIONS.COPY')"
|
||||||
xs
|
xs
|
||||||
slate
|
slate
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import { useAlert } from 'dashboard/composables';
|
import { useAlert } from 'dashboard/composables';
|
||||||
import { useImpersonation } from 'dashboard/composables/useImpersonation';
|
|
||||||
import WootDropdownItem from 'shared/components/ui/dropdown/DropdownItem.vue';
|
import WootDropdownItem from 'shared/components/ui/dropdown/DropdownItem.vue';
|
||||||
import WootDropdownMenu from 'shared/components/ui/dropdown/DropdownMenu.vue';
|
import WootDropdownMenu from 'shared/components/ui/dropdown/DropdownMenu.vue';
|
||||||
import WootDropdownHeader from 'shared/components/ui/dropdown/DropdownHeader.vue';
|
import WootDropdownHeader from 'shared/components/ui/dropdown/DropdownHeader.vue';
|
||||||
@@ -21,10 +20,6 @@ export default {
|
|||||||
AvailabilityStatusBadge,
|
AvailabilityStatusBadge,
|
||||||
NextButton,
|
NextButton,
|
||||||
},
|
},
|
||||||
setup() {
|
|
||||||
const { isImpersonating } = useImpersonation();
|
|
||||||
return { isImpersonating };
|
|
||||||
},
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isStatusMenuOpened: false,
|
isStatusMenuOpened: false,
|
||||||
@@ -78,13 +73,6 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
changeAvailabilityStatus(availability) {
|
changeAvailabilityStatus(availability) {
|
||||||
if (this.isImpersonating) {
|
|
||||||
useAlert(
|
|
||||||
this.$t('PROFILE_SETTINGS.FORM.AVAILABILITY.IMPERSONATING_ERROR')
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.isUpdating) {
|
if (this.isUpdating) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -127,6 +127,7 @@ const settings = accountId => ({
|
|||||||
meta: {
|
meta: {
|
||||||
permissions: ['administrator'],
|
permissions: ['administrator'],
|
||||||
},
|
},
|
||||||
|
globalConfigFlag: 'csmlEditorHost',
|
||||||
toState: frontendURL(`accounts/${accountId}/settings/agent-bots`),
|
toState: frontendURL(`accounts/${accountId}/settings/agent-bots`),
|
||||||
toStateName: 'agent_bots',
|
toStateName: 'agent_bots',
|
||||||
featureFlag: FEATURE_FLAGS.AGENT_BOTS,
|
featureFlag: FEATURE_FLAGS.AGENT_BOTS,
|
||||||
|
|||||||
@@ -49,6 +49,13 @@ export default {
|
|||||||
return !!this.menuItem.children;
|
return !!this.menuItem.children;
|
||||||
},
|
},
|
||||||
isMenuItemVisible() {
|
isMenuItemVisible() {
|
||||||
|
if (this.menuItem.globalConfigFlag) {
|
||||||
|
// this checks for the `csmlEditorHost` flag in the global config
|
||||||
|
// if this is present, we toggle the CSML editor menu item
|
||||||
|
// TODO: This is very specific, and can be handled better, fix it
|
||||||
|
return !!this.globalConfig[this.menuItem.globalConfigFlag];
|
||||||
|
}
|
||||||
|
|
||||||
let isFeatureEnabled = true;
|
let isFeatureEnabled = true;
|
||||||
if (this.menuItem.featureFlag) {
|
if (this.menuItem.featureFlag) {
|
||||||
isFeatureEnabled = this.isFeatureEnabledonAccount(
|
isFeatureEnabled = this.isFeatureEnabledonAccount(
|
||||||
|
|||||||
@@ -2,8 +2,6 @@
|
|||||||
import { computed, onMounted, nextTick, useTemplateRef } from 'vue';
|
import { computed, onMounted, nextTick, useTemplateRef } from 'vue';
|
||||||
import { useWindowSize, useElementBounding } from '@vueuse/core';
|
import { useWindowSize, useElementBounding } from '@vueuse/core';
|
||||||
|
|
||||||
import TeleportWithDirection from 'dashboard/components-next/TeleportWithDirection.vue';
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
x: { type: Number, default: 0 },
|
x: { type: Number, default: 0 },
|
||||||
y: { type: Number, default: 0 },
|
y: { type: Number, default: 0 },
|
||||||
@@ -59,7 +57,7 @@ onMounted(() => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<TeleportWithDirection to="body">
|
<Teleport to="body">
|
||||||
<div
|
<div
|
||||||
ref="menuRef"
|
ref="menuRef"
|
||||||
class="fixed outline-none z-[9999] cursor-pointer"
|
class="fixed outline-none z-[9999] cursor-pointer"
|
||||||
@@ -69,5 +67,5 @@ onMounted(() => {
|
|||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
</TeleportWithDirection>
|
</Teleport>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -218,14 +218,14 @@ const emitDateRange = () => {
|
|||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
v-if="showDatePicker"
|
v-if="showDatePicker"
|
||||||
class="flex absolute top-9 ltr:left-0 rtl:right-0 z-30 shadow-md select-none w-[880px] h-[490px] rounded-2xl bg-n-alpha-3 backdrop-blur-[100px] border-0 outline outline-1 outline-n-container"
|
class="flex absolute top-9 ltr:left-0 rtl:right-0 z-30 shadow-md select-none w-[880px] h-[490px] rounded-2xl border border-slate-50 dark:border-slate-800 bg-white dark:bg-slate-800"
|
||||||
>
|
>
|
||||||
<CalendarDateRange
|
<CalendarDateRange
|
||||||
:selected-range="selectedRange"
|
:selected-range="selectedRange"
|
||||||
@set-range="setDateRange"
|
@set-range="setDateRange"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
class="flex flex-col w-[680px] ltr:border-l rtl:border-r border-n-strong"
|
class="flex flex-col w-[680px] ltr:border-l rtl:border-r border-slate-50 dark:border-slate-700/50"
|
||||||
>
|
>
|
||||||
<div class="flex justify-around h-fit">
|
<div class="flex justify-around h-fit">
|
||||||
<!-- Calendars for Start and End Dates -->
|
<!-- Calendars for Start and End Dates -->
|
||||||
@@ -251,12 +251,12 @@ const emitDateRange = () => {
|
|||||||
@validate="updateManualInput($event, calendar)"
|
@validate="updateManualInput($event, calendar)"
|
||||||
@error="handleManualInputError($event)"
|
@error="handleManualInputError($event)"
|
||||||
/>
|
/>
|
||||||
<div class="py-5 border-b border-n-strong">
|
<div class="py-5 border-b border-slate-50 dark:border-slate-700/50">
|
||||||
<div
|
<div
|
||||||
class="flex flex-col items-center gap-2 px-5 min-w-[340px] max-h-[352px]"
|
class="flex flex-col items-center gap-2 px-5 min-w-[340px] max-h-[352px]"
|
||||||
:class="
|
:class="
|
||||||
calendar === START_CALENDAR &&
|
calendar === START_CALENDAR &&
|
||||||
'ltr:border-r rtl:border-l border-n-strong'
|
'ltr:border-r rtl:border-l border-slate-50 dark:border-slate-700/50'
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<CalendarYear
|
<CalendarYear
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { CALENDAR_PERIODS } from '../helpers/DatePickerHelper';
|
import { CALENDAR_PERIODS } from '../helpers/DatePickerHelper';
|
||||||
|
|
||||||
import NextButton from 'dashboard/components-next/button/Button.vue';
|
|
||||||
|
|
||||||
defineProps({
|
defineProps({
|
||||||
calendarType: {
|
calendarType: {
|
||||||
type: String,
|
type: String,
|
||||||
@@ -40,38 +38,42 @@ const onClickSetView = (type, mode) => {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="flex items-start justify-between w-full h-9">
|
<div class="flex items-start justify-between w-full h-9">
|
||||||
<NextButton
|
<button
|
||||||
slate
|
class="p-1 rounded-lg hover:bg-slate-75 dark:hover:bg-slate-700/50 rtl:rotate-180"
|
||||||
ghost
|
|
||||||
xs
|
|
||||||
icon="i-lucide-chevron-left"
|
|
||||||
class="rtl:rotate-180"
|
|
||||||
@click="onClickPrev(calendarType)"
|
@click="onClickPrev(calendarType)"
|
||||||
/>
|
>
|
||||||
|
<fluent-icon
|
||||||
|
icon="chevron-left"
|
||||||
|
size="14"
|
||||||
|
class="text-slate-900 dark:text-slate-50"
|
||||||
|
/>
|
||||||
|
</button>
|
||||||
<div class="flex items-center gap-1">
|
<div class="flex items-center gap-1">
|
||||||
<button
|
<button
|
||||||
v-if="firstButtonLabel"
|
v-if="firstButtonLabel"
|
||||||
class="p-0 text-sm font-medium text-center text-n-slate-12 hover:text-n-brand"
|
class="p-0 text-sm font-medium text-center text-slate-800 dark:text-slate-50 hover:text-woot-600 dark:hover:text-woot-600"
|
||||||
@click="onClickSetView(calendarType, viewMode)"
|
@click="onClickSetView(calendarType, viewMode)"
|
||||||
>
|
>
|
||||||
{{ firstButtonLabel }}
|
{{ firstButtonLabel }}
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
v-if="buttonLabel"
|
v-if="buttonLabel"
|
||||||
class="p-0 text-sm font-medium text-center text-n-slate-12"
|
class="p-0 text-sm font-medium text-center text-slate-800 dark:text-slate-50"
|
||||||
:class="{ 'hover:text-n-brand': viewMode }"
|
:class="{ 'hover:text-woot-600 dark:hover:text-woot-600': viewMode }"
|
||||||
@click="onClickSetView(calendarType, YEAR)"
|
@click="onClickSetView(calendarType, YEAR)"
|
||||||
>
|
>
|
||||||
{{ buttonLabel }}
|
{{ buttonLabel }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<NextButton
|
<button
|
||||||
slate
|
class="p-1 rounded-lg hover:bg-slate-75 dark:hover:bg-slate-700/50 rtl:rotate-180"
|
||||||
ghost
|
|
||||||
xs
|
|
||||||
icon="i-lucide-chevron-right"
|
|
||||||
class="rtl:rotate-180"
|
|
||||||
@click="onClickNext(calendarType)"
|
@click="onClickNext(calendarType)"
|
||||||
/>
|
>
|
||||||
|
<fluent-icon
|
||||||
|
icon="chevron-right"
|
||||||
|
size="14"
|
||||||
|
class="text-slate-900 dark:text-slate-50"
|
||||||
|
/>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ const validateDate = () => {
|
|||||||
<input
|
<input
|
||||||
v-model="localDateValue"
|
v-model="localDateValue"
|
||||||
type="text"
|
type="text"
|
||||||
class="!text-sm !mb-0 disabled:!outline-n-strong"
|
class="reset-base border bg-slate-25 dark:bg-slate-900 ring-offset-ash-900 border-slate-50 dark:border-slate-700/50 w-full disabled:text-slate-200 dark:disabled:text-slate-700 disabled:cursor-not-allowed text-slate-800 dark:text-slate-50 px-1.5 py-1 text-sm rounded-xl h-10"
|
||||||
:placeholder="dateFormat"
|
:placeholder="dateFormat"
|
||||||
:disabled="isDisabled"
|
:disabled="isDisabled"
|
||||||
@keypress.enter="validateDate"
|
@keypress.enter="validateDate"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user