Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3b723ecccc | ||
|
|
168938500f | ||
|
|
2bb7d1e4b2 | ||
|
|
c5c3b74728 |
@@ -257,4 +257,3 @@ 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
|
||||||
|
|
||||||
|
|||||||
-154
@@ -27,160 +27,6 @@ module.exports = {
|
|||||||
'import/no-unresolved': 'off',
|
'import/no-unresolved': 'off',
|
||||||
'vue/html-indent': 'off',
|
'vue/html-indent': 'off',
|
||||||
'vue/multi-word-component-names': 'off',
|
'vue/multi-word-component-names': 'off',
|
||||||
'vue/next-tick-style': ['error', 'callback'],
|
|
||||||
'vue/block-order': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
order: ['script', 'template', 'style'],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/component-name-in-template-casing': [
|
|
||||||
'error',
|
|
||||||
'PascalCase',
|
|
||||||
{
|
|
||||||
registeredComponentsOnly: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/component-options-name-casing': ['error', 'PascalCase'],
|
|
||||||
'vue/custom-event-name-casing': ['error', 'camelCase'],
|
|
||||||
'vue/define-emits-declaration': ['error'],
|
|
||||||
'vue/define-macros-order': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
order: ['defineProps', 'defineEmits'],
|
|
||||||
defineExposeLast: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/define-props-declaration': ['error', 'runtime'],
|
|
||||||
'vue/match-component-import-name': ['error'],
|
|
||||||
'vue/no-bare-strings-in-template': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
allowlist: [
|
|
||||||
'(',
|
|
||||||
')',
|
|
||||||
',',
|
|
||||||
'.',
|
|
||||||
'&',
|
|
||||||
'+',
|
|
||||||
'-',
|
|
||||||
'=',
|
|
||||||
'*',
|
|
||||||
'/',
|
|
||||||
'#',
|
|
||||||
'%',
|
|
||||||
'!',
|
|
||||||
'?',
|
|
||||||
':',
|
|
||||||
'[',
|
|
||||||
']',
|
|
||||||
'{',
|
|
||||||
'}',
|
|
||||||
'<',
|
|
||||||
'>',
|
|
||||||
'⌘',
|
|
||||||
'📄',
|
|
||||||
'🎉',
|
|
||||||
'💬',
|
|
||||||
'👥',
|
|
||||||
'📥',
|
|
||||||
'🔖',
|
|
||||||
'❌',
|
|
||||||
'✅',
|
|
||||||
'\u00b7',
|
|
||||||
'\u2022',
|
|
||||||
'\u2010',
|
|
||||||
'\u2013',
|
|
||||||
'\u2014',
|
|
||||||
'\u2212',
|
|
||||||
'|',
|
|
||||||
],
|
|
||||||
attributes: {
|
|
||||||
'/.+/': [
|
|
||||||
'title',
|
|
||||||
'aria-label',
|
|
||||||
'aria-placeholder',
|
|
||||||
'aria-roledescription',
|
|
||||||
'aria-valuetext',
|
|
||||||
],
|
|
||||||
input: ['placeholder'],
|
|
||||||
},
|
|
||||||
directives: ['v-text'],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/no-empty-component-block': 'error',
|
|
||||||
'vue/no-multiple-objects-in-class': 'error',
|
|
||||||
'vue/no-root-v-if': 'warn',
|
|
||||||
'vue/no-static-inline-styles': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
allowBinding: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/no-template-target-blank': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
allowReferrer: false,
|
|
||||||
enforceDynamicLinks: 'always',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/no-required-prop-with-default': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
autofix: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/no-this-in-before-route-enter': 'error',
|
|
||||||
'vue/no-undef-components': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
ignorePatterns: [
|
|
||||||
'^woot-',
|
|
||||||
'^fluent-',
|
|
||||||
'^multiselect',
|
|
||||||
'^router-link',
|
|
||||||
'^router-view',
|
|
||||||
'^ninja-keys',
|
|
||||||
'^FormulateForm',
|
|
||||||
'^FormulateInput',
|
|
||||||
'^highlightjs',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/no-unused-emit-declarations': 'error',
|
|
||||||
'vue/no-unused-refs': 'error',
|
|
||||||
'vue/no-use-v-else-with-v-for': 'error',
|
|
||||||
'vue/prefer-true-attribute-shorthand': 'error',
|
|
||||||
'vue/no-useless-v-bind': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
ignoreIncludesComment: false,
|
|
||||||
ignoreStringEscape: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/no-v-text': 'error',
|
|
||||||
'vue/padding-line-between-blocks': ['error', 'always'],
|
|
||||||
'vue/prefer-separate-static-class': 'error',
|
|
||||||
'vue/require-explicit-slots': 'error',
|
|
||||||
'vue/require-macro-variable-name': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
defineProps: 'props',
|
|
||||||
defineEmits: 'emit',
|
|
||||||
defineSlots: 'slots',
|
|
||||||
useSlots: 'slots',
|
|
||||||
useAttrs: 'attrs',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/no-unused-properties': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
groups: ['props'],
|
|
||||||
deepData: false,
|
|
||||||
ignorePublicMembers: false,
|
|
||||||
unreferencedOptions: [],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'vue/max-attributes-per-line': [
|
'vue/max-attributes-per-line': [
|
||||||
'error',
|
'error',
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -25,5 +25,13 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
issue-inactive-days: '30'
|
issue-inactive-days: '30'
|
||||||
issue-lock-reason: 'resolved'
|
issue-lock-reason: 'resolved'
|
||||||
|
issue-comment: >
|
||||||
|
This issue has been automatically locked since there
|
||||||
|
has not been any recent activity after it was closed.
|
||||||
|
Please open a new issue for related bugs.
|
||||||
pr-inactive-days: '30'
|
pr-inactive-days: '30'
|
||||||
pr-lock-reason: 'resolved'
|
pr-lock-reason: 'resolved'
|
||||||
|
pr-comment: >
|
||||||
|
This pull request has been automatically locked since there
|
||||||
|
has not been any recent activity after it was closed.
|
||||||
|
Please open a new issue for related bugs.
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import { addDecorator } from '@storybook/vue';
|
|||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import Vuex from 'vuex';
|
import Vuex from 'vuex';
|
||||||
import VueI18n from 'vue-i18n';
|
import VueI18n from 'vue-i18n';
|
||||||
|
import Vuelidate from 'vuelidate';
|
||||||
import Multiselect from 'vue-multiselect';
|
import Multiselect from 'vue-multiselect';
|
||||||
import VueDOMPurifyHTML from 'vue-dompurify-html';
|
import VueDOMPurifyHTML from 'vue-dompurify-html';
|
||||||
import FluentIcon from 'shared/components/FluentIcon/DashboardIcon';
|
import FluentIcon from 'shared/components/FluentIcon/DashboardIcon';
|
||||||
@@ -13,6 +14,7 @@ import { domPurifyConfig } from 'shared/helpers/HTMLSanitizer';
|
|||||||
import '../app/javascript/dashboard/assets/scss/storybook.scss';
|
import '../app/javascript/dashboard/assets/scss/storybook.scss';
|
||||||
|
|
||||||
Vue.use(VueI18n);
|
Vue.use(VueI18n);
|
||||||
|
Vue.use(Vuelidate);
|
||||||
Vue.use(WootUiKit);
|
Vue.use(WootUiKit);
|
||||||
Vue.use(Vuex);
|
Vue.use(Vuex);
|
||||||
Vue.use(VueDOMPurifyHTML, domPurifyConfig);
|
Vue.use(VueDOMPurifyHTML, domPurifyConfig);
|
||||||
@@ -30,7 +32,7 @@ addDecorator(() => ({
|
|||||||
template: '<story/>',
|
template: '<story/>',
|
||||||
i18n: i18nConfig,
|
i18n: i18nConfig,
|
||||||
store,
|
store,
|
||||||
beforeCreate: function () {
|
beforeCreate: function() {
|
||||||
this.$root._i18n = this.$i18n;
|
this.$root._i18n = this.$i18n;
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|||||||
@@ -96,12 +96,12 @@ gem 'koala'
|
|||||||
# slack client
|
# slack client
|
||||||
gem 'slack-ruby-client', '~> 2.2.0'
|
gem 'slack-ruby-client', '~> 2.2.0'
|
||||||
# for dialogflow integrations
|
# for dialogflow integrations
|
||||||
gem 'google-cloud-dialogflow-v2', '>= 0.24.0'
|
gem 'google-cloud-dialogflow-v2'
|
||||||
gem 'grpc'
|
gem 'grpc'
|
||||||
# Translate integrations
|
# Translate integrations
|
||||||
# 'google-cloud-translate' gem depends on faraday 2.0 version
|
# 'google-cloud-translate' gem depends on faraday 2.0 version
|
||||||
# this dependency breaks the slack-ruby-client gem
|
# this dependency breaks the slack-ruby-client gem
|
||||||
gem 'google-cloud-translate-v3', '>= 0.7.0'
|
gem 'google-cloud-translate-v3'
|
||||||
|
|
||||||
##-- apm and error monitoring ---#
|
##-- apm and error monitoring ---#
|
||||||
# loaded only when environment variables are set.
|
# loaded only when environment variables are set.
|
||||||
@@ -111,12 +111,12 @@ gem 'elastic-apm', require: false
|
|||||||
gem 'newrelic_rpm', require: false
|
gem 'newrelic_rpm', require: false
|
||||||
gem 'newrelic-sidekiq-metrics', '>= 1.6.2', require: false
|
gem 'newrelic-sidekiq-metrics', '>= 1.6.2', require: false
|
||||||
gem 'scout_apm', require: false
|
gem 'scout_apm', require: false
|
||||||
gem 'sentry-rails', '>= 5.19.0', require: false
|
gem 'sentry-rails', '>= 5.18.1', require: false
|
||||||
gem 'sentry-ruby', require: false
|
gem 'sentry-ruby', require: false
|
||||||
gem 'sentry-sidekiq', '>= 5.19.0', require: false
|
gem 'sentry-sidekiq', '>= 5.18.1', require: false
|
||||||
|
|
||||||
##-- background job processing --##
|
##-- background job processing --##
|
||||||
gem 'sidekiq', '>= 7.3.1'
|
gem 'sidekiq', '>= 7.3.0'
|
||||||
# We want cron jobs
|
# We want cron jobs
|
||||||
gem 'sidekiq-cron', '>= 1.12.0'
|
gem 'sidekiq-cron', '>= 1.12.0'
|
||||||
|
|
||||||
@@ -165,7 +165,7 @@ gem 'audited', '~> 5.4', '>= 5.4.1'
|
|||||||
|
|
||||||
# need for google auth
|
# need for google auth
|
||||||
gem 'omniauth', '>= 2.1.2'
|
gem 'omniauth', '>= 2.1.2'
|
||||||
gem 'omniauth-google-oauth2', '>= 1.1.3'
|
gem 'omniauth-google-oauth2', '>= 1.1.2'
|
||||||
gem 'omniauth-rails_csrf_protection', '~> 1.0', '>= 1.0.2'
|
gem 'omniauth-rails_csrf_protection', '~> 1.0', '>= 1.0.2'
|
||||||
|
|
||||||
## Gems for reponse bot
|
## Gems for reponse bot
|
||||||
@@ -200,7 +200,7 @@ group :development do
|
|||||||
gem 'rack-mini-profiler', '>= 3.2.0', require: false
|
gem 'rack-mini-profiler', '>= 3.2.0', require: false
|
||||||
gem 'stackprof'
|
gem 'stackprof'
|
||||||
# Should install the associated chrome extension to view query logs
|
# Should install the associated chrome extension to view query logs
|
||||||
gem 'meta_request', '>= 0.8.3'
|
gem 'meta_request', '>= 0.8.0'
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
@@ -228,7 +228,7 @@ group :development, :test do
|
|||||||
gem 'mock_redis'
|
gem 'mock_redis'
|
||||||
gem 'pry-rails'
|
gem 'pry-rails'
|
||||||
gem 'rspec_junit_formatter'
|
gem 'rspec_junit_formatter'
|
||||||
gem 'rspec-rails', '>= 6.1.5'
|
gem 'rspec-rails', '>= 6.1.3'
|
||||||
gem 'rubocop', require: false
|
gem 'rubocop', require: false
|
||||||
gem 'rubocop-performance', require: false
|
gem 'rubocop-performance', require: false
|
||||||
gem 'rubocop-rails', require: false
|
gem 'rubocop-rails', require: false
|
||||||
|
|||||||
+47
-47
@@ -169,7 +169,7 @@ GEM
|
|||||||
climate_control (1.2.0)
|
climate_control (1.2.0)
|
||||||
coderay (1.1.3)
|
coderay (1.1.3)
|
||||||
commonmarker (0.23.10)
|
commonmarker (0.23.10)
|
||||||
concurrent-ruby (1.3.4)
|
concurrent-ruby (1.3.3)
|
||||||
connection_pool (2.4.1)
|
connection_pool (2.4.1)
|
||||||
crack (1.0.0)
|
crack (1.0.0)
|
||||||
bigdecimal
|
bigdecimal
|
||||||
@@ -230,7 +230,7 @@ GEM
|
|||||||
ruby2_keywords
|
ruby2_keywords
|
||||||
email_reply_trimmer (0.1.13)
|
email_reply_trimmer (0.1.13)
|
||||||
erubi (1.13.0)
|
erubi (1.13.0)
|
||||||
et-orbi (1.2.11)
|
et-orbi (1.2.7)
|
||||||
tzinfo
|
tzinfo
|
||||||
execjs (2.8.1)
|
execjs (2.8.1)
|
||||||
facebook-messenger (2.0.1)
|
facebook-messenger (2.0.1)
|
||||||
@@ -257,7 +257,7 @@ GEM
|
|||||||
faraday-net_http_persistent (2.1.0)
|
faraday-net_http_persistent (2.1.0)
|
||||||
faraday (~> 2.5)
|
faraday (~> 2.5)
|
||||||
net-http-persistent (~> 4.0)
|
net-http-persistent (~> 4.0)
|
||||||
faraday-retry (2.2.1)
|
faraday-retry (2.1.0)
|
||||||
faraday (~> 2.0)
|
faraday (~> 2.0)
|
||||||
fcm (1.0.8)
|
fcm (1.0.8)
|
||||||
faraday (>= 1.0.0, < 3.0)
|
faraday (>= 1.0.0, < 3.0)
|
||||||
@@ -268,10 +268,10 @@ GEM
|
|||||||
rake
|
rake
|
||||||
flag_shih_tzu (0.3.23)
|
flag_shih_tzu (0.3.23)
|
||||||
foreman (0.87.2)
|
foreman (0.87.2)
|
||||||
fugit (1.11.1)
|
fugit (1.9.0)
|
||||||
et-orbi (~> 1, >= 1.2.11)
|
et-orbi (~> 1, >= 1.2.7)
|
||||||
raabro (~> 1.4)
|
raabro (~> 1.4)
|
||||||
gapic-common (0.20.0)
|
gapic-common (0.18.0)
|
||||||
faraday (>= 1.9, < 3.a)
|
faraday (>= 1.9, < 3.a)
|
||||||
faraday-retry (>= 1.0, < 3.a)
|
faraday-retry (>= 1.0, < 3.a)
|
||||||
google-protobuf (~> 3.14)
|
google-protobuf (~> 3.14)
|
||||||
@@ -301,15 +301,15 @@ GEM
|
|||||||
google-cloud-core (1.6.0)
|
google-cloud-core (1.6.0)
|
||||||
google-cloud-env (~> 1.0)
|
google-cloud-env (~> 1.0)
|
||||||
google-cloud-errors (~> 1.0)
|
google-cloud-errors (~> 1.0)
|
||||||
google-cloud-dialogflow-v2 (0.31.0)
|
google-cloud-dialogflow-v2 (0.23.0)
|
||||||
gapic-common (>= 0.20.0, < 2.a)
|
gapic-common (>= 0.18.0, < 2.a)
|
||||||
google-cloud-errors (~> 1.0)
|
google-cloud-errors (~> 1.0)
|
||||||
google-cloud-location (>= 0.4, < 2.a)
|
google-cloud-location (>= 0.4, < 2.a)
|
||||||
google-cloud-env (1.6.0)
|
google-cloud-env (1.6.0)
|
||||||
faraday (>= 0.17.3, < 3.0)
|
faraday (>= 0.17.3, < 3.0)
|
||||||
google-cloud-errors (1.3.1)
|
google-cloud-errors (1.3.1)
|
||||||
google-cloud-location (0.6.0)
|
google-cloud-location (0.4.0)
|
||||||
gapic-common (>= 0.20.0, < 2.a)
|
gapic-common (>= 0.17.1, < 2.a)
|
||||||
google-cloud-errors (~> 1.0)
|
google-cloud-errors (~> 1.0)
|
||||||
google-cloud-storage (1.44.0)
|
google-cloud-storage (1.44.0)
|
||||||
addressable (~> 2.8)
|
addressable (~> 2.8)
|
||||||
@@ -319,17 +319,17 @@ GEM
|
|||||||
google-cloud-core (~> 1.6)
|
google-cloud-core (~> 1.6)
|
||||||
googleauth (>= 0.16.2, < 2.a)
|
googleauth (>= 0.16.2, < 2.a)
|
||||||
mini_mime (~> 1.0)
|
mini_mime (~> 1.0)
|
||||||
google-cloud-translate-v3 (0.10.0)
|
google-cloud-translate-v3 (0.6.0)
|
||||||
gapic-common (>= 0.20.0, < 2.a)
|
gapic-common (>= 0.17.1, < 2.a)
|
||||||
google-cloud-errors (~> 1.0)
|
google-cloud-errors (~> 1.0)
|
||||||
google-protobuf (3.25.5)
|
google-protobuf (3.25.3)
|
||||||
google-protobuf (3.25.5-arm64-darwin)
|
google-protobuf (3.25.3-arm64-darwin)
|
||||||
google-protobuf (3.25.5-x86_64-darwin)
|
google-protobuf (3.25.3-x86_64-darwin)
|
||||||
google-protobuf (3.25.5-x86_64-linux)
|
google-protobuf (3.25.3-x86_64-linux)
|
||||||
googleapis-common-protos (1.6.0)
|
googleapis-common-protos (1.4.0)
|
||||||
google-protobuf (>= 3.18, < 5.a)
|
google-protobuf (~> 3.14)
|
||||||
googleapis-common-protos-types (~> 1.7)
|
googleapis-common-protos-types (~> 1.2)
|
||||||
grpc (~> 1.41)
|
grpc (~> 1.27)
|
||||||
googleapis-common-protos-types (1.14.0)
|
googleapis-common-protos-types (1.14.0)
|
||||||
google-protobuf (~> 3.18)
|
google-protobuf (~> 3.18)
|
||||||
googleauth (1.5.2)
|
googleauth (1.5.2)
|
||||||
@@ -457,7 +457,7 @@ GEM
|
|||||||
marcel (1.0.4)
|
marcel (1.0.4)
|
||||||
maxminddb (0.1.22)
|
maxminddb (0.1.22)
|
||||||
memoist (0.16.2)
|
memoist (0.16.2)
|
||||||
meta_request (0.8.3)
|
meta_request (0.8.2)
|
||||||
rack-contrib (>= 1.1, < 3)
|
rack-contrib (>= 1.1, < 3)
|
||||||
railties (>= 3.0.0, < 8)
|
railties (>= 3.0.0, < 8)
|
||||||
method_source (1.1.0)
|
method_source (1.1.0)
|
||||||
@@ -467,7 +467,7 @@ GEM
|
|||||||
mini_magick (4.12.0)
|
mini_magick (4.12.0)
|
||||||
mini_mime (1.1.5)
|
mini_mime (1.1.5)
|
||||||
mini_portile2 (2.8.7)
|
mini_portile2 (2.8.7)
|
||||||
minitest (5.25.1)
|
minitest (5.24.1)
|
||||||
mock_redis (0.36.0)
|
mock_redis (0.36.0)
|
||||||
ruby2_keywords
|
ruby2_keywords
|
||||||
msgpack (1.7.0)
|
msgpack (1.7.0)
|
||||||
@@ -480,7 +480,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.14)
|
net-imap (0.4.12)
|
||||||
date
|
date
|
||||||
net-protocol
|
net-protocol
|
||||||
net-pop (0.1.2)
|
net-pop (0.1.2)
|
||||||
@@ -522,7 +522,7 @@ GEM
|
|||||||
hashie (>= 3.4.6)
|
hashie (>= 3.4.6)
|
||||||
rack (>= 2.2.3)
|
rack (>= 2.2.3)
|
||||||
rack-protection
|
rack-protection
|
||||||
omniauth-google-oauth2 (1.1.3)
|
omniauth-google-oauth2 (1.1.2)
|
||||||
jwt (>= 2.0)
|
jwt (>= 2.0)
|
||||||
oauth2 (~> 2.0)
|
oauth2 (~> 2.0)
|
||||||
omniauth (~> 2.0)
|
omniauth (~> 2.0)
|
||||||
@@ -552,7 +552,7 @@ GEM
|
|||||||
pry-rails (0.3.9)
|
pry-rails (0.3.9)
|
||||||
pry (>= 0.10.4)
|
pry (>= 0.10.4)
|
||||||
public_suffix (6.0.0)
|
public_suffix (6.0.0)
|
||||||
puma (6.4.3)
|
puma (6.4.2)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
pundit (2.3.0)
|
pundit (2.3.0)
|
||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
@@ -634,20 +634,20 @@ GEM
|
|||||||
retriable (3.1.2)
|
retriable (3.1.2)
|
||||||
reverse_markdown (2.1.1)
|
reverse_markdown (2.1.1)
|
||||||
nokogiri
|
nokogiri
|
||||||
rexml (3.3.6)
|
rexml (3.3.2)
|
||||||
strscan
|
strscan
|
||||||
rspec-core (3.13.0)
|
rspec-core (3.13.0)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-expectations (3.13.2)
|
rspec-expectations (3.13.1)
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-mocks (3.13.1)
|
rspec-mocks (3.13.1)
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-rails (7.0.1)
|
rspec-rails (6.1.3)
|
||||||
actionpack (>= 7.0)
|
actionpack (>= 6.1)
|
||||||
activesupport (>= 7.0)
|
activesupport (>= 6.1)
|
||||||
railties (>= 7.0)
|
railties (>= 6.1)
|
||||||
rspec-core (~> 3.13)
|
rspec-core (~> 3.13)
|
||||||
rspec-expectations (~> 3.13)
|
rspec-expectations (~> 3.13)
|
||||||
rspec-mocks (~> 3.13)
|
rspec-mocks (~> 3.13)
|
||||||
@@ -710,19 +710,19 @@ GEM
|
|||||||
activesupport (>= 4)
|
activesupport (>= 4)
|
||||||
selectize-rails (0.12.6)
|
selectize-rails (0.12.6)
|
||||||
semantic_range (3.0.0)
|
semantic_range (3.0.0)
|
||||||
sentry-rails (5.19.0)
|
sentry-rails (5.18.1)
|
||||||
railties (>= 5.0)
|
railties (>= 5.0)
|
||||||
sentry-ruby (~> 5.19.0)
|
sentry-ruby (~> 5.18.1)
|
||||||
sentry-ruby (5.19.0)
|
sentry-ruby (5.18.1)
|
||||||
bigdecimal
|
bigdecimal
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
sentry-sidekiq (5.19.0)
|
sentry-sidekiq (5.18.1)
|
||||||
sentry-ruby (~> 5.19.0)
|
sentry-ruby (~> 5.18.1)
|
||||||
sidekiq (>= 3.0)
|
sidekiq (>= 3.0)
|
||||||
sexp_processor (4.17.0)
|
sexp_processor (4.17.0)
|
||||||
shoulda-matchers (5.3.0)
|
shoulda-matchers (5.3.0)
|
||||||
activesupport (>= 5.2.0)
|
activesupport (>= 5.2.0)
|
||||||
sidekiq (7.3.1)
|
sidekiq (7.3.0)
|
||||||
concurrent-ruby (< 2)
|
concurrent-ruby (< 2)
|
||||||
connection_pool (>= 2.3.0)
|
connection_pool (>= 2.3.0)
|
||||||
logger
|
logger
|
||||||
@@ -796,7 +796,7 @@ GEM
|
|||||||
uniform_notifier (1.16.0)
|
uniform_notifier (1.16.0)
|
||||||
uri (0.13.0)
|
uri (0.13.0)
|
||||||
uri_template (0.7.0)
|
uri_template (0.7.0)
|
||||||
valid_email2 (5.2.6)
|
valid_email2 (4.0.6)
|
||||||
activemodel (>= 3.2)
|
activemodel (>= 3.2)
|
||||||
mail (~> 2.5)
|
mail (~> 2.5)
|
||||||
version_gem (1.1.4)
|
version_gem (1.1.4)
|
||||||
@@ -819,7 +819,7 @@ GEM
|
|||||||
rack-proxy (>= 0.6.1)
|
rack-proxy (>= 0.6.1)
|
||||||
railties (>= 5.2)
|
railties (>= 5.2)
|
||||||
semantic_range (>= 2.3.0)
|
semantic_range (>= 2.3.0)
|
||||||
webrick (1.8.2)
|
webrick (1.8.1)
|
||||||
websocket-driver (0.7.6)
|
websocket-driver (0.7.6)
|
||||||
websocket-extensions (>= 0.1.0)
|
websocket-extensions (>= 0.1.0)
|
||||||
websocket-extensions (0.1.5)
|
websocket-extensions (0.1.5)
|
||||||
@@ -881,9 +881,9 @@ DEPENDENCIES
|
|||||||
foreman
|
foreman
|
||||||
geocoder
|
geocoder
|
||||||
gmail_xoauth
|
gmail_xoauth
|
||||||
google-cloud-dialogflow-v2 (>= 0.24.0)
|
google-cloud-dialogflow-v2
|
||||||
google-cloud-storage
|
google-cloud-storage
|
||||||
google-cloud-translate-v3 (>= 0.7.0)
|
google-cloud-translate-v3
|
||||||
groupdate
|
groupdate
|
||||||
grpc
|
grpc
|
||||||
haikunator
|
haikunator
|
||||||
@@ -903,14 +903,14 @@ DEPENDENCIES
|
|||||||
listen
|
listen
|
||||||
lograge (~> 0.14.0)
|
lograge (~> 0.14.0)
|
||||||
maxminddb
|
maxminddb
|
||||||
meta_request (>= 0.8.3)
|
meta_request (>= 0.8.0)
|
||||||
mock_redis
|
mock_redis
|
||||||
neighbor
|
neighbor
|
||||||
net-smtp (~> 0.3.4)
|
net-smtp (~> 0.3.4)
|
||||||
newrelic-sidekiq-metrics (>= 1.6.2)
|
newrelic-sidekiq-metrics (>= 1.6.2)
|
||||||
newrelic_rpm
|
newrelic_rpm
|
||||||
omniauth (>= 2.1.2)
|
omniauth (>= 2.1.2)
|
||||||
omniauth-google-oauth2 (>= 1.1.3)
|
omniauth-google-oauth2 (>= 1.1.2)
|
||||||
omniauth-oauth2
|
omniauth-oauth2
|
||||||
omniauth-rails_csrf_protection (~> 1.0, >= 1.0.2)
|
omniauth-rails_csrf_protection (~> 1.0, >= 1.0.2)
|
||||||
pg
|
pg
|
||||||
@@ -930,7 +930,7 @@ DEPENDENCIES
|
|||||||
responders (>= 3.1.1)
|
responders (>= 3.1.1)
|
||||||
rest-client
|
rest-client
|
||||||
reverse_markdown
|
reverse_markdown
|
||||||
rspec-rails (>= 6.1.5)
|
rspec-rails (>= 6.1.3)
|
||||||
rspec_junit_formatter
|
rspec_junit_formatter
|
||||||
rubocop
|
rubocop
|
||||||
rubocop-performance
|
rubocop-performance
|
||||||
@@ -939,11 +939,11 @@ DEPENDENCIES
|
|||||||
scout_apm
|
scout_apm
|
||||||
scss_lint
|
scss_lint
|
||||||
seed_dump
|
seed_dump
|
||||||
sentry-rails (>= 5.19.0)
|
sentry-rails (>= 5.18.1)
|
||||||
sentry-ruby
|
sentry-ruby
|
||||||
sentry-sidekiq (>= 5.19.0)
|
sentry-sidekiq (>= 5.18.1)
|
||||||
shoulda-matchers
|
shoulda-matchers
|
||||||
sidekiq (>= 7.3.1)
|
sidekiq (>= 7.3.0)
|
||||||
sidekiq-cron (>= 1.12.0)
|
sidekiq-cron (>= 1.12.0)
|
||||||
simplecov (= 0.17.1)
|
simplecov (= 0.17.1)
|
||||||
slack-ruby-client (~> 2.2.0)
|
slack-ruby-client (~> 2.2.0)
|
||||||
|
|||||||
@@ -32,13 +32,11 @@ class AccountBuilder
|
|||||||
end
|
end
|
||||||
|
|
||||||
def validate_email
|
def validate_email
|
||||||
raise InvalidEmail.new({ domain_blocked: domain_blocked }) if domain_blocked?
|
|
||||||
|
|
||||||
address = ValidEmail2::Address.new(@email)
|
address = ValidEmail2::Address.new(@email)
|
||||||
if address.valid? && !address.disposable?
|
if address.valid? # && !address.disposable?
|
||||||
true
|
true
|
||||||
else
|
else
|
||||||
raise InvalidEmail.new({ valid: address.valid?, disposable: address.disposable? })
|
raise InvalidEmail.new(valid: address.valid?)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -81,21 +79,4 @@ 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
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ class Messages::Messenger::MessageBuilder
|
|||||||
file_type = attachment['type'].to_sym
|
file_type = attachment['type'].to_sym
|
||||||
params = { file_type: file_type, account_id: @message.account_id }
|
params = { file_type: file_type, account_id: @message.account_id }
|
||||||
|
|
||||||
if [:image, :file, :audio, :video, :share, :story_mention, :ig_reel].include? file_type
|
if [:image, :file, :audio, :video, :share, :story_mention].include? file_type
|
||||||
params.merge!(file_type_params(attachment))
|
params.merge!(file_type_params(attachment))
|
||||||
elsif file_type == :location
|
elsif file_type == :location
|
||||||
params.merge!(location_params(attachment))
|
params.merge!(location_params(attachment))
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ class Api::V1::Accounts::AgentsController < Api::V1::Accounts::BaseController
|
|||||||
|
|
||||||
def update
|
def update
|
||||||
@agent.update!(agent_params.slice(:name).compact)
|
@agent.update!(agent_params.slice(:name).compact)
|
||||||
@agent.current_account_user.update!(agent_params.slice(*account_user_attributes).compact)
|
@agent.current_account_user.update!(agent_params.slice(:role, :availability, :auto_offline).compact)
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
@@ -67,16 +67,8 @@ class Api::V1::Accounts::AgentsController < Api::V1::Accounts::BaseController
|
|||||||
@agent = agents.find(params[:id])
|
@agent = agents.find(params[:id])
|
||||||
end
|
end
|
||||||
|
|
||||||
def account_user_attributes
|
|
||||||
[:role, :availability, :auto_offline]
|
|
||||||
end
|
|
||||||
|
|
||||||
def allowed_agent_params
|
|
||||||
[:name, :email, :name, :role, :availability, :auto_offline]
|
|
||||||
end
|
|
||||||
|
|
||||||
def agent_params
|
def agent_params
|
||||||
params.require(:agent).permit(allowed_agent_params)
|
params.require(:agent).permit(:name, :email, :name, :role, :availability, :auto_offline)
|
||||||
end
|
end
|
||||||
|
|
||||||
def new_agent_params
|
def new_agent_params
|
||||||
@@ -109,5 +101,3 @@ class Api::V1::Accounts::AgentsController < Api::V1::Accounts::BaseController
|
|||||||
DeleteObjectJob.perform_later(agent) if agent.reload.account_users.blank?
|
DeleteObjectJob.perform_later(agent) if agent.reload.account_users.blank?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Api::V1::Accounts::AgentsController.prepend_mod_with('Api::V1::Accounts::AgentsController')
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::
|
|||||||
|
|
||||||
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_attributes: { deleted: true })
|
||||||
message.attachments.destroy_all
|
message.attachments.destroy_all
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ class Api::V1::Accounts::Integrations::AppsController < Api::V1::Accounts::BaseC
|
|||||||
private
|
private
|
||||||
|
|
||||||
def fetch_apps
|
def fetch_apps
|
||||||
@apps = Integrations::App.all.select { |app| app.active?(Current.account) }
|
@apps = Integrations::App.all.select(&:active?)
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_app
|
def fetch_app
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
class Api::V1::Accounts::Integrations::CaptainController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :check_admin_authorization?
|
|
||||||
before_action :fetch_hook
|
|
||||||
|
|
||||||
def sso_url
|
|
||||||
params_string =
|
|
||||||
"token=#{URI.encode_www_form_component(@hook['settings']['access_token'])}" \
|
|
||||||
"&email=#{URI.encode_www_form_component(@hook['settings']['account_email'])}" \
|
|
||||||
"&account_id=#{URI.encode_www_form_component(@hook['settings']['account_id'])}"
|
|
||||||
|
|
||||||
installation_config = InstallationConfig.find_by(name: 'CAPTAIN_APP_URL')
|
|
||||||
|
|
||||||
sso_url = "#{installation_config.value}/sso?#{params_string}"
|
|
||||||
render json: { sso_url: sso_url }, status: :ok
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def fetch_hook
|
|
||||||
@hook = Current.account.hooks.find_by!(app_id: 'captain')
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -11,17 +11,7 @@ class Api::V1::Accounts::Integrations::HooksController < Api::V1::Accounts::Base
|
|||||||
end
|
end
|
||||||
|
|
||||||
def process_event
|
def process_event
|
||||||
response = @hook.process_event(params[:event])
|
render json: { message: @hook.process_event(params[:event]) }
|
||||||
|
|
||||||
# for cases like an invalid event, or when conversation does not have enough messages
|
|
||||||
# for a label suggestion, the response is nil
|
|
||||||
if response.nil?
|
|
||||||
render json: { message: nil }
|
|
||||||
elsif response[:error]
|
|
||||||
render json: { error: response[:error] }, status: :unprocessable_entity
|
|
||||||
else
|
|
||||||
render json: { message: response[:message] }
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
|
|||||||
@@ -1,68 +1,13 @@
|
|||||||
class Api::V1::Accounts::UploadController < Api::V1::Accounts::BaseController
|
class Api::V1::Accounts::UploadController < Api::V1::Accounts::BaseController
|
||||||
def create
|
def create
|
||||||
result = if params[:attachment].present?
|
file_blob = ActiveStorage::Blob.create_and_upload!(
|
||||||
create_from_file
|
key: nil,
|
||||||
elsif params[:external_url].present?
|
io: params[:attachment].tempfile,
|
||||||
create_from_url
|
filename: params[:attachment].original_filename,
|
||||||
else
|
content_type: params[:attachment].content_type
|
||||||
render_error('No file or URL provided', :unprocessable_entity)
|
|
||||||
end
|
|
||||||
|
|
||||||
render_success(result) if result.is_a?(ActiveStorage::Blob)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def create_from_file
|
|
||||||
attachment = params[:attachment]
|
|
||||||
create_and_save_blob(attachment.tempfile, attachment.original_filename, attachment.content_type)
|
|
||||||
end
|
|
||||||
|
|
||||||
def create_from_url
|
|
||||||
uri = parse_uri(params[:external_url])
|
|
||||||
return if performed?
|
|
||||||
|
|
||||||
fetch_and_process_file_from_uri(uri)
|
|
||||||
end
|
|
||||||
|
|
||||||
def parse_uri(url)
|
|
||||||
uri = URI.parse(url)
|
|
||||||
validate_uri(uri)
|
|
||||||
uri
|
|
||||||
rescue URI::InvalidURIError, SocketError
|
|
||||||
render_error('Invalid URL provided', :unprocessable_entity)
|
|
||||||
nil
|
|
||||||
end
|
|
||||||
|
|
||||||
def validate_uri(uri)
|
|
||||||
raise URI::InvalidURIError unless uri.is_a?(URI::HTTP) || uri.is_a?(URI::HTTPS)
|
|
||||||
end
|
|
||||||
|
|
||||||
def fetch_and_process_file_from_uri(uri)
|
|
||||||
uri.open do |file|
|
|
||||||
create_and_save_blob(file, File.basename(uri.path), file.content_type)
|
|
||||||
end
|
|
||||||
rescue OpenURI::HTTPError => e
|
|
||||||
render_error("Failed to fetch file from URL: #{e.message}", :unprocessable_entity)
|
|
||||||
rescue SocketError
|
|
||||||
render_error('Invalid URL provided', :unprocessable_entity)
|
|
||||||
rescue StandardError
|
|
||||||
render_error('An unexpected error occurred', :internal_server_error)
|
|
||||||
end
|
|
||||||
|
|
||||||
def create_and_save_blob(io, filename, content_type)
|
|
||||||
ActiveStorage::Blob.create_and_upload!(
|
|
||||||
io: io,
|
|
||||||
filename: filename,
|
|
||||||
content_type: content_type
|
|
||||||
)
|
)
|
||||||
end
|
file_blob.save!
|
||||||
|
|
||||||
def render_success(file_blob)
|
|
||||||
render json: { file_url: url_for(file_blob), blob_key: file_blob.key, blob_id: file_blob.id }
|
render json: { file_url: url_for(file_blob), blob_key: file_blob.key, blob_id: file_blob.id }
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_error(message, status)
|
|
||||||
render json: { error: message }, status: status
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -11,8 +11,6 @@ class Api::V1::Widget::ConversationsController < Api::V1::Widget::BaseController
|
|||||||
process_update_contact
|
process_update_contact
|
||||||
@conversation = create_conversation
|
@conversation = create_conversation
|
||||||
conversation.messages.create!(message_params)
|
conversation.messages.create!(message_params)
|
||||||
# TODO: Temporary fix for message type cast issue, since message_type is returning as string instead of integer
|
|
||||||
conversation.reload
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -66,9 +66,7 @@ class Api::V2::Accounts::ReportsController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def check_authorization
|
def check_authorization
|
||||||
return if Current.account_user.administrator?
|
raise Pundit::NotAuthorizedError unless Current.account_user.administrator?
|
||||||
|
|
||||||
raise Pundit::NotAuthorizedError
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def common_params
|
def common_params
|
||||||
@@ -137,5 +135,3 @@ class Api::V2::Accounts::ReportsController < Api::V1::Accounts::BaseController
|
|||||||
V2::ReportBuilder.new(Current.account, conversation_params).conversation_metrics
|
V2::ReportBuilder.new(Current.account, conversation_params).conversation_metrics
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Api::V2::Accounts::ReportsController.prepend_mod_with('Api::V2::Accounts::ReportsController')
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ class Public::Api::V1::Portals::ArticlesController < Public::Api::V1::Portals::B
|
|||||||
layout 'portal'
|
layout 'portal'
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@articles = @portal.articles.published
|
@articles = @portal.articles
|
||||||
search_articles
|
search_articles
|
||||||
order_by_sort_param
|
order_by_sort_param
|
||||||
@articles.page(list_params[:page]) if list_params[:page].present?
|
@articles.page(list_params[:page]) if list_params[:page].present?
|
||||||
|
|||||||
@@ -1,3 +1,30 @@
|
|||||||
|
<template>
|
||||||
|
<div
|
||||||
|
v-if="!authUIFlags.isFetching && !accountUIFlags.isFetchingItem"
|
||||||
|
id="app"
|
||||||
|
class="flex-grow-0 w-full h-full min-h-0 app-wrapper"
|
||||||
|
:class="{ 'app-rtl--wrapper': isRTLView }"
|
||||||
|
:dir="isRTLView ? 'rtl' : 'ltr'"
|
||||||
|
>
|
||||||
|
<update-banner :latest-chatwoot-version="latestChatwootVersion" />
|
||||||
|
<template v-if="currentAccountId">
|
||||||
|
<pending-email-verification-banner v-if="hideOnOnboardingView" />
|
||||||
|
<payment-pending-banner v-if="hideOnOnboardingView" />
|
||||||
|
<upgrade-banner />
|
||||||
|
</template>
|
||||||
|
<transition name="fade" mode="out-in">
|
||||||
|
<router-view />
|
||||||
|
</transition>
|
||||||
|
<add-account-modal
|
||||||
|
:show="showAddAccountModal"
|
||||||
|
:has-accounts="hasAccounts"
|
||||||
|
/>
|
||||||
|
<woot-snackbar-box />
|
||||||
|
<network-notification />
|
||||||
|
</div>
|
||||||
|
<loading-state v-else />
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import router from '../dashboard/routes';
|
import router from '../dashboard/routes';
|
||||||
@@ -10,6 +37,7 @@ import PaymentPendingBanner from './components/app/PaymentPendingBanner.vue';
|
|||||||
import PendingEmailVerificationBanner from './components/app/PendingEmailVerificationBanner.vue';
|
import PendingEmailVerificationBanner from './components/app/PendingEmailVerificationBanner.vue';
|
||||||
import vueActionCable from './helper/actionCable';
|
import vueActionCable from './helper/actionCable';
|
||||||
import WootSnackbarBox from './components/SnackbarContainer.vue';
|
import WootSnackbarBox from './components/SnackbarContainer.vue';
|
||||||
|
import rtlMixin from 'shared/mixins/rtlMixin';
|
||||||
import { setColorTheme } from './helper/themeHelper';
|
import { setColorTheme } from './helper/themeHelper';
|
||||||
import { isOnOnboardingView } from 'v3/helpers/RouteHelper';
|
import { isOnOnboardingView } from 'v3/helpers/RouteHelper';
|
||||||
import {
|
import {
|
||||||
@@ -31,6 +59,9 @@ export default {
|
|||||||
UpgradeBanner,
|
UpgradeBanner,
|
||||||
PendingEmailVerificationBanner,
|
PendingEmailVerificationBanner,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
mixins: [rtlMixin],
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
showAddAccountModal: false,
|
showAddAccountModal: false,
|
||||||
@@ -42,8 +73,8 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
...mapGetters({
|
...mapGetters({
|
||||||
getAccount: 'accounts/getAccount',
|
getAccount: 'accounts/getAccount',
|
||||||
isRTL: 'accounts/isRTL',
|
|
||||||
currentUser: 'getCurrentUser',
|
currentUser: 'getCurrentUser',
|
||||||
|
globalConfig: 'globalConfig/get',
|
||||||
authUIFlags: 'getAuthUIFlags',
|
authUIFlags: 'getAuthUIFlags',
|
||||||
accountUIFlags: 'accounts/getUIFlags',
|
accountUIFlags: 'accounts/getUIFlags',
|
||||||
currentAccountId: 'getCurrentAccountId',
|
currentAccountId: 'getCurrentAccountId',
|
||||||
@@ -99,6 +130,7 @@ export default {
|
|||||||
this.getAccount(this.currentAccountId);
|
this.getAccount(this.currentAccountId);
|
||||||
const { pubsub_token: pubsubToken } = this.currentUser || {};
|
const { pubsub_token: pubsubToken } = this.currentUser || {};
|
||||||
this.setLocale(locale);
|
this.setLocale(locale);
|
||||||
|
this.updateRTLDirectionView(locale);
|
||||||
this.latestChatwootVersion = latestChatwootVersion;
|
this.latestChatwootVersion = latestChatwootVersion;
|
||||||
vueActionCable.init(pubsubToken);
|
vueActionCable.init(pubsubToken);
|
||||||
this.reconnectService = new ReconnectService(this.$store, router);
|
this.reconnectService = new ReconnectService(this.$store, router);
|
||||||
@@ -115,30 +147,6 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
v-if="!authUIFlags.isFetching && !accountUIFlags.isFetchingItem"
|
|
||||||
id="app"
|
|
||||||
class="flex-grow-0 w-full h-full min-h-0 app-wrapper"
|
|
||||||
:class="{ 'app-rtl--wrapper': isRTL }"
|
|
||||||
:dir="isRTL ? 'rtl' : 'ltr'"
|
|
||||||
>
|
|
||||||
<UpdateBanner :latest-chatwoot-version="latestChatwootVersion" />
|
|
||||||
<template v-if="currentAccountId">
|
|
||||||
<PendingEmailVerificationBanner v-if="hideOnOnboardingView" />
|
|
||||||
<PaymentPendingBanner v-if="hideOnOnboardingView" />
|
|
||||||
<UpgradeBanner />
|
|
||||||
</template>
|
|
||||||
<transition name="fade" mode="out-in">
|
|
||||||
<router-view />
|
|
||||||
</transition>
|
|
||||||
<AddAccountModal :show="showAddAccountModal" :has-accounts="hasAccounts" />
|
|
||||||
<WootSnackbarBox />
|
|
||||||
<NetworkNotification />
|
|
||||||
</div>
|
|
||||||
<LoadingState v-else />
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import './assets/scss/app';
|
@import './assets/scss/app';
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
import ApiClient from './ApiClient';
|
|
||||||
|
|
||||||
class CustomRole extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('custom_roles', { accountScoped: true });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new CustomRole();
|
|
||||||
@@ -32,10 +32,6 @@ class IntegrationsAPI extends ApiClient {
|
|||||||
deleteHook(hookId) {
|
deleteHook(hookId) {
|
||||||
return axios.delete(`${this.baseUrl()}/integrations/hooks/${hookId}`);
|
return axios.delete(`${this.baseUrl()}/integrations/hooks/${hookId}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
fetchCaptainURL() {
|
|
||||||
return axios.get(`${this.baseUrl()}/integrations/captain/sso_url`);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default new IntegrationsAPI();
|
export default new IntegrationsAPI();
|
||||||
|
|||||||
@@ -3,9 +3,6 @@
|
|||||||
@import 'tailwindcss/utilities';
|
@import 'tailwindcss/utilities';
|
||||||
|
|
||||||
@import 'shared/assets/fonts/plus-jakarta';
|
@import 'shared/assets/fonts/plus-jakarta';
|
||||||
@import 'shared/assets/fonts/InterDisplay/inter-display';
|
|
||||||
@import 'shared/assets/fonts/inter';
|
|
||||||
|
|
||||||
@import 'shared/assets/stylesheets/animations';
|
@import 'shared/assets/stylesheets/animations';
|
||||||
@import 'shared/assets/stylesheets/colors';
|
@import 'shared/assets/stylesheets/colors';
|
||||||
@import 'shared/assets/stylesheets/spacing';
|
@import 'shared/assets/stylesheets/spacing';
|
||||||
@@ -45,7 +42,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@layer base {
|
@layer base {
|
||||||
|
|
||||||
// scss-lint:disable PropertySortOrder
|
// scss-lint:disable PropertySortOrder
|
||||||
:root {
|
:root {
|
||||||
--color-amber-25: 254 253 251;
|
--color-amber-25: 254 253 251;
|
||||||
@@ -217,7 +213,6 @@
|
|||||||
--color-orange-800: 204 78 0;
|
--color-orange-800: 204 78 0;
|
||||||
--color-orange-900: 88 45 29;
|
--color-orange-900: 88 45 29;
|
||||||
}
|
}
|
||||||
|
|
||||||
// scss-lint:disable QualifyingElement
|
// scss-lint:disable QualifyingElement
|
||||||
body.dark {
|
body.dark {
|
||||||
--color-amber-25: 31 19 0;
|
--color-amber-25: 31 19 0;
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
table {
|
table {
|
||||||
@apply border-spacing-0 text-sm w-full;
|
@apply border-spacing-0 text-sm w-full;
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.woot-table {
|
|
||||||
thead {
|
thead {
|
||||||
th {
|
th {
|
||||||
@apply font-semibold tracking-[1px] text-left px-2.5 uppercase text-slate-900 dark:text-slate-200;
|
@apply font-semibold tracking-[1px] text-left px-2.5 uppercase text-slate-900 dark:text-slate-200;
|
||||||
@@ -20,7 +16,9 @@ table {
|
|||||||
@apply p-2.5 text-slate-700 dark:text-slate-100;
|
@apply p-2.5 text-slate-700 dark:text-slate-100;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.woot-table {
|
||||||
tr {
|
tr {
|
||||||
.show-if-hover {
|
.show-if-hover {
|
||||||
transition: opacity 0.2s $swift-ease-out-function;
|
transition: opacity 0.2s $swift-ease-out-function;
|
||||||
|
|||||||
@@ -1,3 +1,35 @@
|
|||||||
|
<template>
|
||||||
|
<div class="-mt-px text-sm">
|
||||||
|
<button
|
||||||
|
class="flex items-center select-none w-full rounded-none bg-slate-50 dark:bg-slate-800 border border-l-0 border-r-0 border-solid m-0 border-slate-100 dark:border-slate-700/50 cursor-grab justify-between py-2 px-4 drag-handle"
|
||||||
|
@click="$emit('click')"
|
||||||
|
>
|
||||||
|
<div class="flex justify-between mb-0.5">
|
||||||
|
<emoji-or-icon class="inline-block w-5" :icon="icon" :emoji="emoji" />
|
||||||
|
<h5
|
||||||
|
class="text-slate-800 text-sm dark:text-slate-100 mb-0 py-0 pr-2 pl-0"
|
||||||
|
>
|
||||||
|
{{ title }}
|
||||||
|
</h5>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-row">
|
||||||
|
<slot name="button" />
|
||||||
|
<div class="flex justify-end w-3 text-woot-500">
|
||||||
|
<fluent-icon v-if="isOpen" size="24" icon="subtract" type="solid" />
|
||||||
|
<fluent-icon v-else size="24" icon="add" type="solid" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
<div
|
||||||
|
v-if="isOpen"
|
||||||
|
class="bg-white dark:bg-slate-900"
|
||||||
|
:class="compact ? 'p-0' : 'p-4'"
|
||||||
|
>
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import EmojiOrIcon from 'shared/components/EmojiOrIcon.vue';
|
import EmojiOrIcon from 'shared/components/EmojiOrIcon.vue';
|
||||||
|
|
||||||
@@ -29,35 +61,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="-mt-px text-sm">
|
|
||||||
<button
|
|
||||||
class="flex items-center select-none w-full rounded-none bg-slate-50 dark:bg-slate-800 border border-l-0 border-r-0 border-solid m-0 border-slate-100 dark:border-slate-700/50 cursor-grab justify-between py-2 px-4 drag-handle"
|
|
||||||
@click="$emit('click')"
|
|
||||||
>
|
|
||||||
<div class="flex justify-between mb-0.5">
|
|
||||||
<EmojiOrIcon class="inline-block w-5" :icon="icon" :emoji="emoji" />
|
|
||||||
<h5
|
|
||||||
class="text-slate-800 text-sm dark:text-slate-100 mb-0 py-0 pr-2 pl-0"
|
|
||||||
>
|
|
||||||
{{ title }}
|
|
||||||
</h5>
|
|
||||||
</div>
|
|
||||||
<div class="flex flex-row">
|
|
||||||
<slot name="button" />
|
|
||||||
<div class="flex justify-end w-3 text-woot-500">
|
|
||||||
<fluent-icon v-if="isOpen" size="24" icon="subtract" type="solid" />
|
|
||||||
<fluent-icon v-else size="24" icon="add" type="solid" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</button>
|
|
||||||
<div
|
|
||||||
v-if="isOpen"
|
|
||||||
class="bg-white dark:bg-slate-900"
|
|
||||||
:class="compact ? 'p-0' : 'p-4'"
|
|
||||||
>
|
|
||||||
<slot />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,17 @@
|
|||||||
|
<template>
|
||||||
|
<button
|
||||||
|
class="bg-white dark:bg-slate-900 cursor-pointer flex flex-col justify-end transition-all duration-200 ease-in -m-px py-4 px-0 items-center border border-solid border-slate-25 dark:border-slate-800 hover:border-woot-500 dark:hover:border-woot-500 hover:shadow-md hover:z-50 disabled:opacity-60"
|
||||||
|
@click="$emit('click')"
|
||||||
|
>
|
||||||
|
<img :src="src" :alt="title" class="w-1/2 my-4 mx-auto" />
|
||||||
|
<h3
|
||||||
|
class="text-slate-800 dark:text-slate-100 text-base text-center capitalize"
|
||||||
|
>
|
||||||
|
{{ title }}
|
||||||
|
</h3>
|
||||||
|
</button>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -13,20 +27,6 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<button
|
|
||||||
class="bg-white dark:bg-slate-900 cursor-pointer flex flex-col justify-end transition-all duration-200 ease-in -m-px py-4 px-0 items-center border border-solid border-slate-25 dark:border-slate-800 hover:border-woot-500 dark:hover:border-woot-500 hover:shadow-md hover:z-50 disabled:opacity-60"
|
|
||||||
@click="$emit('click')"
|
|
||||||
>
|
|
||||||
<img :src="src" :alt="title" class="w-1/2 my-4 mx-auto" />
|
|
||||||
<h3
|
|
||||||
class="text-slate-800 dark:text-slate-100 text-base text-center capitalize"
|
|
||||||
>
|
|
||||||
{{ title }}
|
|
||||||
</h3>
|
|
||||||
</button>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.inactive {
|
.inactive {
|
||||||
img {
|
img {
|
||||||
|
|||||||
@@ -1,22 +1,138 @@
|
|||||||
|
<template>
|
||||||
|
<div
|
||||||
|
class="flex flex-col flex-shrink-0 overflow-hidden border-r conversations-list-wrap rtl:border-r-0 rtl:border-l border-slate-50 dark:border-slate-800/50"
|
||||||
|
:class="[
|
||||||
|
{ hidden: !showConversationList },
|
||||||
|
isOnExpandedLayout ? 'basis-full' : 'flex-basis-clamp',
|
||||||
|
]"
|
||||||
|
>
|
||||||
|
<slot />
|
||||||
|
<chat-list-header
|
||||||
|
:page-title="pageTitle"
|
||||||
|
:has-applied-filters="hasAppliedFilters"
|
||||||
|
:has-active-folders="hasActiveFolders"
|
||||||
|
:active-status="activeStatus"
|
||||||
|
@add-folders="onClickOpenAddFoldersModal"
|
||||||
|
@delete-folders="onClickOpenDeleteFoldersModal"
|
||||||
|
@filters-modal="onToggleAdvanceFiltersModal"
|
||||||
|
@reset-filters="resetAndFetchData"
|
||||||
|
@basic-filter-change="onBasicFilterChange"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<add-custom-views
|
||||||
|
v-if="showAddFoldersModal"
|
||||||
|
:custom-views-query="foldersQuery"
|
||||||
|
:open-last-saved-item="openLastSavedItemInFolder"
|
||||||
|
@close="onCloseAddFoldersModal"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<delete-custom-views
|
||||||
|
v-if="showDeleteFoldersModal"
|
||||||
|
:show-delete-popup.sync="showDeleteFoldersModal"
|
||||||
|
:active-custom-view="activeFolder"
|
||||||
|
:custom-views-id="foldersId"
|
||||||
|
:open-last-item-after-delete="openLastItemAfterDeleteInFolder"
|
||||||
|
@close="onCloseDeleteFoldersModal"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<chat-type-tabs
|
||||||
|
v-if="!hasAppliedFiltersOrActiveFolders"
|
||||||
|
:items="assigneeTabItems"
|
||||||
|
:active-tab="activeAssigneeTab"
|
||||||
|
class="tab--chat-type"
|
||||||
|
@chatTabChange="updateAssigneeTab"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<p
|
||||||
|
v-if="!chatListLoading && !conversationList.length"
|
||||||
|
class="flex items-center justify-center p-4 overflow-auto"
|
||||||
|
>
|
||||||
|
{{ $t('CHAT_LIST.LIST.404') }}
|
||||||
|
</p>
|
||||||
|
<conversation-bulk-actions
|
||||||
|
v-if="selectedConversations.length"
|
||||||
|
:conversations="selectedConversations"
|
||||||
|
:all-conversations-selected="allConversationsSelected"
|
||||||
|
:selected-inboxes="uniqueInboxes"
|
||||||
|
:show-open-action="allSelectedConversationsStatus('open')"
|
||||||
|
:show-resolved-action="allSelectedConversationsStatus('resolved')"
|
||||||
|
:show-snoozed-action="allSelectedConversationsStatus('snoozed')"
|
||||||
|
@select-all-conversations="selectAllConversations"
|
||||||
|
@assign-agent="onAssignAgent"
|
||||||
|
@update-conversations="onUpdateConversations"
|
||||||
|
@assign-labels="onAssignLabels"
|
||||||
|
@assign-team="onAssignTeamsForBulk"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
ref="conversationList"
|
||||||
|
class="flex-1 conversations-list"
|
||||||
|
:class="{ 'overflow-hidden': isContextMenuOpen }"
|
||||||
|
>
|
||||||
|
<virtual-list
|
||||||
|
ref="conversationVirtualList"
|
||||||
|
:data-key="'id'"
|
||||||
|
:data-sources="conversationList"
|
||||||
|
:data-component="itemComponent"
|
||||||
|
:extra-props="virtualListExtraProps"
|
||||||
|
class="w-full h-full overflow-auto"
|
||||||
|
footer-tag="div"
|
||||||
|
>
|
||||||
|
<template #footer>
|
||||||
|
<div v-if="chatListLoading" class="text-center">
|
||||||
|
<span class="mt-4 mb-4 spinner" />
|
||||||
|
</div>
|
||||||
|
<p
|
||||||
|
v-if="showEndOfListMessage"
|
||||||
|
class="p-4 text-center text-slate-400 dark:text-slate-300"
|
||||||
|
>
|
||||||
|
{{ $t('CHAT_LIST.EOF') }}
|
||||||
|
</p>
|
||||||
|
<intersection-observer
|
||||||
|
v-if="!showEndOfListMessage && !chatListLoading"
|
||||||
|
:options="infiniteLoaderOptions"
|
||||||
|
@observed="loadMoreConversations"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</virtual-list>
|
||||||
|
</div>
|
||||||
|
<woot-modal
|
||||||
|
:show.sync="showAdvancedFilters"
|
||||||
|
:on-close="closeAdvanceFiltersModal"
|
||||||
|
size="medium"
|
||||||
|
>
|
||||||
|
<conversation-advanced-filter
|
||||||
|
v-if="showAdvancedFilters"
|
||||||
|
:initial-filter-types="advancedFilterTypes"
|
||||||
|
:initial-applied-filters="appliedFilter"
|
||||||
|
:active-folder-name="activeFolderName"
|
||||||
|
:on-close="closeAdvanceFiltersModal"
|
||||||
|
:is-folder-view="hasActiveFolders"
|
||||||
|
@applyFilter="onApplyFilter"
|
||||||
|
@updateFolder="onUpdateSavedFilter"
|
||||||
|
/>
|
||||||
|
</woot-modal>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { ref } from 'vue';
|
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import { useUISettings } from 'dashboard/composables/useUISettings';
|
import { useUISettings } from 'dashboard/composables/useUISettings';
|
||||||
import { useAlert } from 'dashboard/composables';
|
import { useAlert } from 'dashboard/composables';
|
||||||
import { useKeyboardEvents } from 'dashboard/composables/useKeyboardEvents';
|
|
||||||
import { useFilter } from 'shared/composables/useFilter';
|
|
||||||
import VirtualList from 'vue-virtual-scroll-list';
|
import VirtualList from 'vue-virtual-scroll-list';
|
||||||
|
|
||||||
import ChatListHeader from './ChatListHeader.vue';
|
import ChatListHeader from './ChatListHeader.vue';
|
||||||
import ConversationAdvancedFilter from './widgets/conversation/ConversationAdvancedFilter.vue';
|
import ConversationAdvancedFilter from './widgets/conversation/ConversationAdvancedFilter.vue';
|
||||||
import ChatTypeTabs from './widgets/ChatTypeTabs.vue';
|
import ChatTypeTabs from './widgets/ChatTypeTabs.vue';
|
||||||
import ConversationItem from './ConversationItem.vue';
|
import ConversationItem from './ConversationItem.vue';
|
||||||
|
import keyboardEventListenerMixins from 'shared/mixins/keyboardEventListenerMixins';
|
||||||
|
import conversationMixin from '../mixins/conversations';
|
||||||
import wootConstants from 'dashboard/constants/globals';
|
import wootConstants from 'dashboard/constants/globals';
|
||||||
import advancedFilterTypes from './widgets/conversation/advancedFilterItems';
|
import advancedFilterTypes from './widgets/conversation/advancedFilterItems';
|
||||||
import filterQueryGenerator from '../helper/filterQueryGenerator.js';
|
import filterQueryGenerator from '../helper/filterQueryGenerator.js';
|
||||||
import AddCustomViews from 'dashboard/routes/dashboard/customviews/AddCustomViews.vue';
|
import AddCustomViews from 'dashboard/routes/dashboard/customviews/AddCustomViews.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 filterMixin from 'shared/mixins/filterMixin';
|
||||||
import languages from 'dashboard/components/widgets/conversation/advancedFilterItems/languages';
|
import languages from 'dashboard/components/widgets/conversation/advancedFilterItems/languages';
|
||||||
import countries from 'shared/constants/countries';
|
import countries from 'shared/constants/countries';
|
||||||
import { generateValuesForEditCustomViews } from 'dashboard/helper/customViewsHelper';
|
import { generateValuesForEditCustomViews } from 'dashboard/helper/customViewsHelper';
|
||||||
@@ -27,11 +143,6 @@ import {
|
|||||||
} from '../store/modules/conversations/helpers/actionHelpers';
|
} from '../store/modules/conversations/helpers/actionHelpers';
|
||||||
import { CONVERSATION_EVENTS } from '../helper/AnalyticsHelper/events';
|
import { CONVERSATION_EVENTS } from '../helper/AnalyticsHelper/events';
|
||||||
import IntersectionObserver from './IntersectionObserver.vue';
|
import IntersectionObserver from './IntersectionObserver.vue';
|
||||||
import {
|
|
||||||
getUserPermissions,
|
|
||||||
filterItemsByPermission,
|
|
||||||
} from 'dashboard/helper/permissionsHelper.js';
|
|
||||||
import { ASSIGNEE_TYPE_TAB_PERMISSIONS } from 'dashboard/constants/permissions.js';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
@@ -46,6 +157,7 @@ export default {
|
|||||||
IntersectionObserver,
|
IntersectionObserver,
|
||||||
VirtualList,
|
VirtualList,
|
||||||
},
|
},
|
||||||
|
mixins: [conversationMixin, keyboardEventListenerMixins, filterMixin],
|
||||||
provide() {
|
provide() {
|
||||||
return {
|
return {
|
||||||
// Actions to be performed on virtual list item and context menu.
|
// Actions to be performed on virtual list item and context menu.
|
||||||
@@ -93,81 +205,8 @@ export default {
|
|||||||
setup() {
|
setup() {
|
||||||
const { uiSettings } = useUISettings();
|
const { uiSettings } = useUISettings();
|
||||||
|
|
||||||
const conversationListRef = ref(null);
|
|
||||||
|
|
||||||
const {
|
|
||||||
setFilterAttributes,
|
|
||||||
initializeStatusAndAssigneeFilterToModal,
|
|
||||||
initializeInboxTeamAndLabelFilterToModal,
|
|
||||||
} = useFilter({
|
|
||||||
filteri18nKey: 'FILTER',
|
|
||||||
attributeModel: 'conversation_attribute',
|
|
||||||
});
|
|
||||||
|
|
||||||
const getKeyboardListenerParams = () => {
|
|
||||||
const allConversations = conversationListRef.value.querySelectorAll(
|
|
||||||
'div.conversations-list div.conversation'
|
|
||||||
);
|
|
||||||
const activeConversation = conversationListRef.value.querySelector(
|
|
||||||
'div.conversations-list div.conversation.active'
|
|
||||||
);
|
|
||||||
const activeConversationIndex = [...allConversations].indexOf(
|
|
||||||
activeConversation
|
|
||||||
);
|
|
||||||
const lastConversationIndex = allConversations.length - 1;
|
|
||||||
return {
|
|
||||||
allConversations,
|
|
||||||
activeConversation,
|
|
||||||
activeConversationIndex,
|
|
||||||
lastConversationIndex,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
const handleConversationNavigation = direction => {
|
|
||||||
const {
|
|
||||||
allConversations,
|
|
||||||
activeConversationIndex,
|
|
||||||
lastConversationIndex,
|
|
||||||
} = getKeyboardListenerParams();
|
|
||||||
|
|
||||||
// Determine the new index based on the direction
|
|
||||||
const newIndex =
|
|
||||||
direction === 'previous'
|
|
||||||
? activeConversationIndex - 1
|
|
||||||
: activeConversationIndex + 1;
|
|
||||||
|
|
||||||
// Check if the new index is within the valid range
|
|
||||||
if (
|
|
||||||
allConversations.length > 0 &&
|
|
||||||
newIndex >= 0 &&
|
|
||||||
newIndex <= lastConversationIndex
|
|
||||||
) {
|
|
||||||
// Click the conversation at the new index
|
|
||||||
allConversations[newIndex].click();
|
|
||||||
} else if (allConversations.length > 0) {
|
|
||||||
// If the new index is out of range, click the first or last conversation based on the direction
|
|
||||||
const fallbackIndex =
|
|
||||||
direction === 'previous' ? 0 : lastConversationIndex;
|
|
||||||
allConversations[fallbackIndex].click();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const keyboardEvents = {
|
|
||||||
'Alt+KeyJ': {
|
|
||||||
action: () => handleConversationNavigation('previous'),
|
|
||||||
allowOnFocusedInput: true,
|
|
||||||
},
|
|
||||||
'Alt+KeyK': {
|
|
||||||
action: () => handleConversationNavigation('next'),
|
|
||||||
allowOnFocusedInput: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
useKeyboardEvents(keyboardEvents);
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
uiSettings,
|
uiSettings,
|
||||||
conversationListRef,
|
|
||||||
setFilterAttributes,
|
|
||||||
initializeStatusAndAssigneeFilterToModal,
|
|
||||||
initializeInboxTeamAndLabelFilterToModal,
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
@@ -190,7 +229,7 @@ export default {
|
|||||||
isContextMenuOpen: false,
|
isContextMenuOpen: false,
|
||||||
appliedFilter: [],
|
appliedFilter: [],
|
||||||
infiniteLoaderOptions: {
|
infiniteLoaderOptions: {
|
||||||
root: this.$refs.conversationListRef,
|
root: this.$refs.conversationList,
|
||||||
rootMargin: '100px 0px 100px 0px',
|
rootMargin: '100px 0px 100px 0px',
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -208,17 +247,20 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters({
|
...mapGetters({
|
||||||
|
currentChat: 'getSelectedChat',
|
||||||
currentUser: 'getCurrentUser',
|
currentUser: 'getCurrentUser',
|
||||||
currentAccountId: 'getCurrentAccountId',
|
|
||||||
chatLists: 'getAllConversations',
|
chatLists: 'getAllConversations',
|
||||||
mineChatsList: 'getMineChats',
|
mineChatsList: 'getMineChats',
|
||||||
allChatList: 'getAllStatusChats',
|
allChatList: 'getAllStatusChats',
|
||||||
|
chatListFilters: 'getChatListFilters',
|
||||||
unAssignedChatsList: 'getUnAssignedChats',
|
unAssignedChatsList: 'getUnAssignedChats',
|
||||||
chatListLoading: 'getChatListLoadingStatus',
|
chatListLoading: 'getChatListLoadingStatus',
|
||||||
|
currentUserID: 'getCurrentUserID',
|
||||||
activeInbox: 'getSelectedInbox',
|
activeInbox: 'getSelectedInbox',
|
||||||
conversationStats: 'conversationStats/getStats',
|
conversationStats: 'conversationStats/getStats',
|
||||||
appliedFilters: 'getAppliedConversationFilters',
|
appliedFilters: 'getAppliedConversationFilters',
|
||||||
folders: 'customViews/getCustomViews',
|
folders: 'customViews/getCustomViews',
|
||||||
|
inboxes: 'inboxes/getInboxes',
|
||||||
agentList: 'agents/getAgents',
|
agentList: 'agents/getAgents',
|
||||||
teamsList: 'teams/getTeams',
|
teamsList: 'teams/getTeams',
|
||||||
inboxesList: 'inboxes/getInboxes',
|
inboxesList: 'inboxes/getInboxes',
|
||||||
@@ -249,19 +291,20 @@ export default {
|
|||||||
name,
|
name,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
userPermissions() {
|
|
||||||
return getUserPermissions(this.currentUser, this.currentAccountId);
|
|
||||||
},
|
|
||||||
assigneeTabItems() {
|
assigneeTabItems() {
|
||||||
return filterItemsByPermission(
|
const ASSIGNEE_TYPE_TAB_KEYS = {
|
||||||
ASSIGNEE_TYPE_TAB_PERMISSIONS,
|
me: 'mineCount',
|
||||||
this.userPermissions,
|
unassigned: 'unAssignedCount',
|
||||||
item => item.permissions
|
all: 'allCount',
|
||||||
).map(({ key, count: countKey }) => ({
|
};
|
||||||
key,
|
return Object.keys(ASSIGNEE_TYPE_TAB_KEYS).map(key => {
|
||||||
name: this.$t(`CHAT_LIST.ASSIGNEE_TYPE_TABS.${key}`),
|
const count = this.conversationStats[ASSIGNEE_TYPE_TAB_KEYS[key]] || 0;
|
||||||
count: this.conversationStats[countKey] || 0,
|
return {
|
||||||
}));
|
key,
|
||||||
|
name: this.$t(`CHAT_LIST.ASSIGNEE_TYPE_TABS.${key}`),
|
||||||
|
count,
|
||||||
|
};
|
||||||
|
});
|
||||||
},
|
},
|
||||||
showAssigneeInConversationCard() {
|
showAssigneeInConversationCard() {
|
||||||
return (
|
return (
|
||||||
@@ -567,6 +610,58 @@ export default {
|
|||||||
}))
|
}))
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
getKeyboardListenerParams() {
|
||||||
|
const allConversations = this.$refs.conversationList.querySelectorAll(
|
||||||
|
'div.conversations-list div.conversation'
|
||||||
|
);
|
||||||
|
const activeConversation = this.$refs.conversationList.querySelector(
|
||||||
|
'div.conversations-list div.conversation.active'
|
||||||
|
);
|
||||||
|
const activeConversationIndex = [...allConversations].indexOf(
|
||||||
|
activeConversation
|
||||||
|
);
|
||||||
|
const lastConversationIndex = allConversations.length - 1;
|
||||||
|
return {
|
||||||
|
allConversations,
|
||||||
|
activeConversation,
|
||||||
|
activeConversationIndex,
|
||||||
|
lastConversationIndex,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
handlePreviousConversation() {
|
||||||
|
const { allConversations, activeConversationIndex } =
|
||||||
|
this.getKeyboardListenerParams();
|
||||||
|
if (activeConversationIndex === -1) {
|
||||||
|
allConversations[0].click();
|
||||||
|
}
|
||||||
|
if (activeConversationIndex >= 1) {
|
||||||
|
allConversations[activeConversationIndex - 1].click();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleNextConversation() {
|
||||||
|
const {
|
||||||
|
allConversations,
|
||||||
|
activeConversationIndex,
|
||||||
|
lastConversationIndex,
|
||||||
|
} = this.getKeyboardListenerParams();
|
||||||
|
if (activeConversationIndex === -1) {
|
||||||
|
allConversations[lastConversationIndex].click();
|
||||||
|
} else if (activeConversationIndex < lastConversationIndex) {
|
||||||
|
allConversations[activeConversationIndex + 1].click();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getKeyboardEvents() {
|
||||||
|
return {
|
||||||
|
'Alt+KeyJ': {
|
||||||
|
action: () => this.handlePreviousConversation(),
|
||||||
|
allowOnFocusedInput: true,
|
||||||
|
},
|
||||||
|
'Alt+KeyK': {
|
||||||
|
action: () => this.handleNextConversation(),
|
||||||
|
allowOnFocusedInput: true,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
resetAndFetchData() {
|
resetAndFetchData() {
|
||||||
this.appliedFilter = [];
|
this.appliedFilter = [];
|
||||||
this.resetBulkActions();
|
this.resetBulkActions();
|
||||||
@@ -633,7 +728,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
emitConversationLoaded() {
|
emitConversationLoaded() {
|
||||||
this.$emit('conversationLoad');
|
this.$emit('conversation-load');
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
// Addressing a known issue in the virtual list library where dynamically added items
|
// Addressing a known issue in the virtual list library where dynamically added items
|
||||||
// might not render correctly. This workaround involves a slight manual adjustment
|
// might not render correctly. This workaround involves a slight manual adjustment
|
||||||
@@ -882,144 +977,9 @@ export default {
|
|||||||
onContextMenuToggle(state) {
|
onContextMenuToggle(state) {
|
||||||
this.isContextMenuOpen = state;
|
this.isContextMenuOpen = state;
|
||||||
},
|
},
|
||||||
initializeExistingFilterToModal() {
|
|
||||||
const statusFilter = this.initializeStatusAndAssigneeFilterToModal(
|
|
||||||
this.activeStatus,
|
|
||||||
this.currentUserDetails,
|
|
||||||
this.activeAssigneeTab
|
|
||||||
);
|
|
||||||
if (statusFilter) {
|
|
||||||
this.appliedFilter.push(statusFilter);
|
|
||||||
}
|
|
||||||
|
|
||||||
const otherFilters = this.initializeInboxTeamAndLabelFilterToModal(
|
|
||||||
this.conversationInbox,
|
|
||||||
this.inbox,
|
|
||||||
this.teamId,
|
|
||||||
this.activeTeam,
|
|
||||||
this.label
|
|
||||||
);
|
|
||||||
this.appliedFilter.push(...otherFilters);
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
class="flex flex-col flex-shrink-0 overflow-hidden border-r conversations-list-wrap rtl:border-r-0 rtl:border-l border-slate-50 dark:border-slate-800/50"
|
|
||||||
:class="[
|
|
||||||
{ hidden: !showConversationList },
|
|
||||||
isOnExpandedLayout ? 'basis-full' : 'flex-basis-clamp',
|
|
||||||
]"
|
|
||||||
>
|
|
||||||
<slot />
|
|
||||||
<ChatListHeader
|
|
||||||
:page-title="pageTitle"
|
|
||||||
:has-applied-filters="hasAppliedFilters"
|
|
||||||
:has-active-folders="hasActiveFolders"
|
|
||||||
:active-status="activeStatus"
|
|
||||||
@addFolders="onClickOpenAddFoldersModal"
|
|
||||||
@deleteFolders="onClickOpenDeleteFoldersModal"
|
|
||||||
@filtersModal="onToggleAdvanceFiltersModal"
|
|
||||||
@resetFilters="resetAndFetchData"
|
|
||||||
@basicFilterChange="onBasicFilterChange"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<AddCustomViews
|
|
||||||
v-if="showAddFoldersModal"
|
|
||||||
:custom-views-query="foldersQuery"
|
|
||||||
:open-last-saved-item="openLastSavedItemInFolder"
|
|
||||||
@close="onCloseAddFoldersModal"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<DeleteCustomViews
|
|
||||||
v-if="showDeleteFoldersModal"
|
|
||||||
:show-delete-popup.sync="showDeleteFoldersModal"
|
|
||||||
:active-custom-view="activeFolder"
|
|
||||||
:custom-views-id="foldersId"
|
|
||||||
:open-last-item-after-delete="openLastItemAfterDeleteInFolder"
|
|
||||||
@close="onCloseDeleteFoldersModal"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ChatTypeTabs
|
|
||||||
v-if="!hasAppliedFiltersOrActiveFolders"
|
|
||||||
:items="assigneeTabItems"
|
|
||||||
:active-tab="activeAssigneeTab"
|
|
||||||
@chatTabChange="updateAssigneeTab"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<p
|
|
||||||
v-if="!chatListLoading && !conversationList.length"
|
|
||||||
class="flex items-center justify-center p-4 overflow-auto"
|
|
||||||
>
|
|
||||||
{{ $t('CHAT_LIST.LIST.404') }}
|
|
||||||
</p>
|
|
||||||
<ConversationBulkActions
|
|
||||||
v-if="selectedConversations.length"
|
|
||||||
:conversations="selectedConversations"
|
|
||||||
:all-conversations-selected="allConversationsSelected"
|
|
||||||
:selected-inboxes="uniqueInboxes"
|
|
||||||
:show-open-action="allSelectedConversationsStatus('open')"
|
|
||||||
:show-resolved-action="allSelectedConversationsStatus('resolved')"
|
|
||||||
:show-snoozed-action="allSelectedConversationsStatus('snoozed')"
|
|
||||||
@selectAllConversations="selectAllConversations"
|
|
||||||
@assignAgent="onAssignAgent"
|
|
||||||
@updateConversations="onUpdateConversations"
|
|
||||||
@assignLabels="onAssignLabels"
|
|
||||||
@assignTeam="onAssignTeamsForBulk"
|
|
||||||
/>
|
|
||||||
<div
|
|
||||||
ref="conversationListRef"
|
|
||||||
class="flex-1 conversations-list"
|
|
||||||
:class="{ 'overflow-hidden': isContextMenuOpen }"
|
|
||||||
>
|
|
||||||
<VirtualList
|
|
||||||
ref="conversationVirtualList"
|
|
||||||
data-key="id"
|
|
||||||
:data-sources="conversationList"
|
|
||||||
:data-component="itemComponent"
|
|
||||||
:extra-props="virtualListExtraProps"
|
|
||||||
class="w-full h-full overflow-auto"
|
|
||||||
footer-tag="div"
|
|
||||||
>
|
|
||||||
<template #footer>
|
|
||||||
<div v-if="chatListLoading" class="text-center">
|
|
||||||
<span class="mt-4 mb-4 spinner" />
|
|
||||||
</div>
|
|
||||||
<p
|
|
||||||
v-if="showEndOfListMessage"
|
|
||||||
class="p-4 text-center text-slate-400 dark:text-slate-300"
|
|
||||||
>
|
|
||||||
{{ $t('CHAT_LIST.EOF') }}
|
|
||||||
</p>
|
|
||||||
<IntersectionObserver
|
|
||||||
v-if="!showEndOfListMessage && !chatListLoading"
|
|
||||||
:options="infiniteLoaderOptions"
|
|
||||||
@observed="loadMoreConversations"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
</VirtualList>
|
|
||||||
</div>
|
|
||||||
<woot-modal
|
|
||||||
:show.sync="showAdvancedFilters"
|
|
||||||
:on-close="closeAdvanceFiltersModal"
|
|
||||||
size="medium"
|
|
||||||
>
|
|
||||||
<ConversationAdvancedFilter
|
|
||||||
v-if="showAdvancedFilters"
|
|
||||||
:initial-filter-types="advancedFilterTypes"
|
|
||||||
:initial-applied-filters="appliedFilter"
|
|
||||||
:active-folder-name="activeFolderName"
|
|
||||||
:on-close="closeAdvanceFiltersModal"
|
|
||||||
:is-folder-view="hasActiveFolders"
|
|
||||||
@applyFilter="onApplyFilter"
|
|
||||||
@updateFolder="onUpdateSavedFilter"
|
|
||||||
/>
|
|
||||||
</woot-modal>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@layer components {
|
@layer components {
|
||||||
@@ -1033,4 +993,14 @@ export default {
|
|||||||
.conversations-list {
|
.conversations-list {
|
||||||
@apply overflow-hidden hover:overflow-y-auto;
|
@apply overflow-hidden hover:overflow-y-auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tab--chat-type {
|
||||||
|
@apply py-0 px-4;
|
||||||
|
|
||||||
|
::v-deep {
|
||||||
|
.tabs {
|
||||||
|
@apply p-0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -21,16 +21,16 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits([
|
const emits = defineEmits([
|
||||||
'addFolders',
|
'add-folders',
|
||||||
'deleteFolders',
|
'delete-folders',
|
||||||
'resetFilters',
|
'reset-filters',
|
||||||
'basicFilterChange',
|
'basic-filter-change',
|
||||||
'filtersModal',
|
'filters-modal',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const onBasicFilterChange = (value, type) => {
|
const onBasicFilterChange = (value, type) => {
|
||||||
emit('basicFilterChange', value, type);
|
emits('basic-filter-change', value, type);
|
||||||
};
|
};
|
||||||
|
|
||||||
const hasAppliedFiltersOrActiveFolders = computed(() => {
|
const hasAppliedFiltersOrActiveFolders = computed(() => {
|
||||||
@@ -68,7 +68,7 @@ const hasAppliedFiltersOrActiveFolders = computed(() => {
|
|||||||
variant="smooth"
|
variant="smooth"
|
||||||
color-scheme="secondary"
|
color-scheme="secondary"
|
||||||
icon="save"
|
icon="save"
|
||||||
@click="emit('addFolders')"
|
@click="emits('add-folders')"
|
||||||
/>
|
/>
|
||||||
<woot-button
|
<woot-button
|
||||||
v-tooltip.top-end="$t('FILTER.CLEAR_BUTTON_LABEL')"
|
v-tooltip.top-end="$t('FILTER.CLEAR_BUTTON_LABEL')"
|
||||||
@@ -76,7 +76,7 @@ const hasAppliedFiltersOrActiveFolders = computed(() => {
|
|||||||
variant="smooth"
|
variant="smooth"
|
||||||
color-scheme="alert"
|
color-scheme="alert"
|
||||||
icon="dismiss-circle"
|
icon="dismiss-circle"
|
||||||
@click="emit('resetFilters')"
|
@click="emits('reset-filters')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="hasActiveFolders">
|
<div v-if="hasActiveFolders">
|
||||||
@@ -86,7 +86,7 @@ const hasAppliedFiltersOrActiveFolders = computed(() => {
|
|||||||
variant="smooth"
|
variant="smooth"
|
||||||
color-scheme="secondary"
|
color-scheme="secondary"
|
||||||
icon="edit"
|
icon="edit"
|
||||||
@click="emit('filtersModal')"
|
@click="emits('filters-modal')"
|
||||||
/>
|
/>
|
||||||
<woot-button
|
<woot-button
|
||||||
v-tooltip.top-end="$t('FILTER.CUSTOM_VIEWS.DELETE.DELETE_BUTTON')"
|
v-tooltip.top-end="$t('FILTER.CUSTOM_VIEWS.DELETE.DELETE_BUTTON')"
|
||||||
@@ -94,7 +94,7 @@ const hasAppliedFiltersOrActiveFolders = computed(() => {
|
|||||||
variant="smooth"
|
variant="smooth"
|
||||||
color-scheme="alert"
|
color-scheme="alert"
|
||||||
icon="delete"
|
icon="delete"
|
||||||
@click="emit('deleteFolders')"
|
@click="emits('delete-folders')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<woot-button
|
<woot-button
|
||||||
@@ -104,9 +104,9 @@ const hasAppliedFiltersOrActiveFolders = computed(() => {
|
|||||||
color-scheme="secondary"
|
color-scheme="secondary"
|
||||||
icon="filter"
|
icon="filter"
|
||||||
size="tiny"
|
size="tiny"
|
||||||
@click="emit('filtersModal')"
|
@click="emits('filters-modal')"
|
||||||
/>
|
/>
|
||||||
<ConversationBasicFilter
|
<conversation-basic-filter
|
||||||
v-if="!hasAppliedFiltersOrActiveFolders"
|
v-if="!hasAppliedFiltersOrActiveFolders"
|
||||||
@changeFilter="onBasicFilterChange"
|
@changeFilter="onBasicFilterChange"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,3 +1,27 @@
|
|||||||
|
<template>
|
||||||
|
<div class="code--container">
|
||||||
|
<div class="code--action-area">
|
||||||
|
<form
|
||||||
|
v-if="enableCodePen"
|
||||||
|
class="code--codeopen-form"
|
||||||
|
action="https://codepen.io/pen/define"
|
||||||
|
method="POST"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<input type="hidden" name="data" :value="codepenScriptValue" />
|
||||||
|
|
||||||
|
<button type="submit" class="button secondary tiny">
|
||||||
|
{{ $t('COMPONENTS.CODE.CODEPEN') }}
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
<button class="button secondary tiny" @click="onCopy">
|
||||||
|
{{ $t('COMPONENTS.CODE.BUTTON_TEXT') }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<highlightjs v-if="script" :language="lang" :code="script" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import 'highlight.js/styles/default.css';
|
import 'highlight.js/styles/default.css';
|
||||||
import { copyTextToClipboard } from 'shared/helpers/clipboard';
|
import { copyTextToClipboard } from 'shared/helpers/clipboard';
|
||||||
@@ -42,30 +66,6 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="code--container">
|
|
||||||
<div class="code--action-area">
|
|
||||||
<form
|
|
||||||
v-if="enableCodePen"
|
|
||||||
class="code--codeopen-form"
|
|
||||||
action="https://codepen.io/pen/define"
|
|
||||||
method="POST"
|
|
||||||
target="_blank"
|
|
||||||
>
|
|
||||||
<input type="hidden" name="data" :value="codepenScriptValue" />
|
|
||||||
|
|
||||||
<button type="submit" class="button secondary tiny">
|
|
||||||
{{ $t('COMPONENTS.CODE.CODEPEN') }}
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
<button class="button secondary tiny" @click="onCopy">
|
|
||||||
{{ $t('COMPONENTS.CODE.BUTTON_TEXT') }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<highlightjs v-if="script" :language="lang" :code="script" />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.code--container {
|
.code--container {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|||||||
@@ -1,3 +1,26 @@
|
|||||||
|
<template>
|
||||||
|
<conversation-card
|
||||||
|
:key="source.id"
|
||||||
|
:active-label="label"
|
||||||
|
:team-id="teamId"
|
||||||
|
:folders-id="foldersId"
|
||||||
|
:chat="source"
|
||||||
|
:conversation-type="conversationType"
|
||||||
|
:selected="isConversationSelected(source.id)"
|
||||||
|
:show-assignee="showAssignee"
|
||||||
|
:enable-context-menu="true"
|
||||||
|
@select-conversation="selectConversation"
|
||||||
|
@de-select-conversation="deSelectConversation"
|
||||||
|
@assign-agent="assignAgent"
|
||||||
|
@assign-team="assignTeam"
|
||||||
|
@assign-label="assignLabels"
|
||||||
|
@update-conversation-status="updateConversationStatus"
|
||||||
|
@context-menu-toggle="toggleContextMenu"
|
||||||
|
@mark-as-unread="markAsUnread"
|
||||||
|
@assign-priority="assignPriority"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ConversationCard from './widgets/conversation/ConversationCard.vue';
|
import ConversationCard from './widgets/conversation/ConversationCard.vue';
|
||||||
export default {
|
export default {
|
||||||
@@ -47,26 +70,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<ConversationCard
|
|
||||||
:key="source.id"
|
|
||||||
:active-label="label"
|
|
||||||
:team-id="teamId"
|
|
||||||
:folders-id="foldersId"
|
|
||||||
:chat="source"
|
|
||||||
:conversation-type="conversationType"
|
|
||||||
:selected="isConversationSelected(source.id)"
|
|
||||||
:show-assignee="showAssignee"
|
|
||||||
enable-context-menu
|
|
||||||
@selectConversation="selectConversation"
|
|
||||||
@deSelectConversation="deSelectConversation"
|
|
||||||
@assignAgent="assignAgent"
|
|
||||||
@assignTeam="assignTeam"
|
|
||||||
@assignLabel="assignLabels"
|
|
||||||
@updateConversationStatus="updateConversationStatus"
|
|
||||||
@contextMenuToggle="toggleContextMenu"
|
|
||||||
@markAsUnread="markAsUnread"
|
|
||||||
@assignPriority="assignPriority"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,12 +1,147 @@
|
|||||||
|
<template>
|
||||||
|
<div class="py-3 px-4">
|
||||||
|
<div class="flex items-center mb-1">
|
||||||
|
<h4 class="text-sm flex items-center m-0 w-full error">
|
||||||
|
<div v-if="isAttributeTypeCheckbox" class="flex items-center">
|
||||||
|
<input
|
||||||
|
v-model="editedValue"
|
||||||
|
class="!my-0 mr-2 ml-0"
|
||||||
|
type="checkbox"
|
||||||
|
@change="onUpdate"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center justify-between w-full">
|
||||||
|
<span
|
||||||
|
class="w-full inline-flex gap-1.5 items-start font-medium whitespace-nowrap text-sm mb-0"
|
||||||
|
:class="
|
||||||
|
$v.editedValue.$error
|
||||||
|
? 'text-red-400 dark:text-red-500'
|
||||||
|
: 'text-slate-800 dark:text-slate-100'
|
||||||
|
"
|
||||||
|
>
|
||||||
|
{{ label }}
|
||||||
|
<helper-text-popup
|
||||||
|
v-if="description"
|
||||||
|
:message="description"
|
||||||
|
class="mt-0.5"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
<woot-button
|
||||||
|
v-if="showActions && value"
|
||||||
|
v-tooltip.left="$t('CUSTOM_ATTRIBUTES.ACTIONS.DELETE')"
|
||||||
|
variant="link"
|
||||||
|
size="medium"
|
||||||
|
color-scheme="secondary"
|
||||||
|
icon="delete"
|
||||||
|
class-names="flex justify-end w-4"
|
||||||
|
@click="onDelete"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
<div v-if="notAttributeTypeCheckboxAndList">
|
||||||
|
<div v-if="isEditing" v-on-clickaway="onClickAway">
|
||||||
|
<div class="mb-2 w-full flex items-center">
|
||||||
|
<input
|
||||||
|
ref="inputfield"
|
||||||
|
v-model="editedValue"
|
||||||
|
:type="inputType"
|
||||||
|
class="!h-8 ltr:!rounded-r-none rtl:!rounded-l-none !mb-0 !text-sm"
|
||||||
|
autofocus="true"
|
||||||
|
:class="{ error: $v.editedValue.$error }"
|
||||||
|
@blur="$v.editedValue.$touch"
|
||||||
|
@keyup.enter="onUpdate"
|
||||||
|
/>
|
||||||
|
<div>
|
||||||
|
<woot-button
|
||||||
|
size="small"
|
||||||
|
icon="checkmark"
|
||||||
|
class="rounded-l-none rtl:rounded-r-none"
|
||||||
|
@click="onUpdate"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<span
|
||||||
|
v-if="shouldShowErrorMessage"
|
||||||
|
class="text-red-400 dark:text-red-500 text-sm block font-normal -mt-px w-full"
|
||||||
|
>
|
||||||
|
{{ errorMessage }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-show="!isEditing"
|
||||||
|
class="flex group"
|
||||||
|
:class="{ 'is-editable': showActions }"
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
v-if="isAttributeTypeLink"
|
||||||
|
:href="hrefURL"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
class="group-hover:bg-slate-50 group-hover:dark:bg-slate-700 inline-block rounded-sm mb-0 break-all py-0.5 px-1"
|
||||||
|
>
|
||||||
|
{{ urlValue }}
|
||||||
|
</a>
|
||||||
|
<p
|
||||||
|
v-else
|
||||||
|
class="group-hover:bg-slate-50 group-hover:dark:bg-slate-700 inline-block rounded-sm mb-0 break-all py-0.5 px-1"
|
||||||
|
>
|
||||||
|
{{ displayValue || '---' }}
|
||||||
|
</p>
|
||||||
|
<div class="flex max-w-[2rem] gap-1 ml-1 rtl:mr-1 rtl:ml-0">
|
||||||
|
<woot-button
|
||||||
|
v-if="showActions && value"
|
||||||
|
v-tooltip="$t('CUSTOM_ATTRIBUTES.ACTIONS.COPY')"
|
||||||
|
variant="link"
|
||||||
|
size="small"
|
||||||
|
color-scheme="secondary"
|
||||||
|
icon="clipboard"
|
||||||
|
class-names="hidden group-hover:flex !w-6 flex-shrink-0"
|
||||||
|
@click="onCopy"
|
||||||
|
/>
|
||||||
|
<woot-button
|
||||||
|
v-if="showActions"
|
||||||
|
v-tooltip.right="$t('CUSTOM_ATTRIBUTES.ACTIONS.EDIT')"
|
||||||
|
variant="link"
|
||||||
|
size="small"
|
||||||
|
color-scheme="secondary"
|
||||||
|
icon="edit"
|
||||||
|
class-names="hidden group-hover:flex !w-6 flex-shrink-0"
|
||||||
|
@click="onEdit"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-if="isAttributeTypeList">
|
||||||
|
<multiselect-dropdown
|
||||||
|
:options="listOptions"
|
||||||
|
:selected-item="selectedItem"
|
||||||
|
:has-thumbnail="false"
|
||||||
|
:multiselector-placeholder="
|
||||||
|
$t('CUSTOM_ATTRIBUTES.FORM.ATTRIBUTE_TYPE.LIST.PLACEHOLDER')
|
||||||
|
"
|
||||||
|
:no-search-result="
|
||||||
|
$t('CUSTOM_ATTRIBUTES.FORM.ATTRIBUTE_TYPE.LIST.NO_RESULT')
|
||||||
|
"
|
||||||
|
:input-placeholder="
|
||||||
|
$t(
|
||||||
|
'CUSTOM_ATTRIBUTES.FORM.ATTRIBUTE_TYPE.LIST.SEARCH_INPUT_PLACEHOLDER'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
@click="onUpdateListValue"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { format, parseISO } from 'date-fns';
|
import { format, parseISO } from 'date-fns';
|
||||||
import { required, url } from '@vuelidate/validators';
|
import { required, url } from 'vuelidate/lib/validators';
|
||||||
import { BUS_EVENTS } from 'shared/constants/busEvents';
|
import { BUS_EVENTS } from 'shared/constants/busEvents';
|
||||||
import MultiselectDropdown from 'shared/components/ui/MultiselectDropdown.vue';
|
import MultiselectDropdown from 'shared/components/ui/MultiselectDropdown.vue';
|
||||||
import HelperTextPopup from 'dashboard/components/ui/HelperTextPopup.vue';
|
import HelperTextPopup from 'dashboard/components/ui/HelperTextPopup.vue';
|
||||||
import { isValidURL } from '../helper/URLHelper';
|
import { isValidURL } from '../helper/URLHelper';
|
||||||
import { getRegexp } from 'shared/helpers/Validators';
|
import customAttributeMixin from '../mixins/customAttributeMixin';
|
||||||
import { useVuelidate } from '@vuelidate/core';
|
|
||||||
|
|
||||||
const DATE_FORMAT = 'yyyy-MM-dd';
|
const DATE_FORMAT = 'yyyy-MM-dd';
|
||||||
|
|
||||||
@@ -15,6 +150,7 @@ export default {
|
|||||||
MultiselectDropdown,
|
MultiselectDropdown,
|
||||||
HelperTextPopup,
|
HelperTextPopup,
|
||||||
},
|
},
|
||||||
|
mixins: [customAttributeMixin],
|
||||||
props: {
|
props: {
|
||||||
label: { type: String, required: true },
|
label: { type: String, required: true },
|
||||||
description: { type: String, default: '' },
|
description: { type: String, default: '' },
|
||||||
@@ -27,12 +163,10 @@ export default {
|
|||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
regexCue: { type: String, default: null },
|
regexCue: { type: String, default: null },
|
||||||
|
regexEnabled: { type: Boolean, default: false },
|
||||||
attributeKey: { type: String, required: true },
|
attributeKey: { type: String, required: true },
|
||||||
contactId: { type: Number, default: null },
|
contactId: { type: Number, default: null },
|
||||||
},
|
},
|
||||||
setup() {
|
|
||||||
return { v$: useVuelidate() };
|
|
||||||
},
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isEditing: false,
|
isEditing: false,
|
||||||
@@ -91,13 +225,13 @@ export default {
|
|||||||
return this.isAttributeTypeLink ? 'url' : this.attributeType;
|
return this.isAttributeTypeLink ? 'url' : this.attributeType;
|
||||||
},
|
},
|
||||||
shouldShowErrorMessage() {
|
shouldShowErrorMessage() {
|
||||||
return this.v$.editedValue.$error;
|
return this.$v.editedValue.$error;
|
||||||
},
|
},
|
||||||
errorMessage() {
|
errorMessage() {
|
||||||
if (this.v$.editedValue.url) {
|
if (this.$v.editedValue.url) {
|
||||||
return this.$t('CUSTOM_ATTRIBUTES.VALIDATIONS.INVALID_URL');
|
return this.$t('CUSTOM_ATTRIBUTES.VALIDATIONS.INVALID_URL');
|
||||||
}
|
}
|
||||||
if (!this.v$.editedValue.regexValidation) {
|
if (!this.$v.editedValue.regexValidation) {
|
||||||
return this.regexCue
|
return this.regexCue
|
||||||
? this.regexCue
|
? this.regexCue
|
||||||
: this.$t('CUSTOM_ATTRIBUTES.VALIDATIONS.INVALID_INPUT');
|
: this.$t('CUSTOM_ATTRIBUTES.VALIDATIONS.INVALID_INPUT');
|
||||||
@@ -112,7 +246,7 @@ export default {
|
|||||||
},
|
},
|
||||||
contactId() {
|
contactId() {
|
||||||
// Fix to solve validation not resetting when contactId changes in contact page
|
// Fix to solve validation not resetting when contactId changes in contact page
|
||||||
this.v$.$reset();
|
this.$v.$reset();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -127,7 +261,8 @@ export default {
|
|||||||
required,
|
required,
|
||||||
regexValidation: value => {
|
regexValidation: value => {
|
||||||
return !(
|
return !(
|
||||||
this.attributeRegex && !getRegexp(this.attributeRegex).test(value)
|
this.attributeRegex &&
|
||||||
|
!this.getRegexp(this.attributeRegex).test(value)
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -152,7 +287,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
onClickAway() {
|
onClickAway() {
|
||||||
this.v$.$reset();
|
this.$v.$reset();
|
||||||
this.isEditing = false;
|
this.isEditing = false;
|
||||||
},
|
},
|
||||||
onEdit() {
|
onEdit() {
|
||||||
@@ -172,8 +307,8 @@ export default {
|
|||||||
this.attributeType === 'date'
|
this.attributeType === 'date'
|
||||||
? parseISO(this.editedValue)
|
? parseISO(this.editedValue)
|
||||||
: this.editedValue;
|
: this.editedValue;
|
||||||
this.v$.$touch();
|
this.$v.$touch();
|
||||||
if (this.v$.$invalid) {
|
if (this.$v.$invalid) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.isEditing = false;
|
this.isEditing = false;
|
||||||
@@ -181,7 +316,7 @@ export default {
|
|||||||
},
|
},
|
||||||
onDelete() {
|
onDelete() {
|
||||||
this.isEditing = false;
|
this.isEditing = false;
|
||||||
this.v$.$reset();
|
this.$v.$reset();
|
||||||
this.$emit('delete', this.attributeKey);
|
this.$emit('delete', this.attributeKey);
|
||||||
},
|
},
|
||||||
onCopy() {
|
onCopy() {
|
||||||
@@ -191,152 +326,14 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="px-4 py-3">
|
|
||||||
<div class="flex items-center mb-1">
|
|
||||||
<h4 class="flex items-center w-full m-0 text-sm error">
|
|
||||||
<div v-if="isAttributeTypeCheckbox" class="flex items-center">
|
|
||||||
<input
|
|
||||||
v-model="editedValue"
|
|
||||||
class="!my-0 mr-2 ml-0"
|
|
||||||
type="checkbox"
|
|
||||||
@change="onUpdate"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div class="flex items-center justify-between w-full">
|
|
||||||
<span
|
|
||||||
class="w-full inline-flex gap-1.5 items-start font-medium whitespace-nowrap text-sm mb-0"
|
|
||||||
:class="
|
|
||||||
v$.editedValue.$error
|
|
||||||
? 'text-red-400 dark:text-red-500'
|
|
||||||
: 'text-slate-800 dark:text-slate-100'
|
|
||||||
"
|
|
||||||
>
|
|
||||||
{{ label }}
|
|
||||||
<HelperTextPopup
|
|
||||||
v-if="description"
|
|
||||||
:message="description"
|
|
||||||
class="mt-0.5"
|
|
||||||
/>
|
|
||||||
</span>
|
|
||||||
<woot-button
|
|
||||||
v-if="showActions && value"
|
|
||||||
v-tooltip.left="$t('CUSTOM_ATTRIBUTES.ACTIONS.DELETE')"
|
|
||||||
variant="link"
|
|
||||||
size="medium"
|
|
||||||
color-scheme="secondary"
|
|
||||||
icon="delete"
|
|
||||||
class-names="flex justify-end w-4"
|
|
||||||
@click="onDelete"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</h4>
|
|
||||||
</div>
|
|
||||||
<div v-if="notAttributeTypeCheckboxAndList">
|
|
||||||
<div v-if="isEditing" v-on-clickaway="onClickAway">
|
|
||||||
<div class="flex items-center w-full mb-2">
|
|
||||||
<input
|
|
||||||
ref="inputfield"
|
|
||||||
v-model="editedValue"
|
|
||||||
:type="inputType"
|
|
||||||
class="!h-8 ltr:!rounded-r-none rtl:!rounded-l-none !mb-0 !text-sm"
|
|
||||||
autofocus="true"
|
|
||||||
:class="{ error: v$.editedValue.$error }"
|
|
||||||
@blur="v$.editedValue.$touch"
|
|
||||||
@keyup.enter="onUpdate"
|
|
||||||
/>
|
|
||||||
<div>
|
|
||||||
<woot-button
|
|
||||||
size="small"
|
|
||||||
icon="checkmark"
|
|
||||||
class="rounded-l-none rtl:rounded-r-none"
|
|
||||||
@click="onUpdate"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<span
|
|
||||||
v-if="shouldShowErrorMessage"
|
|
||||||
class="block w-full -mt-px text-sm font-normal text-red-400 dark:text-red-500"
|
|
||||||
>
|
|
||||||
{{ errorMessage }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
v-show="!isEditing"
|
|
||||||
class="flex group"
|
|
||||||
:class="{ 'is-editable': showActions }"
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
v-if="isAttributeTypeLink"
|
|
||||||
:href="hrefURL"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
class="group-hover:bg-slate-50 group-hover:dark:bg-slate-700 inline-block rounded-sm mb-0 break-all py-0.5 px-1"
|
|
||||||
>
|
|
||||||
{{ urlValue }}
|
|
||||||
</a>
|
|
||||||
<p
|
|
||||||
v-else
|
|
||||||
class="group-hover:bg-slate-50 group-hover:dark:bg-slate-700 inline-block rounded-sm mb-0 break-all py-0.5 px-1"
|
|
||||||
>
|
|
||||||
{{ displayValue || '---' }}
|
|
||||||
</p>
|
|
||||||
<div class="flex max-w-[2rem] gap-1 ml-1 rtl:mr-1 rtl:ml-0">
|
|
||||||
<woot-button
|
|
||||||
v-if="showActions && value"
|
|
||||||
v-tooltip="$t('CUSTOM_ATTRIBUTES.ACTIONS.COPY')"
|
|
||||||
variant="link"
|
|
||||||
size="small"
|
|
||||||
color-scheme="secondary"
|
|
||||||
icon="clipboard"
|
|
||||||
class-names="hidden group-hover:flex !w-6 flex-shrink-0"
|
|
||||||
@click="onCopy"
|
|
||||||
/>
|
|
||||||
<woot-button
|
|
||||||
v-if="showActions"
|
|
||||||
v-tooltip.right="$t('CUSTOM_ATTRIBUTES.ACTIONS.EDIT')"
|
|
||||||
variant="link"
|
|
||||||
size="small"
|
|
||||||
color-scheme="secondary"
|
|
||||||
icon="edit"
|
|
||||||
class-names="hidden group-hover:flex !w-6 flex-shrink-0"
|
|
||||||
@click="onEdit"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div v-if="isAttributeTypeList">
|
|
||||||
<MultiselectDropdown
|
|
||||||
:options="listOptions"
|
|
||||||
:selected-item="selectedItem"
|
|
||||||
:has-thumbnail="false"
|
|
||||||
:multiselector-placeholder="
|
|
||||||
$t('CUSTOM_ATTRIBUTES.FORM.ATTRIBUTE_TYPE.LIST.PLACEHOLDER')
|
|
||||||
"
|
|
||||||
:no-search-result="
|
|
||||||
$t('CUSTOM_ATTRIBUTES.FORM.ATTRIBUTE_TYPE.LIST.NO_RESULT')
|
|
||||||
"
|
|
||||||
:input-placeholder="
|
|
||||||
$t(
|
|
||||||
'CUSTOM_ATTRIBUTES.FORM.ATTRIBUTE_TYPE.LIST.SEARCH_INPUT_PLACEHOLDER'
|
|
||||||
)
|
|
||||||
"
|
|
||||||
@click="onUpdateListValue"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
::v-deep {
|
::v-deep {
|
||||||
.selector-wrap {
|
.selector-wrap {
|
||||||
@apply m-0 top-1;
|
@apply m-0 top-1;
|
||||||
|
|
||||||
.selector-name {
|
.selector-name {
|
||||||
@apply ml-0;
|
@apply ml-0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.name {
|
.name {
|
||||||
@apply ml-0;
|
@apply ml-0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { useStoreGetters } from 'dashboard/composables/store';
|
|
||||||
import { computed } from 'vue';
|
|
||||||
const props = defineProps({
|
|
||||||
showOnCustomBrandedInstance: {
|
|
||||||
type: Boolean,
|
|
||||||
default: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const getters = useStoreGetters();
|
|
||||||
|
|
||||||
const isACustomBrandedInstance =
|
|
||||||
getters['globalConfig/isACustomBrandedInstance'];
|
|
||||||
|
|
||||||
const shouldShowContent = computed(
|
|
||||||
() => props.showOnCustomBrandedInstance || !isACustomBrandedInstance.value
|
|
||||||
);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div v-if="shouldShowContent">
|
|
||||||
<slot />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
@@ -1,3 +1,28 @@
|
|||||||
|
<template>
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<woot-modal-header :header-title="$t('CONVERSATION.CUSTOM_SNOOZE.TITLE')" />
|
||||||
|
<form class="modal-content" @submit.prevent="chooseTime">
|
||||||
|
<date-picker
|
||||||
|
v-model="snoozeTime"
|
||||||
|
type="datetime"
|
||||||
|
inline
|
||||||
|
:lang="lang"
|
||||||
|
:disabled-date="disabledDate"
|
||||||
|
:disabled-time="disabledTime"
|
||||||
|
:popup-style="{ width: '100%' }"
|
||||||
|
/>
|
||||||
|
<div class="flex flex-row justify-end gap-2 py-2 px-0 w-full">
|
||||||
|
<woot-button variant="clear" @click.prevent="onClose">
|
||||||
|
{{ $t('CONVERSATION.CUSTOM_SNOOZE.CANCEL') }}
|
||||||
|
</woot-button>
|
||||||
|
<woot-button>
|
||||||
|
{{ $t('CONVERSATION.CUSTOM_SNOOZE.APPLY') }}
|
||||||
|
</woot-button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import DatePicker from 'vue2-datepicker';
|
import DatePicker from 'vue2-datepicker';
|
||||||
|
|
||||||
@@ -22,7 +47,7 @@ export default {
|
|||||||
this.$emit('close');
|
this.$emit('close');
|
||||||
},
|
},
|
||||||
chooseTime() {
|
chooseTime() {
|
||||||
this.$emit('chooseTime', this.snoozeTime);
|
this.$emit('choose-time', this.snoozeTime);
|
||||||
},
|
},
|
||||||
disabledDate(date) {
|
disabledDate(date) {
|
||||||
// Disable all the previous dates
|
// Disable all the previous dates
|
||||||
@@ -39,32 +64,6 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="flex flex-col">
|
|
||||||
<woot-modal-header :header-title="$t('CONVERSATION.CUSTOM_SNOOZE.TITLE')" />
|
|
||||||
<form class="modal-content" @submit.prevent="chooseTime">
|
|
||||||
<DatePicker
|
|
||||||
v-model="snoozeTime"
|
|
||||||
type="datetime"
|
|
||||||
inline
|
|
||||||
:lang="lang"
|
|
||||||
:disabled-date="disabledDate"
|
|
||||||
:disabled-time="disabledTime"
|
|
||||||
:popup-style="{ width: '100%' }"
|
|
||||||
/>
|
|
||||||
<div class="flex flex-row justify-end w-full gap-2 px-0 py-2">
|
|
||||||
<woot-button variant="clear" @click.prevent="onClose">
|
|
||||||
{{ $t('CONVERSATION.CUSTOM_SNOOZE.CANCEL') }}
|
|
||||||
</woot-button>
|
|
||||||
<woot-button>
|
|
||||||
{{ $t('CONVERSATION.CUSTOM_SNOOZE.APPLY') }}
|
|
||||||
</woot-button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.modal-content {
|
.modal-content {
|
||||||
@apply pt-2 px-5 pb-6;
|
@apply pt-2 px-5 pb-6;
|
||||||
|
|||||||
@@ -1,16 +1,3 @@
|
|||||||
<script setup>
|
|
||||||
defineProps({
|
|
||||||
title: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
description: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="flex flex-col items-start w-full gap-6">
|
<div class="flex flex-col items-start w-full gap-6">
|
||||||
<div class="flex flex-col w-full gap-4">
|
<div class="flex flex-col w-full gap-4">
|
||||||
@@ -29,3 +16,16 @@ defineProps({
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
defineProps({
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
description: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<div ref="observedElement" class="h-6 w-full" />
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -28,7 +32,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div ref="observedElement" class="h-6 w-full" />
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
<template>
|
||||||
|
<div class="text--container">
|
||||||
|
<woot-button size="small" class="button--text" @click="onCopy">
|
||||||
|
{{ $t('COMPONENTS.CODE.BUTTON_TEXT') }}
|
||||||
|
</woot-button>
|
||||||
|
<woot-button
|
||||||
|
variant="clear"
|
||||||
|
size="small"
|
||||||
|
class="button--visibility"
|
||||||
|
color-scheme="secondary"
|
||||||
|
:icon="masked ? 'eye-show' : 'eye-hide'"
|
||||||
|
@click.prevent="toggleMasked"
|
||||||
|
/>
|
||||||
|
<highlightjs v-if="value" :code="masked ? '•'.repeat(10) : value" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import 'highlight.js/styles/default.css';
|
import 'highlight.js/styles/default.css';
|
||||||
import { copyTextToClipboard } from 'shared/helpers/clipboard';
|
import { copyTextToClipboard } from 'shared/helpers/clipboard';
|
||||||
@@ -28,23 +45,6 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="text--container">
|
|
||||||
<woot-button size="small" class="button--text" @click="onCopy">
|
|
||||||
{{ $t('COMPONENTS.CODE.BUTTON_TEXT') }}
|
|
||||||
</woot-button>
|
|
||||||
<woot-button
|
|
||||||
variant="clear"
|
|
||||||
size="small"
|
|
||||||
class="button--visibility"
|
|
||||||
color-scheme="secondary"
|
|
||||||
:icon="masked ? 'eye-show' : 'eye-hide'"
|
|
||||||
@click.prevent="toggleMasked"
|
|
||||||
/>
|
|
||||||
<highlightjs v-if="value" :code="masked ? '•'.repeat(10) : value" />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.text--container {
|
.text--container {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|||||||
@@ -1,3 +1,36 @@
|
|||||||
|
<template>
|
||||||
|
<transition name="modal-fade">
|
||||||
|
<div
|
||||||
|
v-if="show"
|
||||||
|
:class="modalClassName"
|
||||||
|
transition="modal"
|
||||||
|
@mousedown="handleMouseDown"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
:class="{
|
||||||
|
'modal-container rtl:text-right shadow-md max-h-full overflow-auto relative bg-white dark:bg-slate-800 skip-context-menu': true,
|
||||||
|
'rounded-xl w-[37.5rem]': !fullWidth,
|
||||||
|
'items-center rounded-none flex h-full justify-center w-full':
|
||||||
|
fullWidth,
|
||||||
|
[size]: true,
|
||||||
|
}"
|
||||||
|
@mouse.stop
|
||||||
|
@mousedown="event => event.stopPropagation()"
|
||||||
|
>
|
||||||
|
<woot-button
|
||||||
|
v-if="showCloseButton"
|
||||||
|
color-scheme="secondary"
|
||||||
|
icon="dismiss"
|
||||||
|
variant="clear"
|
||||||
|
class="absolute z-10 ltr:right-2 rtl:left-2 top-2"
|
||||||
|
@click="close"
|
||||||
|
/>
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -75,39 +108,6 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<transition name="modal-fade">
|
|
||||||
<div
|
|
||||||
v-if="show"
|
|
||||||
:class="modalClassName"
|
|
||||||
transition="modal"
|
|
||||||
@mousedown="handleMouseDown"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="relative max-h-full overflow-auto bg-white shadow-md modal-container rtl:text-right dark:bg-slate-800 skip-context-menu"
|
|
||||||
:class="{
|
|
||||||
'rounded-xl w-[37.5rem]': !fullWidth,
|
|
||||||
'items-center rounded-none flex h-full justify-center w-full':
|
|
||||||
fullWidth,
|
|
||||||
[size]: true,
|
|
||||||
}"
|
|
||||||
@mouse.stop
|
|
||||||
@mousedown="event => event.stopPropagation()"
|
|
||||||
>
|
|
||||||
<woot-button
|
|
||||||
v-if="showCloseButton"
|
|
||||||
color-scheme="secondary"
|
|
||||||
icon="dismiss"
|
|
||||||
variant="clear"
|
|
||||||
class="absolute z-10 ltr:right-2 rtl:left-2 top-2"
|
|
||||||
@click="close"
|
|
||||||
/>
|
|
||||||
<slot />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</transition>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.modal-mask {
|
.modal-mask {
|
||||||
@apply flex items-center justify-center bg-modal-backdrop-light dark:bg-modal-backdrop-dark z-[9990] h-full left-0 fixed top-0 w-full;
|
@apply flex items-center justify-center bg-modal-backdrop-light dark:bg-modal-backdrop-dark z-[9990] h-full left-0 fixed top-0 w-full;
|
||||||
|
|||||||
@@ -1,28 +1,3 @@
|
|||||||
<script>
|
|
||||||
export default {
|
|
||||||
props: {
|
|
||||||
headerTitle: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
headerContent: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
headerContentValue: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
headerImage: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<!-- eslint-disable vue/no-unused-refs -->
|
|
||||||
<!-- Added ref for writing specs -->
|
|
||||||
<template>
|
<template>
|
||||||
<div class="flex flex-col items-start px-8 pt-8 pb-0">
|
<div class="flex flex-col items-start px-8 pt-8 pb-0">
|
||||||
<img v-if="headerImage" :src="headerImage" alt="No image" />
|
<img v-if="headerImage" :src="headerImage" alt="No image" />
|
||||||
@@ -48,3 +23,26 @@ export default {
|
|||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
headerTitle: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
headerContent: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
headerContentValue: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
headerImage: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -1,26 +1,3 @@
|
|||||||
<script>
|
|
||||||
export default {
|
|
||||||
props: {
|
|
||||||
title: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
subTitle: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
showBorder: {
|
|
||||||
type: Boolean,
|
|
||||||
default: true,
|
|
||||||
},
|
|
||||||
note: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="ml-0 mr-0 flex py-8 w-full xl:w-3/4 flex-col xl:flex-row"
|
class="ml-0 mr-0 flex py-8 w-full xl:w-3/4 flex-col xl:flex-row"
|
||||||
@@ -53,3 +30,26 @@ export default {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
subTitle: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
showBorder: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
note: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -1,3 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<woot-button
|
||||||
|
:size="size"
|
||||||
|
variant="clear"
|
||||||
|
color-scheme="secondary"
|
||||||
|
class="-ml-3 text-black-900 dark:text-slate-300"
|
||||||
|
icon="list"
|
||||||
|
@click="onMenuItemClick"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { BUS_EVENTS } from 'shared/constants/busEvents';
|
import { BUS_EVENTS } from 'shared/constants/busEvents';
|
||||||
|
|
||||||
@@ -15,14 +26,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<woot-button
|
|
||||||
:size="size"
|
|
||||||
variant="clear"
|
|
||||||
color-scheme="secondary"
|
|
||||||
class="-ml-3 text-black-900 dark:text-slate-300"
|
|
||||||
icon="list"
|
|
||||||
@click="onMenuItemClick"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,24 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div
|
||||||
|
class="shadow-sm bg-slate-800 dark:bg-slate-700 rounded-[4px] items-center gap-3 inline-flex mb-2 max-w-[25rem] min-h-[1.875rem] min-w-[15rem] px-6 py-3 text-left"
|
||||||
|
>
|
||||||
|
<div class="text-white dark:text-white text-sm font-medium">
|
||||||
|
{{ message }}
|
||||||
|
</div>
|
||||||
|
<div v-if="action">
|
||||||
|
<router-link
|
||||||
|
v-if="action.type == 'link'"
|
||||||
|
:to="action.to"
|
||||||
|
class="text-woot-500 dark:text-woot-500 cursor-pointer font-medium hover:text-woot-600 dark:hover:text-woot-600 select-none"
|
||||||
|
>
|
||||||
|
{{ action.message }}
|
||||||
|
</router-link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -6,6 +27,11 @@ export default {
|
|||||||
type: Object,
|
type: Object,
|
||||||
default: () => {},
|
default: () => {},
|
||||||
},
|
},
|
||||||
|
showButton: Boolean,
|
||||||
|
duration: {
|
||||||
|
type: [String, Number],
|
||||||
|
default: 3000,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@@ -16,24 +42,3 @@ export default {
|
|||||||
methods: {},
|
methods: {},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<div
|
|
||||||
class="shadow-sm bg-slate-800 dark:bg-slate-700 rounded-[4px] items-center gap-3 inline-flex mb-2 max-w-[25rem] min-h-[1.875rem] min-w-[15rem] px-6 py-3 text-left"
|
|
||||||
>
|
|
||||||
<div class="text-sm font-medium text-white dark:text-white">
|
|
||||||
{{ message }}
|
|
||||||
</div>
|
|
||||||
<div v-if="action">
|
|
||||||
<router-link
|
|
||||||
v-if="action.type == 'link'"
|
|
||||||
:to="action.to"
|
|
||||||
class="font-medium cursor-pointer select-none text-woot-500 dark:text-woot-500 hover:text-woot-600 dark:hover:text-woot-600"
|
|
||||||
>
|
|
||||||
{{ action.message }}
|
|
||||||
</router-link>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,18 @@
|
|||||||
|
<template>
|
||||||
|
<transition-group
|
||||||
|
name="toast-fade"
|
||||||
|
tag="div"
|
||||||
|
class="left-0 my-0 mx-auto max-w-[25rem] overflow-hidden absolute right-0 text-center top-4 z-[9999]"
|
||||||
|
>
|
||||||
|
<woot-snackbar
|
||||||
|
v-for="snackMessage in snackMessages"
|
||||||
|
:key="snackMessage.key"
|
||||||
|
:message="snackMessage.message"
|
||||||
|
:action="snackMessage.action"
|
||||||
|
/>
|
||||||
|
</transition-group>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import WootSnackbar from './Snackbar.vue';
|
import WootSnackbar from './Snackbar.vue';
|
||||||
|
|
||||||
@@ -38,18 +53,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<transition-group
|
|
||||||
name="toast-fade"
|
|
||||||
tag="div"
|
|
||||||
class="left-0 my-0 mx-auto max-w-[25rem] overflow-hidden absolute right-0 text-center top-4 z-[9999]"
|
|
||||||
>
|
|
||||||
<WootSnackbar
|
|
||||||
v-for="snackMessage in snackMessages"
|
|
||||||
:key="snackMessage.key"
|
|
||||||
:message="snackMessage.message"
|
|
||||||
:action="snackMessage.action"
|
|
||||||
/>
|
|
||||||
</transition-group>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,8 +1,19 @@
|
|||||||
|
<template>
|
||||||
|
<banner
|
||||||
|
v-if="shouldShowBanner"
|
||||||
|
color-scheme="alert"
|
||||||
|
:banner-message="bannerMessage"
|
||||||
|
:action-button-label="actionButtonMessage"
|
||||||
|
has-action-button
|
||||||
|
@click="routeToBilling"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import { useAdmin } from 'dashboard/composables/useAdmin';
|
import { useAdmin } from 'dashboard/composables/useAdmin';
|
||||||
import { useAccount } from 'dashboard/composables/useAccount';
|
|
||||||
import Banner from 'dashboard/components/ui/Banner.vue';
|
import Banner from 'dashboard/components/ui/Banner.vue';
|
||||||
|
import accountMixin from 'dashboard/mixins/account';
|
||||||
|
|
||||||
const EMPTY_SUBSCRIPTION_INFO = {
|
const EMPTY_SUBSCRIPTION_INFO = {
|
||||||
status: null,
|
status: null,
|
||||||
@@ -11,13 +22,10 @@ const EMPTY_SUBSCRIPTION_INFO = {
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { Banner },
|
components: { Banner },
|
||||||
|
mixins: [accountMixin],
|
||||||
setup() {
|
setup() {
|
||||||
const { isAdmin } = useAdmin();
|
const { isAdmin } = useAdmin();
|
||||||
|
|
||||||
const { accountId } = useAccount();
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
accountId,
|
|
||||||
isAdmin,
|
isAdmin,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@@ -78,14 +86,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<Banner
|
|
||||||
v-if="shouldShowBanner"
|
|
||||||
color-scheme="alert"
|
|
||||||
:banner-message="bannerMessage"
|
|
||||||
:action-button-label="actionButtonMessage"
|
|
||||||
has-action-button
|
|
||||||
@click="routeToBilling"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,10 +1,24 @@
|
|||||||
|
<template>
|
||||||
|
<banner
|
||||||
|
v-if="shouldShowBanner"
|
||||||
|
color-scheme="alert"
|
||||||
|
:banner-message="bannerMessage"
|
||||||
|
:action-button-label="actionButtonMessage"
|
||||||
|
action-button-icon="mail"
|
||||||
|
has-action-button
|
||||||
|
@click="resendVerificationEmail"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Banner from 'dashboard/components/ui/Banner.vue';
|
import Banner from 'dashboard/components/ui/Banner.vue';
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
|
import accountMixin from 'dashboard/mixins/account';
|
||||||
import { useAlert } from 'dashboard/composables';
|
import { useAlert } from 'dashboard/composables';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { Banner },
|
components: { Banner },
|
||||||
|
mixins: [accountMixin],
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters({
|
...mapGetters({
|
||||||
currentUser: 'getCurrentUser',
|
currentUser: 'getCurrentUser',
|
||||||
@@ -27,15 +41,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<Banner
|
|
||||||
v-if="shouldShowBanner"
|
|
||||||
color-scheme="alert"
|
|
||||||
:banner-message="bannerMessage"
|
|
||||||
:action-button-label="actionButtonMessage"
|
|
||||||
action-button-icon="mail"
|
|
||||||
has-action-button
|
|
||||||
@click="resendVerificationEmail"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<banner
|
||||||
|
v-if="shouldShowBanner"
|
||||||
|
color-scheme="primary"
|
||||||
|
:banner-message="bannerMessage"
|
||||||
|
href-link="https://github.com/chatwoot/chatwoot/releases"
|
||||||
|
:href-link-text="$t('GENERAL_SETTINGS.LEARN_MORE')"
|
||||||
|
has-close-button
|
||||||
|
@close="dismissUpdateBanner"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import Banner from 'dashboard/components/ui/Banner.vue';
|
import Banner from 'dashboard/components/ui/Banner.vue';
|
||||||
import { LOCAL_STORAGE_KEYS } from 'dashboard/constants/localStorage';
|
import { LOCAL_STORAGE_KEYS } from 'dashboard/constants/localStorage';
|
||||||
@@ -66,15 +77,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<Banner
|
|
||||||
v-if="shouldShowBanner"
|
|
||||||
color-scheme="primary"
|
|
||||||
:banner-message="bannerMessage"
|
|
||||||
href-link="https://github.com/chatwoot/chatwoot/releases"
|
|
||||||
:href-link-text="$t('GENERAL_SETTINGS.LEARN_MORE')"
|
|
||||||
has-close-button
|
|
||||||
@close="dismissUpdateBanner"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,17 +1,23 @@
|
|||||||
|
<template>
|
||||||
|
<banner
|
||||||
|
v-if="shouldShowBanner"
|
||||||
|
color-scheme="alert"
|
||||||
|
:banner-message="bannerMessage"
|
||||||
|
:action-button-label="actionButtonMessage"
|
||||||
|
has-action-button
|
||||||
|
@click="routeToBilling"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Banner from 'dashboard/components/ui/Banner.vue';
|
import Banner from 'dashboard/components/ui/Banner.vue';
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import { useAccount } from 'dashboard/composables/useAccount';
|
import accountMixin from 'dashboard/mixins/account';
|
||||||
import { differenceInDays } from 'date-fns';
|
import { differenceInDays } from 'date-fns';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { Banner },
|
components: { Banner },
|
||||||
setup() {
|
mixins: [accountMixin],
|
||||||
const { accountId } = useAccount();
|
|
||||||
return {
|
|
||||||
accountId,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
data() {
|
data() {
|
||||||
return { conversationMeta: {} };
|
return { conversationMeta: {} };
|
||||||
},
|
},
|
||||||
@@ -80,14 +86,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<Banner
|
|
||||||
v-if="shouldShowBanner"
|
|
||||||
color-scheme="alert"
|
|
||||||
:banner-message="bannerMessage"
|
|
||||||
:action-button-label="actionButtonMessage"
|
|
||||||
has-action-button
|
|
||||||
@click="routeToBilling"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
<template>
|
||||||
|
<kbd class="hotkey p-0.5 min-w-[1rem] uppercase" :class="customClass">
|
||||||
|
<slot />
|
||||||
|
</kbd>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -9,12 +14,6 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<kbd class="hotkey p-0.5 min-w-[1rem] uppercase" :class="customClass">
|
|
||||||
<slot />
|
|
||||||
</kbd>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
kbd.hotkey {
|
kbd.hotkey {
|
||||||
@apply inline-flex leading-[0.625rem] rounded tracking-wide flex-shrink-0 items-center select-none justify-center;
|
@apply inline-flex leading-[0.625rem] rounded tracking-wide flex-shrink-0 items-center select-none justify-center;
|
||||||
|
|||||||
@@ -1,10 +1,18 @@
|
|||||||
<script>
|
<template>
|
||||||
import Spinner from 'shared/components/Spinner.vue';
|
<button :type="type" class="button nice" :class="variant" @click="onClick">
|
||||||
|
<fluent-icon
|
||||||
|
v-if="!isLoading && icon"
|
||||||
|
class="icon"
|
||||||
|
:class="buttonIconClass"
|
||||||
|
:icon="icon"
|
||||||
|
/>
|
||||||
|
<spinner v-if="isLoading" />
|
||||||
|
<slot />
|
||||||
|
</button>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
export default {
|
export default {
|
||||||
components: {
|
|
||||||
Spinner,
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
isLoading: {
|
isLoading: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@@ -34,16 +42,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<button :type="type" class="button nice" :class="variant" @click="onClick">
|
|
||||||
<fluent-icon
|
|
||||||
v-if="!isLoading && icon"
|
|
||||||
class="icon"
|
|
||||||
:class="buttonIconClass"
|
|
||||||
:icon="icon"
|
|
||||||
/>
|
|
||||||
<Spinner v-if="isLoading" />
|
|
||||||
<slot />
|
|
||||||
</button>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,17 @@
|
|||||||
|
<template>
|
||||||
|
<button
|
||||||
|
:type="type"
|
||||||
|
data-testid="submit_button"
|
||||||
|
:disabled="disabled"
|
||||||
|
:class="computedClass"
|
||||||
|
@click="onClick"
|
||||||
|
>
|
||||||
|
<fluent-icon v-if="!!iconClass" :icon="iconClass" class="icon" />
|
||||||
|
<span>{{ buttonText }}</span>
|
||||||
|
<spinner v-if="loading" class="ml-2" :color-scheme="spinnerClass" />
|
||||||
|
</button>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Spinner from 'shared/components/Spinner.vue';
|
import Spinner from 'shared/components/Spinner.vue';
|
||||||
|
|
||||||
@@ -47,21 +61,6 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<button
|
|
||||||
:type="type"
|
|
||||||
data-testid="submit_button"
|
|
||||||
:disabled="disabled"
|
|
||||||
:class="computedClass"
|
|
||||||
@click="onClick"
|
|
||||||
>
|
|
||||||
<fluent-icon v-if="!!iconClass" :icon="iconClass" class="icon" />
|
|
||||||
<span>{{ buttonText }}</span>
|
|
||||||
<Spinner v-if="loading" class="ml-2" :color-scheme="spinnerClass" />
|
|
||||||
</button>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
button:disabled {
|
button:disabled {
|
||||||
@apply bg-woot-100 dark:bg-woot-500/25 dark:text-slate-500 opacity-100;
|
@apply bg-woot-100 dark:bg-woot-500/25 dark:text-slate-500 opacity-100;
|
||||||
|
|||||||
@@ -1,141 +1,3 @@
|
|||||||
<script setup>
|
|
||||||
import { ref, computed } from 'vue';
|
|
||||||
import { useAlert } from 'dashboard/composables';
|
|
||||||
import { useToggle } from '@vueuse/core';
|
|
||||||
import { useI18n } from 'dashboard/composables/useI18n';
|
|
||||||
import { useStore, useStoreGetters } from 'dashboard/composables/store';
|
|
||||||
import { useEmitter } from 'dashboard/composables/emitter';
|
|
||||||
import { useKeyboardEvents } from 'dashboard/composables/useKeyboardEvents';
|
|
||||||
|
|
||||||
import WootDropdownItem from 'shared/components/ui/dropdown/DropdownItem.vue';
|
|
||||||
import WootDropdownMenu from 'shared/components/ui/dropdown/DropdownMenu.vue';
|
|
||||||
import wootConstants from 'dashboard/constants/globals';
|
|
||||||
import {
|
|
||||||
CMD_REOPEN_CONVERSATION,
|
|
||||||
CMD_RESOLVE_CONVERSATION,
|
|
||||||
} from 'dashboard/helper/commandbar/events';
|
|
||||||
|
|
||||||
const store = useStore();
|
|
||||||
const getters = useStoreGetters();
|
|
||||||
const { t } = useI18n();
|
|
||||||
|
|
||||||
const arrowDownButtonRef = ref(null);
|
|
||||||
const isLoading = ref(false);
|
|
||||||
|
|
||||||
const [showActionsDropdown, toggleDropdown] = useToggle();
|
|
||||||
const closeDropdown = () => toggleDropdown(false);
|
|
||||||
const openDropdown = () => toggleDropdown(true);
|
|
||||||
|
|
||||||
const currentChat = computed(() => getters.getSelectedChat.value);
|
|
||||||
|
|
||||||
const isOpen = computed(
|
|
||||||
() => currentChat.value.status === wootConstants.STATUS_TYPE.OPEN
|
|
||||||
);
|
|
||||||
const isPending = computed(
|
|
||||||
() => currentChat.value.status === wootConstants.STATUS_TYPE.PENDING
|
|
||||||
);
|
|
||||||
const isResolved = computed(
|
|
||||||
() => currentChat.value.status === wootConstants.STATUS_TYPE.RESOLVED
|
|
||||||
);
|
|
||||||
const isSnoozed = computed(
|
|
||||||
() => currentChat.value.status === wootConstants.STATUS_TYPE.SNOOZED
|
|
||||||
);
|
|
||||||
|
|
||||||
const buttonClass = computed(() => {
|
|
||||||
if (isPending.value) return 'primary';
|
|
||||||
if (isOpen.value) return 'success';
|
|
||||||
if (isResolved.value) return 'warning';
|
|
||||||
return '';
|
|
||||||
});
|
|
||||||
|
|
||||||
const showAdditionalActions = computed(
|
|
||||||
() => !isPending.value && !isSnoozed.value
|
|
||||||
);
|
|
||||||
|
|
||||||
const showOpenButton = computed(() => {
|
|
||||||
return isPending.value || isSnoozed.value;
|
|
||||||
});
|
|
||||||
|
|
||||||
const getConversationParams = () => {
|
|
||||||
const allConversations = document.querySelectorAll(
|
|
||||||
'.conversations-list .conversation'
|
|
||||||
);
|
|
||||||
|
|
||||||
const activeConversation = document.querySelector(
|
|
||||||
'div.conversations-list div.conversation.active'
|
|
||||||
);
|
|
||||||
const activeConversationIndex = [...allConversations].indexOf(
|
|
||||||
activeConversation
|
|
||||||
);
|
|
||||||
const lastConversationIndex = allConversations.length - 1;
|
|
||||||
|
|
||||||
return {
|
|
||||||
all: allConversations,
|
|
||||||
activeIndex: activeConversationIndex,
|
|
||||||
lastIndex: lastConversationIndex,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
const openSnoozeModal = () => {
|
|
||||||
const ninja = document.querySelector('ninja-keys');
|
|
||||||
ninja.open({ parent: 'snooze_conversation' });
|
|
||||||
};
|
|
||||||
|
|
||||||
const toggleStatus = (status, snoozedUntil) => {
|
|
||||||
closeDropdown();
|
|
||||||
isLoading.value = true;
|
|
||||||
store
|
|
||||||
.dispatch('toggleStatus', {
|
|
||||||
conversationId: currentChat.value.id,
|
|
||||||
status,
|
|
||||||
snoozedUntil,
|
|
||||||
})
|
|
||||||
.then(() => {
|
|
||||||
useAlert(t('CONVERSATION.CHANGE_STATUS'));
|
|
||||||
isLoading.value = false;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const onCmdOpenConversation = () => {
|
|
||||||
toggleStatus(wootConstants.STATUS_TYPE.OPEN);
|
|
||||||
};
|
|
||||||
|
|
||||||
const onCmdResolveConversation = () => {
|
|
||||||
toggleStatus(wootConstants.STATUS_TYPE.RESOLVED);
|
|
||||||
};
|
|
||||||
|
|
||||||
const keyboardEvents = {
|
|
||||||
'Alt+KeyM': {
|
|
||||||
action: () => arrowDownButtonRef.value?.$el.click(),
|
|
||||||
allowOnFocusedInput: true,
|
|
||||||
},
|
|
||||||
'Alt+KeyE': {
|
|
||||||
action: async () => {
|
|
||||||
await toggleStatus(wootConstants.STATUS_TYPE.RESOLVED);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'$mod+Alt+KeyE': {
|
|
||||||
action: async event => {
|
|
||||||
const { all, activeIndex, lastIndex } = getConversationParams();
|
|
||||||
await toggleStatus(wootConstants.STATUS_TYPE.RESOLVED);
|
|
||||||
|
|
||||||
if (activeIndex < lastIndex) {
|
|
||||||
all[activeIndex + 1].click();
|
|
||||||
} else if (all.length > 1) {
|
|
||||||
all[0].click();
|
|
||||||
document.querySelector('.conversations-list').scrollTop = 0;
|
|
||||||
}
|
|
||||||
event.preventDefault();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
useKeyboardEvents(keyboardEvents);
|
|
||||||
|
|
||||||
useEmitter(CMD_REOPEN_CONVERSATION, onCmdOpenConversation);
|
|
||||||
useEmitter(CMD_RESOLVE_CONVERSATION, onCmdResolveConversation);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="relative flex items-center justify-end resolve-actions">
|
<div class="relative flex items-center justify-end resolve-actions">
|
||||||
<div class="button-group">
|
<div class="button-group">
|
||||||
@@ -159,7 +21,7 @@ useEmitter(CMD_RESOLVE_CONVERSATION, onCmdResolveConversation);
|
|||||||
:is-loading="isLoading"
|
:is-loading="isLoading"
|
||||||
@click="onCmdOpenConversation"
|
@click="onCmdOpenConversation"
|
||||||
>
|
>
|
||||||
{{ t('CONVERSATION.HEADER.REOPEN_ACTION') }}
|
{{ $t('CONVERSATION.HEADER.REOPEN_ACTION') }}
|
||||||
</woot-button>
|
</woot-button>
|
||||||
<woot-button
|
<woot-button
|
||||||
v-else-if="showOpenButton"
|
v-else-if="showOpenButton"
|
||||||
@@ -169,11 +31,11 @@ useEmitter(CMD_RESOLVE_CONVERSATION, onCmdResolveConversation);
|
|||||||
:is-loading="isLoading"
|
:is-loading="isLoading"
|
||||||
@click="onCmdOpenConversation"
|
@click="onCmdOpenConversation"
|
||||||
>
|
>
|
||||||
{{ t('CONVERSATION.HEADER.OPEN_ACTION') }}
|
{{ $t('CONVERSATION.HEADER.OPEN_ACTION') }}
|
||||||
</woot-button>
|
</woot-button>
|
||||||
<woot-button
|
<woot-button
|
||||||
v-if="showAdditionalActions"
|
v-if="showAdditionalActions"
|
||||||
ref="arrowDownButtonRef"
|
ref="arrowDownButton"
|
||||||
:color-scheme="buttonClass"
|
:color-scheme="buttonClass"
|
||||||
:disabled="isLoading"
|
:disabled="isLoading"
|
||||||
icon="chevron-down"
|
icon="chevron-down"
|
||||||
@@ -184,10 +46,10 @@ useEmitter(CMD_RESOLVE_CONVERSATION, onCmdResolveConversation);
|
|||||||
<div
|
<div
|
||||||
v-if="showActionsDropdown"
|
v-if="showActionsDropdown"
|
||||||
v-on-clickaway="closeDropdown"
|
v-on-clickaway="closeDropdown"
|
||||||
class="dropdown-pane dropdown-pane--open left-auto top-[2.625rem] mt-0.5 right-0 max-w-[12.5rem] min-w-[9.75rem]"
|
class="dropdown-pane dropdown-pane--open"
|
||||||
>
|
>
|
||||||
<WootDropdownMenu class="mb-0">
|
<woot-dropdown-menu class="mb-0">
|
||||||
<WootDropdownItem v-if="!isPending">
|
<woot-dropdown-item v-if="!isPending">
|
||||||
<woot-button
|
<woot-button
|
||||||
variant="clear"
|
variant="clear"
|
||||||
color-scheme="secondary"
|
color-scheme="secondary"
|
||||||
@@ -195,27 +57,173 @@ useEmitter(CMD_RESOLVE_CONVERSATION, onCmdResolveConversation);
|
|||||||
icon="snooze"
|
icon="snooze"
|
||||||
@click="() => openSnoozeModal()"
|
@click="() => openSnoozeModal()"
|
||||||
>
|
>
|
||||||
{{ t('CONVERSATION.RESOLVE_DROPDOWN.SNOOZE_UNTIL') }}
|
{{ $t('CONVERSATION.RESOLVE_DROPDOWN.SNOOZE_UNTIL') }}
|
||||||
</woot-button>
|
</woot-button>
|
||||||
</WootDropdownItem>
|
</woot-dropdown-item>
|
||||||
<WootDropdownItem v-if="!isPending">
|
<woot-dropdown-item v-if="!isPending">
|
||||||
<woot-button
|
<woot-button
|
||||||
variant="clear"
|
variant="clear"
|
||||||
color-scheme="secondary"
|
color-scheme="secondary"
|
||||||
size="small"
|
size="small"
|
||||||
icon="book-clock"
|
icon="book-clock"
|
||||||
@click="() => toggleStatus(wootConstants.STATUS_TYPE.PENDING)"
|
@click="() => toggleStatus(STATUS_TYPE.PENDING)"
|
||||||
>
|
>
|
||||||
{{ t('CONVERSATION.RESOLVE_DROPDOWN.MARK_PENDING') }}
|
{{ $t('CONVERSATION.RESOLVE_DROPDOWN.MARK_PENDING') }}
|
||||||
</woot-button>
|
</woot-button>
|
||||||
</WootDropdownItem>
|
</woot-dropdown-item>
|
||||||
</WootDropdownMenu>
|
</woot-dropdown-menu>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { mapGetters } from 'vuex';
|
||||||
|
import { useAlert } from 'dashboard/composables';
|
||||||
|
import keyboardEventListenerMixins from 'shared/mixins/keyboardEventListenerMixins';
|
||||||
|
import WootDropdownItem from 'shared/components/ui/dropdown/DropdownItem.vue';
|
||||||
|
import WootDropdownMenu from 'shared/components/ui/dropdown/DropdownMenu.vue';
|
||||||
|
|
||||||
|
import wootConstants from 'dashboard/constants/globals';
|
||||||
|
import {
|
||||||
|
CMD_REOPEN_CONVERSATION,
|
||||||
|
CMD_RESOLVE_CONVERSATION,
|
||||||
|
} from '../../routes/dashboard/commands/commandBarBusEvents';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
WootDropdownItem,
|
||||||
|
WootDropdownMenu,
|
||||||
|
},
|
||||||
|
mixins: [keyboardEventListenerMixins],
|
||||||
|
props: { conversationId: { type: [String, Number], required: true } },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
isLoading: false,
|
||||||
|
showActionsDropdown: false,
|
||||||
|
STATUS_TYPE: wootConstants.STATUS_TYPE,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters({ currentChat: 'getSelectedChat' }),
|
||||||
|
isOpen() {
|
||||||
|
return this.currentChat.status === wootConstants.STATUS_TYPE.OPEN;
|
||||||
|
},
|
||||||
|
isPending() {
|
||||||
|
return this.currentChat.status === wootConstants.STATUS_TYPE.PENDING;
|
||||||
|
},
|
||||||
|
isResolved() {
|
||||||
|
return this.currentChat.status === wootConstants.STATUS_TYPE.RESOLVED;
|
||||||
|
},
|
||||||
|
isSnoozed() {
|
||||||
|
return this.currentChat.status === wootConstants.STATUS_TYPE.SNOOZED;
|
||||||
|
},
|
||||||
|
buttonClass() {
|
||||||
|
if (this.isPending) return 'primary';
|
||||||
|
if (this.isOpen) return 'success';
|
||||||
|
if (this.isResolved) return 'warning';
|
||||||
|
return '';
|
||||||
|
},
|
||||||
|
showAdditionalActions() {
|
||||||
|
return !this.isPending && !this.isSnoozed;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.$emitter.on(CMD_REOPEN_CONVERSATION, this.onCmdOpenConversation);
|
||||||
|
this.$emitter.on(CMD_RESOLVE_CONVERSATION, this.onCmdResolveConversation);
|
||||||
|
},
|
||||||
|
destroyed() {
|
||||||
|
this.$emitter.off(CMD_REOPEN_CONVERSATION, this.onCmdOpenConversation);
|
||||||
|
this.$emitter.off(CMD_RESOLVE_CONVERSATION, this.onCmdResolveConversation);
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getKeyboardEvents() {
|
||||||
|
return {
|
||||||
|
'Alt+KeyM': {
|
||||||
|
action: () => this.$refs.arrowDownButton?.$el.click(),
|
||||||
|
allowOnFocusedInput: true,
|
||||||
|
},
|
||||||
|
'Alt+KeyE': this.resolveOrToast,
|
||||||
|
'$mod+Alt+KeyE': async event => {
|
||||||
|
const { all, activeIndex, lastIndex } = this.getConversationParams();
|
||||||
|
await this.resolveOrToast();
|
||||||
|
|
||||||
|
if (activeIndex < lastIndex) {
|
||||||
|
all[activeIndex + 1].click();
|
||||||
|
} else if (all.length > 1) {
|
||||||
|
all[0].click();
|
||||||
|
document.querySelector('.conversations-list').scrollTop = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
event.preventDefault();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
getConversationParams() {
|
||||||
|
const allConversations = document.querySelectorAll(
|
||||||
|
'.conversations-list .conversation'
|
||||||
|
);
|
||||||
|
|
||||||
|
const activeConversation = document.querySelector(
|
||||||
|
'div.conversations-list div.conversation.active'
|
||||||
|
);
|
||||||
|
const activeConversationIndex = [...allConversations].indexOf(
|
||||||
|
activeConversation
|
||||||
|
);
|
||||||
|
const lastConversationIndex = allConversations.length - 1;
|
||||||
|
|
||||||
|
return {
|
||||||
|
all: allConversations,
|
||||||
|
activeIndex: activeConversationIndex,
|
||||||
|
lastIndex: lastConversationIndex,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
async resolveOrToast() {
|
||||||
|
try {
|
||||||
|
await this.toggleStatus(wootConstants.STATUS_TYPE.RESOLVED);
|
||||||
|
} catch (error) {
|
||||||
|
// error
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onCmdOpenConversation() {
|
||||||
|
this.toggleStatus(this.STATUS_TYPE.OPEN);
|
||||||
|
},
|
||||||
|
onCmdResolveConversation() {
|
||||||
|
this.toggleStatus(this.STATUS_TYPE.RESOLVED);
|
||||||
|
},
|
||||||
|
showOpenButton() {
|
||||||
|
return this.isResolved || this.isSnoozed;
|
||||||
|
},
|
||||||
|
closeDropdown() {
|
||||||
|
this.showActionsDropdown = false;
|
||||||
|
},
|
||||||
|
openDropdown() {
|
||||||
|
this.showActionsDropdown = true;
|
||||||
|
},
|
||||||
|
toggleStatus(status, snoozedUntil) {
|
||||||
|
this.closeDropdown();
|
||||||
|
this.isLoading = true;
|
||||||
|
this.$store
|
||||||
|
.dispatch('toggleStatus', {
|
||||||
|
conversationId: this.currentChat.id,
|
||||||
|
status,
|
||||||
|
snoozedUntil,
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
useAlert(this.$t('CONVERSATION.CHANGE_STATUS'));
|
||||||
|
this.isLoading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
openSnoozeModal() {
|
||||||
|
const ninja = document.querySelector('ninja-keys');
|
||||||
|
ninja.open({ parent: 'snooze_conversation' });
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.dropdown-pane {
|
.dropdown-pane {
|
||||||
|
@apply left-auto top-[2.625rem] mt-0.5 right-0 max-w-[12.5rem] min-w-[9.75rem];
|
||||||
|
|
||||||
.dropdown-menu__item {
|
.dropdown-menu__item {
|
||||||
@apply mb-0;
|
@apply mb-0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,50 @@
|
|||||||
|
<template>
|
||||||
|
<woot-dropdown-menu>
|
||||||
|
<woot-dropdown-header :title="$t('SIDEBAR.SET_AVAILABILITY_TITLE')" />
|
||||||
|
<woot-dropdown-item
|
||||||
|
v-for="status in availabilityStatuses"
|
||||||
|
:key="status.value"
|
||||||
|
class="flex items-baseline"
|
||||||
|
>
|
||||||
|
<woot-button
|
||||||
|
size="small"
|
||||||
|
:color-scheme="status.disabled ? '' : 'secondary'"
|
||||||
|
:variant="status.disabled ? 'smooth' : 'clear'"
|
||||||
|
class-names="status-change--dropdown-button"
|
||||||
|
@click="changeAvailabilityStatus(status.value)"
|
||||||
|
>
|
||||||
|
<availability-status-badge :status="status.value" />
|
||||||
|
{{ status.label }}
|
||||||
|
</woot-button>
|
||||||
|
</woot-dropdown-item>
|
||||||
|
<woot-dropdown-divider />
|
||||||
|
<woot-dropdown-item class="flex items-center justify-between p-2 m-0">
|
||||||
|
<div class="flex items-center">
|
||||||
|
<fluent-icon
|
||||||
|
v-tooltip.right-start="$t('SIDEBAR.SET_AUTO_OFFLINE.INFO_TEXT')"
|
||||||
|
icon="info"
|
||||||
|
size="14"
|
||||||
|
class="mt-px"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<span
|
||||||
|
class="mx-1 my-0 text-xs font-medium text-slate-600 dark:text-slate-100"
|
||||||
|
>
|
||||||
|
{{ $t('SIDEBAR.SET_AUTO_OFFLINE.TEXT') }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<woot-switch
|
||||||
|
size="small"
|
||||||
|
class="mx-1 mt-px mb-0"
|
||||||
|
:value="currentUserAutoOffline"
|
||||||
|
@input="updateAutoOffline"
|
||||||
|
/>
|
||||||
|
</woot-dropdown-item>
|
||||||
|
<woot-dropdown-divider />
|
||||||
|
</woot-dropdown-menu>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import { useAlert } from 'dashboard/composables';
|
import { useAlert } from 'dashboard/composables';
|
||||||
@@ -89,50 +136,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<WootDropdownMenu>
|
|
||||||
<WootDropdownHeader :title="$t('SIDEBAR.SET_AVAILABILITY_TITLE')" />
|
|
||||||
<WootDropdownItem
|
|
||||||
v-for="status in availabilityStatuses"
|
|
||||||
:key="status.value"
|
|
||||||
class="flex items-baseline"
|
|
||||||
>
|
|
||||||
<woot-button
|
|
||||||
size="small"
|
|
||||||
:color-scheme="status.disabled ? '' : 'secondary'"
|
|
||||||
:variant="status.disabled ? 'smooth' : 'clear'"
|
|
||||||
class-names="status-change--dropdown-button"
|
|
||||||
@click="changeAvailabilityStatus(status.value)"
|
|
||||||
>
|
|
||||||
<AvailabilityStatusBadge :status="status.value" />
|
|
||||||
{{ status.label }}
|
|
||||||
</woot-button>
|
|
||||||
</WootDropdownItem>
|
|
||||||
<WootDropdownDivider />
|
|
||||||
<WootDropdownItem class="flex items-center justify-between p-2 m-0">
|
|
||||||
<div class="flex items-center">
|
|
||||||
<fluent-icon
|
|
||||||
v-tooltip.right-start="$t('SIDEBAR.SET_AUTO_OFFLINE.INFO_TEXT')"
|
|
||||||
icon="info"
|
|
||||||
size="14"
|
|
||||||
class="mt-px"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<span
|
|
||||||
class="mx-1 my-0 text-xs font-medium text-slate-600 dark:text-slate-100"
|
|
||||||
>
|
|
||||||
{{ $t('SIDEBAR.SET_AUTO_OFFLINE.TEXT') }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<woot-switch
|
|
||||||
size="small"
|
|
||||||
class="mx-1 mt-px mb-0"
|
|
||||||
:value="currentUserAutoOffline"
|
|
||||||
@input="updateAutoOffline"
|
|
||||||
/>
|
|
||||||
</WootDropdownItem>
|
|
||||||
<WootDropdownDivider />
|
|
||||||
</WootDropdownMenu>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,22 +1,49 @@
|
|||||||
|
<template>
|
||||||
|
<aside class="flex h-full">
|
||||||
|
<primary-sidebar
|
||||||
|
:logo-source="globalConfig.logoThumbnail"
|
||||||
|
:installation-name="globalConfig.installationName"
|
||||||
|
:is-a-custom-branded-instance="isACustomBrandedInstance"
|
||||||
|
:account-id="accountId"
|
||||||
|
:menu-items="primaryMenuItems"
|
||||||
|
:active-menu-item="activePrimaryMenu.key"
|
||||||
|
@toggle-accounts="toggleAccountModal"
|
||||||
|
@key-shortcut-modal="toggleKeyShortcutModal"
|
||||||
|
@open-notification-panel="openNotificationPanel"
|
||||||
|
/>
|
||||||
|
<secondary-sidebar
|
||||||
|
v-if="showSecondarySidebar"
|
||||||
|
:class="sidebarClassName"
|
||||||
|
:account-id="accountId"
|
||||||
|
:inboxes="inboxes"
|
||||||
|
:labels="labels"
|
||||||
|
:teams="teams"
|
||||||
|
:custom-views="customViews"
|
||||||
|
:menu-config="activeSecondaryMenu"
|
||||||
|
:current-user="currentUser"
|
||||||
|
:is-on-chatwoot-cloud="isOnChatwootCloud"
|
||||||
|
@add-label="showAddLabelPopup"
|
||||||
|
@toggle-accounts="toggleAccountModal"
|
||||||
|
/>
|
||||||
|
</aside>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import { getSidebarItems } from './config/default-sidebar';
|
import { getSidebarItems } from './config/default-sidebar';
|
||||||
import { useKeyboardEvents } from 'dashboard/composables/useKeyboardEvents';
|
|
||||||
import { useRoute, useRouter } from 'dashboard/composables/route';
|
|
||||||
|
|
||||||
import PrimarySidebar from './sidebarComponents/Primary.vue';
|
import PrimarySidebar from './sidebarComponents/Primary.vue';
|
||||||
import SecondarySidebar from './sidebarComponents/Secondary.vue';
|
import SecondarySidebar from './sidebarComponents/Secondary.vue';
|
||||||
import { routesWithPermissions } from '../../routes';
|
import keyboardEventListenerMixins from 'shared/mixins/keyboardEventListenerMixins';
|
||||||
import {
|
import router, { routesWithPermissions } from '../../routes';
|
||||||
getUserPermissions,
|
import { hasPermissions } from '../../helper/permissionsHelper';
|
||||||
hasPermissions,
|
|
||||||
} from '../../helper/permissionsHelper';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
PrimarySidebar,
|
PrimarySidebar,
|
||||||
SecondarySidebar,
|
SecondarySidebar,
|
||||||
},
|
},
|
||||||
|
mixins: [keyboardEventListenerMixins],
|
||||||
props: {
|
props: {
|
||||||
showSecondarySidebar: {
|
showSecondarySidebar: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@@ -27,50 +54,6 @@ export default {
|
|||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
setup(props, { emit }) {
|
|
||||||
const route = useRoute();
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
const toggleKeyShortcutModal = () => {
|
|
||||||
emit('openKeyShortcutModal');
|
|
||||||
};
|
|
||||||
const closeKeyShortcutModal = () => {
|
|
||||||
emit('closeKeyShortcutModal');
|
|
||||||
};
|
|
||||||
const isCurrentRouteSameAsNavigation = routeName => {
|
|
||||||
return route.name === routeName;
|
|
||||||
};
|
|
||||||
const navigateToRoute = routeName => {
|
|
||||||
if (!isCurrentRouteSameAsNavigation(routeName)) {
|
|
||||||
router.push({ name: routeName });
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const keyboardEvents = {
|
|
||||||
'$mod+Slash': {
|
|
||||||
action: toggleKeyShortcutModal,
|
|
||||||
},
|
|
||||||
'$mod+Escape': {
|
|
||||||
action: closeKeyShortcutModal,
|
|
||||||
},
|
|
||||||
'Alt+KeyC': {
|
|
||||||
action: () => navigateToRoute('home'),
|
|
||||||
},
|
|
||||||
'Alt+KeyV': {
|
|
||||||
action: () => navigateToRoute('contacts_dashboard'),
|
|
||||||
},
|
|
||||||
'Alt+KeyR': {
|
|
||||||
action: () => navigateToRoute('account_overview_reports'),
|
|
||||||
},
|
|
||||||
'Alt+KeyS': {
|
|
||||||
action: () => navigateToRoute('agent_list'),
|
|
||||||
},
|
|
||||||
};
|
|
||||||
useKeyboardEvents(keyboardEvents);
|
|
||||||
|
|
||||||
return {
|
|
||||||
toggleKeyShortcutModal,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
showOptionsMenu: false,
|
showOptionsMenu: false,
|
||||||
@@ -80,6 +63,7 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
...mapGetters({
|
...mapGetters({
|
||||||
accountId: 'getCurrentAccountId',
|
accountId: 'getCurrentAccountId',
|
||||||
|
currentRole: 'getCurrentRole',
|
||||||
currentUser: 'getCurrentUser',
|
currentUser: 'getCurrentUser',
|
||||||
globalConfig: 'globalConfig/get',
|
globalConfig: 'globalConfig/get',
|
||||||
inboxes: 'inboxes/getInboxes',
|
inboxes: 'inboxes/getInboxes',
|
||||||
@@ -113,10 +97,7 @@ export default {
|
|||||||
return getSidebarItems(this.accountId);
|
return getSidebarItems(this.accountId);
|
||||||
},
|
},
|
||||||
primaryMenuItems() {
|
primaryMenuItems() {
|
||||||
const userPermissions = getUserPermissions(
|
const userPermissions = this.currentUser.permissions;
|
||||||
this.currentUser,
|
|
||||||
this.accountId
|
|
||||||
);
|
|
||||||
const menuItems = this.sideMenuConfig.primaryMenu;
|
const menuItems = this.sideMenuConfig.primaryMenu;
|
||||||
return menuItems.filter(menuItem => {
|
return menuItems.filter(menuItem => {
|
||||||
const isAvailableForTheUser = hasPermissions(
|
const isAvailableForTheUser = hasPermissions(
|
||||||
@@ -181,48 +162,50 @@ export default {
|
|||||||
this.$store.dispatch('customViews/get', this.activeCustomView);
|
this.$store.dispatch('customViews/get', this.activeCustomView);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
toggleKeyShortcutModal() {
|
||||||
|
this.$emit('open-key-shortcut-modal');
|
||||||
|
},
|
||||||
|
closeKeyShortcutModal() {
|
||||||
|
this.$emit('close-key-shortcut-modal');
|
||||||
|
},
|
||||||
|
getKeyboardEvents() {
|
||||||
|
return {
|
||||||
|
'$mod+Slash': this.toggleKeyShortcutModal,
|
||||||
|
'$mod+Escape': this.closeKeyShortcutModal,
|
||||||
|
'Alt+KeyC': {
|
||||||
|
action: () => this.navigateToRoute('home'),
|
||||||
|
},
|
||||||
|
'Alt+KeyV': {
|
||||||
|
action: () => this.navigateToRoute('contacts_dashboard'),
|
||||||
|
},
|
||||||
|
'Alt+KeyR': {
|
||||||
|
action: () => this.navigateToRoute('account_overview_reports'),
|
||||||
|
},
|
||||||
|
'Alt+KeyS': {
|
||||||
|
action: () => this.navigateToRoute('agent_list'),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
navigateToRoute(routeName) {
|
||||||
|
if (!this.isCurrentRouteSameAsNavigation(routeName)) {
|
||||||
|
router.push({ name: routeName });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
isCurrentRouteSameAsNavigation(routeName) {
|
||||||
|
return this.$route.name === routeName;
|
||||||
|
},
|
||||||
toggleSupportChatWindow() {
|
toggleSupportChatWindow() {
|
||||||
window.$chatwoot.toggle();
|
window.$chatwoot.toggle();
|
||||||
},
|
},
|
||||||
toggleAccountModal() {
|
toggleAccountModal() {
|
||||||
this.$emit('toggleAccountModal');
|
this.$emit('toggle-account-modal');
|
||||||
},
|
},
|
||||||
showAddLabelPopup() {
|
showAddLabelPopup() {
|
||||||
this.$emit('showAddLabelPopup');
|
this.$emit('show-add-label-popup');
|
||||||
},
|
},
|
||||||
openNotificationPanel() {
|
openNotificationPanel() {
|
||||||
this.$emit('openNotificationPanel');
|
this.$emit('open-notification-panel');
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<aside class="flex h-full">
|
|
||||||
<PrimarySidebar
|
|
||||||
:logo-source="globalConfig.logoThumbnail"
|
|
||||||
:installation-name="globalConfig.installationName"
|
|
||||||
:is-a-custom-branded-instance="isACustomBrandedInstance"
|
|
||||||
:account-id="accountId"
|
|
||||||
:menu-items="primaryMenuItems"
|
|
||||||
:active-menu-item="activePrimaryMenu.key"
|
|
||||||
@toggleAccounts="toggleAccountModal"
|
|
||||||
@openKeyShortcutModal="toggleKeyShortcutModal"
|
|
||||||
@openNotificationPanel="openNotificationPanel"
|
|
||||||
/>
|
|
||||||
<SecondarySidebar
|
|
||||||
v-if="showSecondarySidebar"
|
|
||||||
:class="sidebarClassName"
|
|
||||||
:account-id="accountId"
|
|
||||||
:inboxes="inboxes"
|
|
||||||
:labels="labels"
|
|
||||||
:teams="teams"
|
|
||||||
:custom-views="customViews"
|
|
||||||
:menu-config="activeSecondaryMenu"
|
|
||||||
:current-user="currentUser"
|
|
||||||
:is-on-chatwoot-cloud="isOnChatwootCloud"
|
|
||||||
@addLabel="showAddLabelPopup"
|
|
||||||
@toggleAccounts="toggleAccountModal"
|
|
||||||
/>
|
|
||||||
</aside>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -17,14 +17,6 @@ const primaryMenuItems = accountId => [
|
|||||||
toState: frontendURL(`accounts/${accountId}/dashboard`),
|
toState: frontendURL(`accounts/${accountId}/dashboard`),
|
||||||
toStateName: 'home',
|
toStateName: 'home',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
icon: 'captain',
|
|
||||||
key: 'captain',
|
|
||||||
label: 'CAPTAIN',
|
|
||||||
featureFlag: FEATURE_FLAGS.CAPTAIN,
|
|
||||||
toState: frontendURL(`accounts/${accountId}/captain`),
|
|
||||||
toStateName: 'captain',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: 'book-contacts',
|
icon: 'book-contacts',
|
||||||
key: 'contacts',
|
key: 'contacts',
|
||||||
|
|||||||
@@ -39,7 +39,6 @@ const settings = accountId => ({
|
|||||||
'settings_teams_list',
|
'settings_teams_list',
|
||||||
'settings_teams_new',
|
'settings_teams_new',
|
||||||
'sla_list',
|
'sla_list',
|
||||||
'custom_roles_list',
|
|
||||||
],
|
],
|
||||||
menuItems: [
|
menuItems: [
|
||||||
{
|
{
|
||||||
@@ -164,6 +163,17 @@ const settings = accountId => ({
|
|||||||
permissions: ['administrator'],
|
permissions: ['administrator'],
|
||||||
},
|
},
|
||||||
toState: frontendURL(`accounts/${accountId}/settings/integrations`),
|
toState: frontendURL(`accounts/${accountId}/settings/integrations`),
|
||||||
|
toStateName: 'settings_integrations',
|
||||||
|
featureFlag: FEATURE_FLAGS.INTEGRATIONS,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: 'star-emphasis',
|
||||||
|
label: 'APPLICATIONS',
|
||||||
|
hasSubMenu: false,
|
||||||
|
meta: {
|
||||||
|
permissions: ['administrator'],
|
||||||
|
},
|
||||||
|
toState: frontendURL(`accounts/${accountId}/settings/applications`),
|
||||||
toStateName: 'settings_applications',
|
toStateName: 'settings_applications',
|
||||||
featureFlag: FEATURE_FLAGS.INTEGRATIONS,
|
featureFlag: FEATURE_FLAGS.INTEGRATIONS,
|
||||||
},
|
},
|
||||||
@@ -174,21 +184,10 @@ const settings = accountId => ({
|
|||||||
meta: {
|
meta: {
|
||||||
permissions: ['administrator'],
|
permissions: ['administrator'],
|
||||||
},
|
},
|
||||||
toState: frontendURL(`accounts/${accountId}/settings/audit-logs/list`),
|
toState: frontendURL(`accounts/${accountId}/settings/audit-log/list`),
|
||||||
toStateName: 'auditlogs_list',
|
toStateName: 'auditlogs_list',
|
||||||
isEnterpriseOnly: true,
|
isEnterpriseOnly: true,
|
||||||
featureFlag: FEATURE_FLAGS.AUDIT_LOGS,
|
featureFlag: FEATURE_FLAGS.AUDIT_LOGS,
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: 'scan-person',
|
|
||||||
label: 'CUSTOM_ROLES',
|
|
||||||
hasSubMenu: false,
|
|
||||||
meta: {
|
|
||||||
permissions: ['administrator'],
|
|
||||||
},
|
|
||||||
toState: frontendURL(`accounts/${accountId}/settings/custom-roles/list`),
|
|
||||||
toStateName: 'custom_roles_list',
|
|
||||||
isEnterpriseOnly: true,
|
|
||||||
beta: true,
|
beta: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,3 +1,35 @@
|
|||||||
|
<template>
|
||||||
|
<div
|
||||||
|
v-if="showShowCurrentAccountContext"
|
||||||
|
class="text-slate-700 dark:text-slate-200 rounded-md text-xs py-2 px-2 mt-2 relative border border-slate-50 dark:border-slate-800/50 hover:bg-slate-50 dark:hover:bg-slate-800 cursor-pointer"
|
||||||
|
@mouseover="setShowSwitch"
|
||||||
|
@mouseleave="resetShowSwitch"
|
||||||
|
>
|
||||||
|
{{ $t('SIDEBAR.CURRENTLY_VIEWING_ACCOUNT') }}
|
||||||
|
<p
|
||||||
|
class="text-ellipsis overflow-hidden whitespace-nowrap font-medium mb-0 text-slate-800 dark:text-slate-100"
|
||||||
|
>
|
||||||
|
{{ account.name }}
|
||||||
|
</p>
|
||||||
|
<transition name="fade">
|
||||||
|
<div
|
||||||
|
v-if="showSwitchButton"
|
||||||
|
class="ltr:overlay-shadow ltr:dark:overlay-shadow-dark rtl:rtl-overlay-shadow rtl:dark:rtl-overlay-shadow-dark flex items-center h-full rounded-md justify-end absolute top-0 right-0 w-full"
|
||||||
|
>
|
||||||
|
<div class="my-0 mx-2">
|
||||||
|
<woot-button
|
||||||
|
variant="clear"
|
||||||
|
size="tiny"
|
||||||
|
icon="arrow-swap"
|
||||||
|
@click="$emit('toggle-accounts')"
|
||||||
|
>
|
||||||
|
{{ $t('SIDEBAR.SWITCH') }}
|
||||||
|
</woot-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
|
|
||||||
@@ -24,40 +56,6 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
v-if="showShowCurrentAccountContext"
|
|
||||||
class="relative px-2 py-2 mt-2 text-xs border rounded-md cursor-pointer text-slate-700 dark:text-slate-200 border-slate-50 dark:border-slate-800/50 hover:bg-slate-50 dark:hover:bg-slate-800"
|
|
||||||
@mouseover="setShowSwitch"
|
|
||||||
@mouseleave="resetShowSwitch"
|
|
||||||
>
|
|
||||||
{{ $t('SIDEBAR.CURRENTLY_VIEWING_ACCOUNT') }}
|
|
||||||
<p
|
|
||||||
class="mb-0 overflow-hidden font-medium text-ellipsis whitespace-nowrap text-slate-800 dark:text-slate-100"
|
|
||||||
>
|
|
||||||
{{ account.name }}
|
|
||||||
</p>
|
|
||||||
<transition name="fade">
|
|
||||||
<div
|
|
||||||
v-if="showSwitchButton"
|
|
||||||
class="absolute top-0 right-0 flex items-center justify-end w-full h-full rounded-md ltr:overlay-shadow ltr:dark:overlay-shadow-dark rtl:rtl-overlay-shadow rtl:dark:rtl-overlay-shadow-dark"
|
|
||||||
>
|
|
||||||
<div class="mx-2 my-0">
|
|
||||||
<woot-button
|
|
||||||
variant="clear"
|
|
||||||
size="tiny"
|
|
||||||
icon="arrow-swap"
|
|
||||||
@click="$emit('toggleAccounts')"
|
|
||||||
>
|
|
||||||
{{ $t('SIDEBAR.SWITCH') }}
|
|
||||||
</woot-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</transition>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@layer components {
|
@layer components {
|
||||||
|
|||||||
@@ -1,3 +1,62 @@
|
|||||||
|
<template>
|
||||||
|
<woot-modal
|
||||||
|
:show="showAccountModal"
|
||||||
|
:on-close="() => $emit('close-account-modal')"
|
||||||
|
>
|
||||||
|
<woot-modal-header
|
||||||
|
:header-title="$t('SIDEBAR_ITEMS.CHANGE_ACCOUNTS')"
|
||||||
|
:header-content="$t('SIDEBAR_ITEMS.SELECTOR_SUBTITLE')"
|
||||||
|
/>
|
||||||
|
<div class="px-8 py-4">
|
||||||
|
<div
|
||||||
|
v-for="account in currentUser.accounts"
|
||||||
|
:id="`account-${account.id}`"
|
||||||
|
:key="account.id"
|
||||||
|
class="pt-0 pb-0"
|
||||||
|
>
|
||||||
|
<button
|
||||||
|
class="flex justify-between items-center expanded clear link cursor-pointer px-4 py-3 w-full rounded-lg hover:underline hover:bg-slate-25 dark:hover:bg-slate-900"
|
||||||
|
@click="onChangeAccount(account.id)"
|
||||||
|
>
|
||||||
|
<span class="w-full">
|
||||||
|
<label :for="account.name" class="text-left rtl:text-right">
|
||||||
|
<div
|
||||||
|
class="text-slate-700 text-lg dark:text-slate-100 font-medium hover:underline-offset-4 leading-5"
|
||||||
|
>
|
||||||
|
{{ account.name }}
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="text-slate-500 text-xs dark:text-slate-500 font-medium hover:underline-offset-4"
|
||||||
|
>
|
||||||
|
{{ account.role }}
|
||||||
|
</div>
|
||||||
|
</label>
|
||||||
|
</span>
|
||||||
|
<fluent-icon
|
||||||
|
v-show="account.id === accountId"
|
||||||
|
class="text-slate-800 dark:text-slate-100"
|
||||||
|
icon="checkmark-circle"
|
||||||
|
type="solid"
|
||||||
|
size="24"
|
||||||
|
/>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
v-if="globalConfig.createNewAccountFromDashboard"
|
||||||
|
class="flex justify-end items-center px-8 pb-8 pt-4 gap-2"
|
||||||
|
>
|
||||||
|
<button
|
||||||
|
class="button success large expanded nice w-full"
|
||||||
|
@click="$emit('show-create-account-modal')"
|
||||||
|
>
|
||||||
|
{{ $t('CREATE_ACCOUNT.NEW_ACCOUNT') }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</woot-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
export default {
|
export default {
|
||||||
@@ -23,66 +82,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<woot-modal
|
|
||||||
:show="showAccountModal"
|
|
||||||
:on-close="() => $emit('closeAccountModal')"
|
|
||||||
>
|
|
||||||
<woot-modal-header
|
|
||||||
:header-title="$t('SIDEBAR_ITEMS.CHANGE_ACCOUNTS')"
|
|
||||||
:header-content="$t('SIDEBAR_ITEMS.SELECTOR_SUBTITLE')"
|
|
||||||
/>
|
|
||||||
<div class="px-8 py-4">
|
|
||||||
<div
|
|
||||||
v-for="account in currentUser.accounts"
|
|
||||||
:id="`account-${account.id}`"
|
|
||||||
:key="account.id"
|
|
||||||
class="pt-0 pb-0"
|
|
||||||
>
|
|
||||||
<button
|
|
||||||
class="flex items-center justify-between w-full px-4 py-3 rounded-lg cursor-pointer expanded clear link hover:underline hover:bg-slate-25 dark:hover:bg-slate-900"
|
|
||||||
@click="onChangeAccount(account.id)"
|
|
||||||
>
|
|
||||||
<span class="w-full">
|
|
||||||
<label :for="account.name" class="text-left rtl:text-right">
|
|
||||||
<div
|
|
||||||
class="text-lg font-medium leading-5 text-slate-700 dark:text-slate-100 hover:underline-offset-4"
|
|
||||||
>
|
|
||||||
{{ account.name }}
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
class="text-xs font-medium lowercase text-slate-500 dark:text-slate-500 hover:underline-offset-4"
|
|
||||||
>
|
|
||||||
{{
|
|
||||||
account.custom_role_id
|
|
||||||
? account.custom_role.name
|
|
||||||
: account.role
|
|
||||||
}}
|
|
||||||
</div>
|
|
||||||
</label>
|
|
||||||
</span>
|
|
||||||
<fluent-icon
|
|
||||||
v-show="account.id === accountId"
|
|
||||||
class="text-slate-800 dark:text-slate-100"
|
|
||||||
icon="checkmark-circle"
|
|
||||||
type="solid"
|
|
||||||
size="24"
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
v-if="globalConfig.createNewAccountFromDashboard"
|
|
||||||
class="flex items-center justify-end gap-2 px-8 pt-4 pb-8"
|
|
||||||
>
|
|
||||||
<button
|
|
||||||
class="w-full button success large expanded nice"
|
|
||||||
@click="$emit('showCreateAccountModal')"
|
|
||||||
>
|
|
||||||
{{ $t('CREATE_ACCOUNT.NEW_ACCOUNT') }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</woot-modal>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,6 +1,55 @@
|
|||||||
|
<template>
|
||||||
|
<woot-modal
|
||||||
|
:show="show"
|
||||||
|
:on-close="() => $emit('close-account-create-modal')"
|
||||||
|
>
|
||||||
|
<div class="h-auto overflow-auto flex flex-col">
|
||||||
|
<woot-modal-header
|
||||||
|
:header-title="$t('CREATE_ACCOUNT.NEW_ACCOUNT')"
|
||||||
|
:header-content="$t('CREATE_ACCOUNT.SELECTOR_SUBTITLE')"
|
||||||
|
/>
|
||||||
|
<div v-if="!hasAccounts" class="text-sm mt-6 mx-8 mb-0">
|
||||||
|
<div class="items-center rounded-md flex alert">
|
||||||
|
<div class="ml-1 mr-3">
|
||||||
|
<fluent-icon icon="warning" />
|
||||||
|
</div>
|
||||||
|
{{ $t('CREATE_ACCOUNT.NO_ACCOUNT_WARNING') }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form class="flex flex-col w-full" @submit.prevent="addAccount">
|
||||||
|
<div class="w-full">
|
||||||
|
<label :class="{ error: $v.accountName.$error }">
|
||||||
|
{{ $t('CREATE_ACCOUNT.FORM.NAME.LABEL') }}
|
||||||
|
<input
|
||||||
|
v-model.trim="accountName"
|
||||||
|
type="text"
|
||||||
|
:placeholder="$t('CREATE_ACCOUNT.FORM.NAME.PLACEHOLDER')"
|
||||||
|
@input="$v.accountName.$touch"
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="w-full">
|
||||||
|
<div class="w-full">
|
||||||
|
<woot-submit-button
|
||||||
|
:disabled="
|
||||||
|
$v.accountName.$invalid ||
|
||||||
|
$v.accountName.$invalid ||
|
||||||
|
uiFlags.isCreating
|
||||||
|
"
|
||||||
|
:button-text="$t('CREATE_ACCOUNT.FORM.SUBMIT')"
|
||||||
|
:loading="uiFlags.isCreating"
|
||||||
|
button-class="large expanded"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</woot-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { useVuelidate } from '@vuelidate/core';
|
import { required, minLength } from 'vuelidate/lib/validators';
|
||||||
import { required, minLength } from '@vuelidate/validators';
|
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import { useAlert } from 'dashboard/composables';
|
import { useAlert } from 'dashboard/composables';
|
||||||
|
|
||||||
@@ -15,9 +64,6 @@ export default {
|
|||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
setup() {
|
|
||||||
return { v$: useVuelidate() };
|
|
||||||
},
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
accountName: '',
|
accountName: '',
|
||||||
@@ -40,7 +86,7 @@ export default {
|
|||||||
const account_id = await this.$store.dispatch('accounts/create', {
|
const account_id = await this.$store.dispatch('accounts/create', {
|
||||||
account_name: this.accountName,
|
account_name: this.accountName,
|
||||||
});
|
});
|
||||||
this.$emit('closeAccountCreateModal');
|
this.$emit('close-account-create-modal');
|
||||||
useAlert(this.$t('CREATE_ACCOUNT.API.SUCCESS_MESSAGE'));
|
useAlert(this.$t('CREATE_ACCOUNT.API.SUCCESS_MESSAGE'));
|
||||||
window.location = `/app/accounts/${account_id}/dashboard`;
|
window.location = `/app/accounts/${account_id}/dashboard`;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -54,50 +100,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<woot-modal :show="show" :on-close="() => $emit('closeAccountCreateModal')">
|
|
||||||
<div class="flex flex-col h-auto overflow-auto">
|
|
||||||
<woot-modal-header
|
|
||||||
:header-title="$t('CREATE_ACCOUNT.NEW_ACCOUNT')"
|
|
||||||
:header-content="$t('CREATE_ACCOUNT.SELECTOR_SUBTITLE')"
|
|
||||||
/>
|
|
||||||
<div v-if="!hasAccounts" class="mx-8 mt-6 mb-0 text-sm">
|
|
||||||
<div class="flex items-center rounded-md alert">
|
|
||||||
<div class="ml-1 mr-3">
|
|
||||||
<fluent-icon icon="warning" />
|
|
||||||
</div>
|
|
||||||
{{ $t('CREATE_ACCOUNT.NO_ACCOUNT_WARNING') }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<form class="flex flex-col w-full" @submit.prevent="addAccount">
|
|
||||||
<div class="w-full">
|
|
||||||
<label :class="{ error: v$.accountName.$error }">
|
|
||||||
{{ $t('CREATE_ACCOUNT.FORM.NAME.LABEL') }}
|
|
||||||
<input
|
|
||||||
v-model.trim="accountName"
|
|
||||||
type="text"
|
|
||||||
:placeholder="$t('CREATE_ACCOUNT.FORM.NAME.PLACEHOLDER')"
|
|
||||||
@input="v$.accountName.$touch"
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
<div class="w-full">
|
|
||||||
<div class="w-full">
|
|
||||||
<woot-submit-button
|
|
||||||
:disabled="
|
|
||||||
v$.accountName.$invalid ||
|
|
||||||
v$.accountName.$invalid ||
|
|
||||||
uiFlags.isCreating
|
|
||||||
"
|
|
||||||
:button-text="$t('CREATE_ACCOUNT.FORM.SUBMIT')"
|
|
||||||
:loading="uiFlags.isCreating"
|
|
||||||
button-class="large expanded"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</woot-modal>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,19 @@
|
|||||||
|
<template>
|
||||||
|
<woot-button
|
||||||
|
v-tooltip.right="$t(`SIDEBAR.PROFILE_SETTINGS`)"
|
||||||
|
variant="link"
|
||||||
|
class="items-center flex rounded-full"
|
||||||
|
@click="handleClick"
|
||||||
|
>
|
||||||
|
<thumbnail
|
||||||
|
:src="currentUser.avatar_url"
|
||||||
|
:username="currentUser.name"
|
||||||
|
:status="statusOfAgent"
|
||||||
|
should-show-status-always
|
||||||
|
size="32px"
|
||||||
|
/>
|
||||||
|
</woot-button>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import Thumbnail from '../../widgets/Thumbnail.vue';
|
import Thumbnail from '../../widgets/Thumbnail.vue';
|
||||||
@@ -17,25 +33,8 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleClick() {
|
handleClick() {
|
||||||
this.$emit('toggleMenu');
|
this.$emit('toggle-menu');
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<woot-button
|
|
||||||
v-tooltip.right="$t(`SIDEBAR.PROFILE_SETTINGS`)"
|
|
||||||
variant="link"
|
|
||||||
class="flex items-center rounded-full"
|
|
||||||
@click="handleClick"
|
|
||||||
>
|
|
||||||
<Thumbnail
|
|
||||||
:src="currentUser.avatar_url"
|
|
||||||
:username="currentUser.name"
|
|
||||||
:status="statusOfAgent"
|
|
||||||
should-show-status-always
|
|
||||||
size="32px"
|
|
||||||
/>
|
|
||||||
</woot-button>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
<template>
|
||||||
|
<div class="w-8 h-8">
|
||||||
|
<router-link :to="dashboardPath" replace>
|
||||||
|
<img :src="source" :alt="name" />
|
||||||
|
</router-link>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { frontendURL } from 'dashboard/helper/URLHelper';
|
import { frontendURL } from 'dashboard/helper/URLHelper';
|
||||||
|
|
||||||
@@ -23,11 +30,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="w-8 h-8">
|
|
||||||
<router-link :to="dashboardPath" replace>
|
|
||||||
<img :src="source" :alt="name" />
|
|
||||||
</router-link>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,38 +1,7 @@
|
|||||||
<script>
|
|
||||||
import { mapGetters } from 'vuex';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
computed: {
|
|
||||||
...mapGetters({
|
|
||||||
notificationMetadata: 'notifications/getMeta',
|
|
||||||
}),
|
|
||||||
unreadCount() {
|
|
||||||
if (!this.notificationMetadata.unreadCount) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
return this.notificationMetadata.unreadCount < 100
|
|
||||||
? `${this.notificationMetadata.unreadCount}`
|
|
||||||
: '99+';
|
|
||||||
},
|
|
||||||
isNotificationPanelActive() {
|
|
||||||
return this.$route.name === 'notifications_index';
|
|
||||||
},
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
openNotificationPanel() {
|
|
||||||
if (this.$route.name !== 'notifications_index') {
|
|
||||||
this.$emit('openNotificationPanel');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="mb-4">
|
<div class="mb-4">
|
||||||
<button
|
<button
|
||||||
class="relative flex items-center justify-center w-10 h-10 p-0 my-2 rounded-lg text-slate-600 dark:text-slate-100 hover:bg-slate-25 dark:hover:bg-slate-700 dark:hover:text-slate-100 hover:text-slate-600"
|
class="text-slate-600 dark:text-slate-100 w-10 h-10 my-2 p-0 flex items-center justify-center rounded-lg hover:bg-slate-25 dark:hover:bg-slate-700 dark:hover:text-slate-100 hover:text-slate-600 relative"
|
||||||
:class="{
|
:class="{
|
||||||
'bg-woot-50 dark:bg-slate-800 text-woot-500 hover:bg-woot-50':
|
'bg-woot-50 dark:bg-slate-800 text-woot-500 hover:bg-woot-50':
|
||||||
isNotificationPanelActive,
|
isNotificationPanelActive,
|
||||||
@@ -54,3 +23,34 @@ export default {
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
<script>
|
||||||
|
import { mapGetters } from 'vuex';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
computed: {
|
||||||
|
...mapGetters({
|
||||||
|
accountId: 'getCurrentAccountId',
|
||||||
|
notificationMetadata: 'notifications/getMeta',
|
||||||
|
}),
|
||||||
|
unreadCount() {
|
||||||
|
if (!this.notificationMetadata.unreadCount) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.notificationMetadata.unreadCount < 100
|
||||||
|
? `${this.notificationMetadata.unreadCount}`
|
||||||
|
: '99+';
|
||||||
|
},
|
||||||
|
isNotificationPanelActive() {
|
||||||
|
return this.$route.name === 'notifications_index';
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
openNotificationPanel() {
|
||||||
|
if (this.$route.name !== 'notifications_index') {
|
||||||
|
this.$emit('open-notification-panel');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -1,3 +1,110 @@
|
|||||||
|
<template>
|
||||||
|
<transition name="menu-slide">
|
||||||
|
<div
|
||||||
|
v-if="show"
|
||||||
|
v-on-clickaway="onClickAway"
|
||||||
|
class="left-3 rtl:left-auto rtl:right-3 bottom-16 w-64 absolute z-30 rounded-md shadow-xl bg-white dark:bg-slate-800 py-2 px-2 border border-slate-25 dark:border-slate-700"
|
||||||
|
:class="{ 'block visible': show }"
|
||||||
|
>
|
||||||
|
<availability-status />
|
||||||
|
<woot-dropdown-menu>
|
||||||
|
<woot-dropdown-item v-if="showChangeAccountOption">
|
||||||
|
<woot-button
|
||||||
|
variant="clear"
|
||||||
|
color-scheme="secondary"
|
||||||
|
size="small"
|
||||||
|
icon="arrow-swap"
|
||||||
|
@click="$emit('toggle-accounts')"
|
||||||
|
>
|
||||||
|
{{ $t('SIDEBAR_ITEMS.CHANGE_ACCOUNTS') }}
|
||||||
|
</woot-button>
|
||||||
|
</woot-dropdown-item>
|
||||||
|
<woot-dropdown-item v-if="globalConfig.chatwootInboxToken">
|
||||||
|
<woot-button
|
||||||
|
variant="clear"
|
||||||
|
color-scheme="secondary"
|
||||||
|
size="small"
|
||||||
|
icon="chat-help"
|
||||||
|
@click="$emit('show-support-chat-window')"
|
||||||
|
>
|
||||||
|
{{ $t('SIDEBAR_ITEMS.CONTACT_SUPPORT') }}
|
||||||
|
</woot-button>
|
||||||
|
</woot-dropdown-item>
|
||||||
|
<woot-dropdown-item>
|
||||||
|
<woot-button
|
||||||
|
variant="clear"
|
||||||
|
color-scheme="secondary"
|
||||||
|
size="small"
|
||||||
|
icon="keyboard"
|
||||||
|
@click="handleKeyboardHelpClick"
|
||||||
|
>
|
||||||
|
{{ $t('SIDEBAR_ITEMS.KEYBOARD_SHORTCUTS') }}
|
||||||
|
</woot-button>
|
||||||
|
</woot-dropdown-item>
|
||||||
|
<woot-dropdown-item>
|
||||||
|
<router-link
|
||||||
|
v-slot="{ href, isActive, navigate }"
|
||||||
|
:to="`/app/accounts/${accountId}/profile/settings`"
|
||||||
|
custom
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
:href="href"
|
||||||
|
class="button small clear secondary bg-white dark:bg-slate-800 h-8"
|
||||||
|
:class="{ 'is-active': isActive }"
|
||||||
|
@click="e => handleProfileSettingClick(e, navigate)"
|
||||||
|
>
|
||||||
|
<fluent-icon icon="person" size="14" class="icon icon--font" />
|
||||||
|
<span class="button__content">
|
||||||
|
{{ $t('SIDEBAR_ITEMS.PROFILE_SETTINGS') }}
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</router-link>
|
||||||
|
</woot-dropdown-item>
|
||||||
|
<woot-dropdown-item>
|
||||||
|
<woot-button
|
||||||
|
variant="clear"
|
||||||
|
color-scheme="secondary"
|
||||||
|
size="small"
|
||||||
|
icon="appearance"
|
||||||
|
@click="openAppearanceOptions"
|
||||||
|
>
|
||||||
|
{{ $t('SIDEBAR_ITEMS.APPEARANCE') }}
|
||||||
|
</woot-button>
|
||||||
|
</woot-dropdown-item>
|
||||||
|
<woot-dropdown-item v-if="currentUser.type === 'SuperAdmin'">
|
||||||
|
<a
|
||||||
|
href="/super_admin"
|
||||||
|
class="button small clear secondary bg-white dark:bg-slate-800 h-8"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener nofollow noreferrer"
|
||||||
|
@click="$emit('close')"
|
||||||
|
>
|
||||||
|
<fluent-icon
|
||||||
|
icon="content-settings"
|
||||||
|
size="14"
|
||||||
|
class="icon icon--font"
|
||||||
|
/>
|
||||||
|
<span class="button__content">
|
||||||
|
{{ $t('SIDEBAR_ITEMS.SUPER_ADMIN_CONSOLE') }}
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</woot-dropdown-item>
|
||||||
|
<woot-dropdown-item>
|
||||||
|
<woot-button
|
||||||
|
variant="clear"
|
||||||
|
color-scheme="secondary"
|
||||||
|
size="small"
|
||||||
|
icon="power"
|
||||||
|
@click="logout"
|
||||||
|
>
|
||||||
|
{{ $t('SIDEBAR_ITEMS.LOGOUT') }}
|
||||||
|
</woot-button>
|
||||||
|
</woot-dropdown-item>
|
||||||
|
</woot-dropdown-menu>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import Auth from '../../../api/auth';
|
import Auth from '../../../api/auth';
|
||||||
@@ -38,7 +145,7 @@ export default {
|
|||||||
navigate(e);
|
navigate(e);
|
||||||
},
|
},
|
||||||
handleKeyboardHelpClick() {
|
handleKeyboardHelpClick() {
|
||||||
this.$emit('openKeyShortcutModal');
|
this.$emit('key-shortcut-modal');
|
||||||
this.$emit('close');
|
this.$emit('close');
|
||||||
},
|
},
|
||||||
logout() {
|
logout() {
|
||||||
@@ -54,110 +161,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<transition name="menu-slide">
|
|
||||||
<div
|
|
||||||
v-if="show"
|
|
||||||
v-on-clickaway="onClickAway"
|
|
||||||
class="absolute z-30 w-64 px-2 py-2 bg-white border rounded-md shadow-xl left-3 rtl:left-auto rtl:right-3 bottom-16 dark:bg-slate-800 border-slate-25 dark:border-slate-700"
|
|
||||||
:class="{ 'block visible': show }"
|
|
||||||
>
|
|
||||||
<AvailabilityStatus />
|
|
||||||
<WootDropdownMenu>
|
|
||||||
<WootDropdownItem v-if="showChangeAccountOption">
|
|
||||||
<woot-button
|
|
||||||
variant="clear"
|
|
||||||
color-scheme="secondary"
|
|
||||||
size="small"
|
|
||||||
icon="arrow-swap"
|
|
||||||
@click="$emit('toggleAccounts')"
|
|
||||||
>
|
|
||||||
{{ $t('SIDEBAR_ITEMS.CHANGE_ACCOUNTS') }}
|
|
||||||
</woot-button>
|
|
||||||
</WootDropdownItem>
|
|
||||||
<WootDropdownItem v-if="globalConfig.chatwootInboxToken">
|
|
||||||
<woot-button
|
|
||||||
variant="clear"
|
|
||||||
color-scheme="secondary"
|
|
||||||
size="small"
|
|
||||||
icon="chat-help"
|
|
||||||
@click="$emit('showSupportChatWindow')"
|
|
||||||
>
|
|
||||||
{{ $t('SIDEBAR_ITEMS.CONTACT_SUPPORT') }}
|
|
||||||
</woot-button>
|
|
||||||
</WootDropdownItem>
|
|
||||||
<WootDropdownItem>
|
|
||||||
<woot-button
|
|
||||||
variant="clear"
|
|
||||||
color-scheme="secondary"
|
|
||||||
size="small"
|
|
||||||
icon="keyboard"
|
|
||||||
@click="handleKeyboardHelpClick"
|
|
||||||
>
|
|
||||||
{{ $t('SIDEBAR_ITEMS.KEYBOARD_SHORTCUTS') }}
|
|
||||||
</woot-button>
|
|
||||||
</WootDropdownItem>
|
|
||||||
<WootDropdownItem>
|
|
||||||
<router-link
|
|
||||||
v-slot="{ href, isActive, navigate }"
|
|
||||||
:to="`/app/accounts/${accountId}/profile/settings`"
|
|
||||||
custom
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
:href="href"
|
|
||||||
class="h-8 bg-white button small clear secondary dark:bg-slate-800"
|
|
||||||
:class="{ 'is-active': isActive }"
|
|
||||||
@click="e => handleProfileSettingClick(e, navigate)"
|
|
||||||
>
|
|
||||||
<fluent-icon icon="person" size="14" class="icon icon--font" />
|
|
||||||
<span class="button__content">
|
|
||||||
{{ $t('SIDEBAR_ITEMS.PROFILE_SETTINGS') }}
|
|
||||||
</span>
|
|
||||||
</a>
|
|
||||||
</router-link>
|
|
||||||
</WootDropdownItem>
|
|
||||||
<WootDropdownItem>
|
|
||||||
<woot-button
|
|
||||||
variant="clear"
|
|
||||||
color-scheme="secondary"
|
|
||||||
size="small"
|
|
||||||
icon="appearance"
|
|
||||||
@click="openAppearanceOptions"
|
|
||||||
>
|
|
||||||
{{ $t('SIDEBAR_ITEMS.APPEARANCE') }}
|
|
||||||
</woot-button>
|
|
||||||
</WootDropdownItem>
|
|
||||||
<WootDropdownItem v-if="currentUser.type === 'SuperAdmin'">
|
|
||||||
<a
|
|
||||||
href="/super_admin"
|
|
||||||
class="h-8 bg-white button small clear secondary dark:bg-slate-800"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener nofollow noreferrer"
|
|
||||||
@click="$emit('close')"
|
|
||||||
>
|
|
||||||
<fluent-icon
|
|
||||||
icon="content-settings"
|
|
||||||
size="14"
|
|
||||||
class="icon icon--font"
|
|
||||||
/>
|
|
||||||
<span class="button__content">
|
|
||||||
{{ $t('SIDEBAR_ITEMS.SUPER_ADMIN_CONSOLE') }}
|
|
||||||
</span>
|
|
||||||
</a>
|
|
||||||
</WootDropdownItem>
|
|
||||||
<WootDropdownItem>
|
|
||||||
<woot-button
|
|
||||||
variant="clear"
|
|
||||||
color-scheme="secondary"
|
|
||||||
size="small"
|
|
||||||
icon="power"
|
|
||||||
@click="logout"
|
|
||||||
>
|
|
||||||
{{ $t('SIDEBAR_ITEMS.LOGOUT') }}
|
|
||||||
</woot-button>
|
|
||||||
</WootDropdownItem>
|
|
||||||
</WootDropdownMenu>
|
|
||||||
</div>
|
|
||||||
</transition>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,43 @@
|
|||||||
|
<template>
|
||||||
|
<div
|
||||||
|
class="h-full w-16 bg-white dark:bg-slate-900 border-r border-slate-50 dark:border-slate-800/50 rtl:border-l rtl:border-r-0 flex justify-between flex-col"
|
||||||
|
>
|
||||||
|
<div class="flex flex-col items-center">
|
||||||
|
<logo
|
||||||
|
:source="logoSource"
|
||||||
|
:name="installationName"
|
||||||
|
:account-id="accountId"
|
||||||
|
class="m-4 mb-10"
|
||||||
|
/>
|
||||||
|
<primary-nav-item
|
||||||
|
v-for="menuItem in menuItems"
|
||||||
|
:key="menuItem.toState"
|
||||||
|
:icon="menuItem.icon"
|
||||||
|
:name="menuItem.label"
|
||||||
|
:to="menuItem.toState"
|
||||||
|
:is-child-menu-active="menuItem.key === activeMenuItem"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col items-center justify-end pb-6">
|
||||||
|
<primary-nav-item
|
||||||
|
v-if="!isACustomBrandedInstance"
|
||||||
|
icon="book-open-globe"
|
||||||
|
name="DOCS"
|
||||||
|
:open-in-new-page="true"
|
||||||
|
:to="helpDocsURL"
|
||||||
|
/>
|
||||||
|
<notification-bell @open-notification-panel="openNotificationPanel" />
|
||||||
|
<agent-details @toggle-menu="toggleOptions" />
|
||||||
|
<options-menu
|
||||||
|
:show="showOptionsMenu"
|
||||||
|
@toggle-accounts="toggleAccountModal"
|
||||||
|
@show-support-chat-window="toggleSupportChatWindow"
|
||||||
|
@key-shortcut-modal="$emit('key-shortcut-modal')"
|
||||||
|
@close="toggleOptions"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import Logo from './Logo.vue';
|
import Logo from './Logo.vue';
|
||||||
import PrimaryNavItem from './PrimaryNavItem.vue';
|
import PrimaryNavItem from './PrimaryNavItem.vue';
|
||||||
@@ -54,56 +94,15 @@ export default {
|
|||||||
this.showOptionsMenu = !this.showOptionsMenu;
|
this.showOptionsMenu = !this.showOptionsMenu;
|
||||||
},
|
},
|
||||||
toggleAccountModal() {
|
toggleAccountModal() {
|
||||||
this.$emit('toggleAccounts');
|
this.$emit('toggle-accounts');
|
||||||
},
|
},
|
||||||
toggleSupportChatWindow() {
|
toggleSupportChatWindow() {
|
||||||
window.$chatwoot.toggle();
|
window.$chatwoot.toggle();
|
||||||
},
|
},
|
||||||
openNotificationPanel() {
|
openNotificationPanel() {
|
||||||
this.$track(ACCOUNT_EVENTS.OPENED_NOTIFICATIONS);
|
this.$track(ACCOUNT_EVENTS.OPENED_NOTIFICATIONS);
|
||||||
this.$emit('openNotificationPanel');
|
this.$emit('open-notification-panel');
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
class="flex flex-col justify-between w-16 h-full bg-white border-r dark:bg-slate-900 border-slate-50 dark:border-slate-800/50 rtl:border-l rtl:border-r-0"
|
|
||||||
>
|
|
||||||
<div class="flex flex-col items-center">
|
|
||||||
<Logo
|
|
||||||
:source="logoSource"
|
|
||||||
:name="installationName"
|
|
||||||
:account-id="accountId"
|
|
||||||
class="m-4 mb-10"
|
|
||||||
/>
|
|
||||||
<PrimaryNavItem
|
|
||||||
v-for="menuItem in menuItems"
|
|
||||||
:key="menuItem.toState"
|
|
||||||
:icon="menuItem.icon"
|
|
||||||
:name="menuItem.label"
|
|
||||||
:to="menuItem.toState"
|
|
||||||
:is-child-menu-active="menuItem.key === activeMenuItem"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div class="flex flex-col items-center justify-end pb-6">
|
|
||||||
<PrimaryNavItem
|
|
||||||
v-if="!isACustomBrandedInstance"
|
|
||||||
icon="book-open-globe"
|
|
||||||
name="DOCS"
|
|
||||||
open-in-new-page
|
|
||||||
:to="helpDocsURL"
|
|
||||||
/>
|
|
||||||
<NotificationBell @openNotificationPanel="openNotificationPanel" />
|
|
||||||
<AgentDetails @toggleMenu="toggleOptions" />
|
|
||||||
<OptionsMenu
|
|
||||||
:show="showOptionsMenu"
|
|
||||||
@toggleAccounts="toggleAccountModal"
|
|
||||||
@showSupportChatWindow="toggleSupportChatWindow"
|
|
||||||
@openKeyShortcutModal="$emit('openKeyShortcutModal')"
|
|
||||||
@close="toggleOptions"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,34 +1,3 @@
|
|||||||
<script>
|
|
||||||
export default {
|
|
||||||
props: {
|
|
||||||
to: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
name: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
icon: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
count: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
isChildMenuActive: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
openInNewPage: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<router-link v-slot="{ href, isActive, navigate }" :to="to" custom>
|
<router-link v-slot="{ href, isActive, navigate }" :to="to" custom>
|
||||||
<a
|
<a
|
||||||
@@ -59,3 +28,33 @@ export default {
|
|||||||
</a>
|
</a>
|
||||||
</router-link>
|
</router-link>
|
||||||
</template>
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
to: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
name: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
icon: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
count: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
isChildMenuActive: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
openInNewPage: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -1,13 +1,35 @@
|
|||||||
|
<template>
|
||||||
|
<div
|
||||||
|
v-if="hasSecondaryMenu"
|
||||||
|
class="h-full overflow-auto w-48 flex flex-col bg-white dark:bg-slate-900 border-r dark:border-slate-800/50 rtl:border-r-0 rtl:border-l border-slate-50 text-sm px-2 pb-8"
|
||||||
|
>
|
||||||
|
<account-context @toggle-accounts="toggleAccountModal" />
|
||||||
|
<transition-group
|
||||||
|
name="menu-list"
|
||||||
|
tag="ul"
|
||||||
|
class="pt-2 list-none ml-0 mb-0"
|
||||||
|
>
|
||||||
|
<secondary-nav-item
|
||||||
|
v-for="menuItem in accessibleMenuItems"
|
||||||
|
:key="menuItem.toState"
|
||||||
|
:menu-item="menuItem"
|
||||||
|
/>
|
||||||
|
<secondary-nav-item
|
||||||
|
v-for="menuItem in additionalSecondaryMenuItems[menuConfig.parentNav]"
|
||||||
|
:key="menuItem.key"
|
||||||
|
:menu-item="menuItem"
|
||||||
|
@add-label="showAddLabelPopup"
|
||||||
|
/>
|
||||||
|
</transition-group>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { frontendURL } from '../../../helper/URLHelper';
|
import { frontendURL } from '../../../helper/URLHelper';
|
||||||
import SecondaryNavItem from './SecondaryNavItem.vue';
|
import SecondaryNavItem from './SecondaryNavItem.vue';
|
||||||
import AccountContext from './AccountContext.vue';
|
import AccountContext from './AccountContext.vue';
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import { FEATURE_FLAGS } from '../../../featureFlags';
|
import { FEATURE_FLAGS } from '../../../featureFlags';
|
||||||
import {
|
import { hasPermissions } from '../../../helper/permissionsHelper';
|
||||||
getUserPermissions,
|
|
||||||
hasPermissions,
|
|
||||||
} from '../../../helper/permissionsHelper';
|
|
||||||
import { routesWithPermissions } from '../../../routes';
|
import { routesWithPermissions } from '../../../routes';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -62,10 +84,7 @@ export default {
|
|||||||
accessibleMenuItems() {
|
accessibleMenuItems() {
|
||||||
const menuItemsFilteredByPermissions = this.menuConfig.menuItems.filter(
|
const menuItemsFilteredByPermissions = this.menuConfig.menuItems.filter(
|
||||||
menuItem => {
|
menuItem => {
|
||||||
const userPermissions = getUserPermissions(
|
const { permissions: userPermissions = [] } = this.currentUser;
|
||||||
this.currentUser,
|
|
||||||
this.accountId
|
|
||||||
);
|
|
||||||
return hasPermissions(
|
return hasPermissions(
|
||||||
routesWithPermissions[menuItem.toStateName],
|
routesWithPermissions[menuItem.toStateName],
|
||||||
userPermissions
|
userPermissions
|
||||||
@@ -229,10 +248,10 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
showAddLabelPopup() {
|
showAddLabelPopup() {
|
||||||
this.$emit('addLabel');
|
this.$emit('add-label');
|
||||||
},
|
},
|
||||||
toggleAccountModal() {
|
toggleAccountModal() {
|
||||||
this.$emit('toggleAccounts');
|
this.$emit('toggle-accounts');
|
||||||
},
|
},
|
||||||
showNewLink(featureFlag) {
|
showNewLink(featureFlag) {
|
||||||
return this.isFeatureEnabledonAccount(this.accountId, featureFlag);
|
return this.isFeatureEnabledonAccount(this.accountId, featureFlag);
|
||||||
@@ -240,29 +259,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
v-if="hasSecondaryMenu"
|
|
||||||
class="flex flex-col w-48 h-full px-2 pb-8 overflow-auto text-sm bg-white border-r dark:bg-slate-900 dark:border-slate-800/50 rtl:border-r-0 rtl:border-l border-slate-50"
|
|
||||||
>
|
|
||||||
<AccountContext @toggleAccounts="toggleAccountModal" />
|
|
||||||
<transition-group
|
|
||||||
name="menu-list"
|
|
||||||
tag="ul"
|
|
||||||
class="pt-2 mb-0 ml-0 list-none"
|
|
||||||
>
|
|
||||||
<SecondaryNavItem
|
|
||||||
v-for="menuItem in accessibleMenuItems"
|
|
||||||
:key="menuItem.toState"
|
|
||||||
:menu-item="menuItem"
|
|
||||||
/>
|
|
||||||
<SecondaryNavItem
|
|
||||||
v-for="menuItem in additionalSecondaryMenuItems[menuConfig.parentNav]"
|
|
||||||
:key="menuItem.key"
|
|
||||||
:menu-item="menuItem"
|
|
||||||
@addLabel="showAddLabelPopup"
|
|
||||||
/>
|
|
||||||
</transition-group>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
+51
-52
@@ -1,55 +1,3 @@
|
|||||||
<script>
|
|
||||||
export default {
|
|
||||||
props: {
|
|
||||||
to: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
label: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
labelColor: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
shouldTruncate: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
icon: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
warningIcon: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
showChildCount: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
childItemCount: {
|
|
||||||
type: Number,
|
|
||||||
default: 0,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
showIcon() {
|
|
||||||
return {
|
|
||||||
'overflow-hidden whitespace-nowrap text-ellipsis': this.shouldTruncate,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
isCountZero() {
|
|
||||||
return this.childItemCount === 0;
|
|
||||||
},
|
|
||||||
menuTitle() {
|
|
||||||
return this.shouldTruncate ? this.label : '';
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<router-link
|
<router-link
|
||||||
v-slot="{ href, isActive, navigate }"
|
v-slot="{ href, isActive, navigate }"
|
||||||
@@ -130,3 +78,54 @@ export default {
|
|||||||
</li>
|
</li>
|
||||||
</router-link>
|
</router-link>
|
||||||
</template>
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
to: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
label: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
labelColor: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
shouldTruncate: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
icon: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
warningIcon: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
showChildCount: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
childItemCount: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
showIcon() {
|
||||||
|
return {
|
||||||
|
'overflow-hidden whitespace-nowrap text-ellipsis': this.shouldTruncate,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
isCountZero() {
|
||||||
|
return this.childItemCount === 0;
|
||||||
|
},
|
||||||
|
menuTitle() {
|
||||||
|
return this.shouldTruncate ? this.label : '';
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -1,7 +1,101 @@
|
|||||||
|
<template>
|
||||||
|
<li v-show="isMenuItemVisible" class="mt-1">
|
||||||
|
<div v-if="hasSubMenu" class="flex justify-between">
|
||||||
|
<span
|
||||||
|
class="px-2 pt-1 my-2 text-sm font-semibold text-slate-700 dark:text-slate-200"
|
||||||
|
>
|
||||||
|
{{ $t(`SIDEBAR.${menuItem.label}`) }}
|
||||||
|
</span>
|
||||||
|
<div v-if="menuItem.showNewButton" class="flex items-center">
|
||||||
|
<woot-button
|
||||||
|
size="tiny"
|
||||||
|
variant="clear"
|
||||||
|
color-scheme="secondary"
|
||||||
|
icon="add"
|
||||||
|
class="p-0 ml-2"
|
||||||
|
@click="onClickOpen"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<router-link
|
||||||
|
v-else
|
||||||
|
class="flex items-center p-2 m-0 text-sm font-medium leading-4 rounded-lg text-slate-700 dark:text-slate-100 hover:bg-slate-25 dark:hover:bg-slate-800"
|
||||||
|
:class="computedClass"
|
||||||
|
:to="menuItem && menuItem.toState"
|
||||||
|
>
|
||||||
|
<fluent-icon
|
||||||
|
:icon="menuItem.icon"
|
||||||
|
class="min-w-[1rem] mr-1.5 rtl:mr-0 rtl:ml-1.5"
|
||||||
|
size="14"
|
||||||
|
/>
|
||||||
|
{{ $t(`SIDEBAR.${menuItem.label}`) }}
|
||||||
|
<span
|
||||||
|
v-if="showChildCount(menuItem.count)"
|
||||||
|
class="px-1 py-0 mx-1 font-medium rounded-md text-xxs"
|
||||||
|
:class="{
|
||||||
|
'text-slate-300 dark:text-slate-600': isCountZero && !isActiveView,
|
||||||
|
'text-slate-600 dark:text-slate-50': !isCountZero && !isActiveView,
|
||||||
|
'bg-woot-75 dark:bg-woot-200 text-woot-600 dark:text-woot-600':
|
||||||
|
isActiveView,
|
||||||
|
'bg-slate-50 dark:bg-slate-700': !isActiveView,
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
{{ `${menuItem.count}` }}
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="menuItem.beta"
|
||||||
|
data-view-component="true"
|
||||||
|
label="Beta"
|
||||||
|
class="inline-block px-1 mx-1 font-medium leading-4 text-green-500 border border-green-400 rounded-lg text-xxs"
|
||||||
|
>
|
||||||
|
{{ $t('SIDEBAR.BETA') }}
|
||||||
|
</span>
|
||||||
|
</router-link>
|
||||||
|
|
||||||
|
<ul v-if="hasSubMenu" class="mb-0 ml-0 list-none">
|
||||||
|
<secondary-child-nav-item
|
||||||
|
v-for="child in menuItem.children"
|
||||||
|
:key="child.id"
|
||||||
|
:to="child.toState"
|
||||||
|
:label="child.label"
|
||||||
|
:label-color="child.color"
|
||||||
|
:should-truncate="child.truncateLabel"
|
||||||
|
:icon="computedInboxClass(child)"
|
||||||
|
:warning-icon="computedInboxErrorClass(child)"
|
||||||
|
:show-child-count="showChildCount(child.count)"
|
||||||
|
:child-item-count="child.count"
|
||||||
|
/>
|
||||||
|
<Policy :permissions="['administrator']">
|
||||||
|
<router-link
|
||||||
|
v-if="menuItem.newLink"
|
||||||
|
v-slot="{ href, navigate }"
|
||||||
|
:to="menuItem.toState"
|
||||||
|
custom
|
||||||
|
>
|
||||||
|
<li class="pl-1">
|
||||||
|
<a :href="href">
|
||||||
|
<woot-button
|
||||||
|
size="tiny"
|
||||||
|
variant="clear"
|
||||||
|
color-scheme="secondary"
|
||||||
|
icon="add"
|
||||||
|
:data-testid="menuItem.dataTestid"
|
||||||
|
@click="e => newLinkClick(e, navigate)"
|
||||||
|
>
|
||||||
|
{{ $t(`SIDEBAR.${menuItem.newLinkTag}`) }}
|
||||||
|
</woot-button>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</router-link>
|
||||||
|
</Policy>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import { useAdmin } from 'dashboard/composables/useAdmin';
|
import { useAdmin } from 'dashboard/composables/useAdmin';
|
||||||
import { useConfig } from 'dashboard/composables/useConfig';
|
import configMixin from 'shared/mixins/configMixin';
|
||||||
import {
|
import {
|
||||||
getInboxClassByType,
|
getInboxClassByType,
|
||||||
getInboxWarningIconClass,
|
getInboxWarningIconClass,
|
||||||
@@ -16,6 +110,7 @@ import Policy from '../../policy.vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { SecondaryChildNavItem, Policy },
|
components: { SecondaryChildNavItem, Policy },
|
||||||
|
mixins: [configMixin],
|
||||||
props: {
|
props: {
|
||||||
menuItem: {
|
menuItem: {
|
||||||
type: Object,
|
type: Object,
|
||||||
@@ -24,10 +119,8 @@ export default {
|
|||||||
},
|
},
|
||||||
setup() {
|
setup() {
|
||||||
const { isAdmin } = useAdmin();
|
const { isAdmin } = useAdmin();
|
||||||
const { isEnterprise } = useConfig();
|
|
||||||
return {
|
return {
|
||||||
isAdmin,
|
isAdmin,
|
||||||
isEnterprise,
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -170,7 +263,7 @@ export default {
|
|||||||
} else if (this.menuItem.showModalForNewItem) {
|
} else if (this.menuItem.showModalForNewItem) {
|
||||||
if (this.menuItem.modalName === 'AddLabel') {
|
if (this.menuItem.modalName === 'AddLabel') {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
this.$emit('addLabel');
|
this.$emit('add-label');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -186,97 +279,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<li v-show="isMenuItemVisible" class="mt-1">
|
|
||||||
<div v-if="hasSubMenu" class="flex justify-between">
|
|
||||||
<span
|
|
||||||
class="px-2 pt-1 my-2 text-sm font-semibold text-slate-700 dark:text-slate-200"
|
|
||||||
>
|
|
||||||
{{ $t(`SIDEBAR.${menuItem.label}`) }}
|
|
||||||
</span>
|
|
||||||
<div v-if="menuItem.showNewButton" class="flex items-center">
|
|
||||||
<woot-button
|
|
||||||
size="tiny"
|
|
||||||
variant="clear"
|
|
||||||
color-scheme="secondary"
|
|
||||||
icon="add"
|
|
||||||
class="p-0 ml-2"
|
|
||||||
@click="onClickOpen"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<router-link
|
|
||||||
v-else
|
|
||||||
class="flex items-center p-2 m-0 text-sm font-medium leading-4 rounded-lg text-slate-700 dark:text-slate-100 hover:bg-slate-25 dark:hover:bg-slate-800"
|
|
||||||
:class="computedClass"
|
|
||||||
:to="menuItem && menuItem.toState"
|
|
||||||
>
|
|
||||||
<fluent-icon
|
|
||||||
:icon="menuItem.icon"
|
|
||||||
class="min-w-[1rem] mr-1.5 rtl:mr-0 rtl:ml-1.5"
|
|
||||||
size="14"
|
|
||||||
/>
|
|
||||||
{{ $t(`SIDEBAR.${menuItem.label}`) }}
|
|
||||||
<span
|
|
||||||
v-if="showChildCount(menuItem.count)"
|
|
||||||
class="px-1 py-0 mx-1 font-medium rounded-md text-xxs"
|
|
||||||
:class="{
|
|
||||||
'text-slate-300 dark:text-slate-600': isCountZero && !isActiveView,
|
|
||||||
'text-slate-600 dark:text-slate-50': !isCountZero && !isActiveView,
|
|
||||||
'bg-woot-75 dark:bg-woot-200 text-woot-600 dark:text-woot-600':
|
|
||||||
isActiveView,
|
|
||||||
'bg-slate-50 dark:bg-slate-700': !isActiveView,
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
{{ `${menuItem.count}` }}
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
v-if="menuItem.beta"
|
|
||||||
data-view-component="true"
|
|
||||||
label="Beta"
|
|
||||||
class="inline-block px-1 mx-1 font-medium leading-4 text-green-500 border border-green-400 rounded-lg text-xxs"
|
|
||||||
>
|
|
||||||
{{ $t('SIDEBAR.BETA') }}
|
|
||||||
</span>
|
|
||||||
</router-link>
|
|
||||||
|
|
||||||
<ul v-if="hasSubMenu" class="mb-0 ml-0 list-none">
|
|
||||||
<SecondaryChildNavItem
|
|
||||||
v-for="child in menuItem.children"
|
|
||||||
:key="child.id"
|
|
||||||
:to="child.toState"
|
|
||||||
:label="child.label"
|
|
||||||
:label-color="child.color"
|
|
||||||
:should-truncate="child.truncateLabel"
|
|
||||||
:icon="computedInboxClass(child)"
|
|
||||||
:warning-icon="computedInboxErrorClass(child)"
|
|
||||||
:show-child-count="showChildCount(child.count)"
|
|
||||||
:child-item-count="child.count"
|
|
||||||
/>
|
|
||||||
<Policy :permissions="['administrator']">
|
|
||||||
<router-link
|
|
||||||
v-if="menuItem.newLink"
|
|
||||||
v-slot="{ href, navigate }"
|
|
||||||
:to="menuItem.toState"
|
|
||||||
custom
|
|
||||||
>
|
|
||||||
<li class="pl-1">
|
|
||||||
<a :href="href">
|
|
||||||
<woot-button
|
|
||||||
size="tiny"
|
|
||||||
variant="clear"
|
|
||||||
color-scheme="secondary"
|
|
||||||
icon="add"
|
|
||||||
:data-testid="menuItem.dataTestid"
|
|
||||||
@click="e => newLinkClick(e, navigate)"
|
|
||||||
>
|
|
||||||
{{ $t(`SIDEBAR.${menuItem.newLinkTag}`) }}
|
|
||||||
</woot-button>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</router-link>
|
|
||||||
</Policy>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,11 +1,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { useStoreGetters } from 'dashboard/composables/store';
|
import { useStoreGetters } from 'dashboard/composables/store';
|
||||||
import { computed } from 'vue';
|
import { computed } from 'vue';
|
||||||
import {
|
import { hasPermissions } from '../helper/permissionsHelper';
|
||||||
getUserPermissions,
|
|
||||||
hasPermissions,
|
|
||||||
} from '../helper/permissionsHelper';
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
permissions: {
|
permissions: {
|
||||||
type: Array,
|
type: Array,
|
||||||
@@ -14,17 +10,12 @@ const props = defineProps({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const getters = useStoreGetters();
|
const getters = useStoreGetters();
|
||||||
const user = computed(() => getters.getCurrentUser.value);
|
const user = getters.getCurrentUser.value;
|
||||||
const accountId = computed(() => getters.getCurrentAccountId.value);
|
const hasPermission = computed(() =>
|
||||||
const userPermissions = computed(() => {
|
hasPermissions(props.permissions, user.permissions)
|
||||||
return getUserPermissions(user.value, accountId.value);
|
);
|
||||||
});
|
|
||||||
const hasPermission = computed(() => {
|
|
||||||
return hasPermissions(props.permissions, userPermissions.value);
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- eslint-disable vue/no-root-v-if -->
|
|
||||||
<template>
|
<template>
|
||||||
<div v-if="hasPermission">
|
<div v-if="hasPermission">
|
||||||
<slot />
|
<slot />
|
||||||
|
|||||||
@@ -1,3 +1,24 @@
|
|||||||
|
<template>
|
||||||
|
<div class="announcement-popup">
|
||||||
|
<span v-if="popupMessage" class="popup-content">
|
||||||
|
{{ popupMessage }}
|
||||||
|
<span v-if="routeText" class="route-url" @click="onClickOpenPath">
|
||||||
|
{{ routeText }}
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
<div v-if="hasCloseButton" class="popup-close">
|
||||||
|
<woot-button
|
||||||
|
v-if="hasCloseButton"
|
||||||
|
color-scheme="primary"
|
||||||
|
variant="link"
|
||||||
|
size="small"
|
||||||
|
@click="onClickClose"
|
||||||
|
>
|
||||||
|
{{ closeButtonText }}
|
||||||
|
</woot-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -29,28 +50,6 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="announcement-popup">
|
|
||||||
<span v-if="popupMessage" class="popup-content">
|
|
||||||
{{ popupMessage }}
|
|
||||||
<span v-if="routeText" class="route-url" @click="onClickOpenPath">
|
|
||||||
{{ routeText }}
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
<div v-if="hasCloseButton" class="popup-close">
|
|
||||||
<woot-button
|
|
||||||
v-if="hasCloseButton"
|
|
||||||
color-scheme="primary"
|
|
||||||
variant="link"
|
|
||||||
size="small"
|
|
||||||
@click="onClickClose"
|
|
||||||
>
|
|
||||||
{{ closeButtonText }}
|
|
||||||
</woot-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.announcement-popup {
|
.announcement-popup {
|
||||||
max-width: 15rem;
|
max-width: 15rem;
|
||||||
|
|||||||
@@ -1,3 +1,45 @@
|
|||||||
|
<template>
|
||||||
|
<div
|
||||||
|
class="flex items-center justify-center h-12 gap-4 px-4 py-3 text-xs text-white banner dark:text-white"
|
||||||
|
:class="bannerClasses"
|
||||||
|
>
|
||||||
|
<span class="banner-message">
|
||||||
|
{{ bannerMessage }}
|
||||||
|
<a
|
||||||
|
v-if="hrefLink"
|
||||||
|
:href="hrefLink"
|
||||||
|
rel="noopener noreferrer nofollow"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
{{ hrefLinkText }}
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
<div class="actions">
|
||||||
|
<woot-button
|
||||||
|
v-if="hasActionButton"
|
||||||
|
size="tiny"
|
||||||
|
:icon="actionButtonIcon"
|
||||||
|
:variant="actionButtonVariant"
|
||||||
|
color-scheme="primary"
|
||||||
|
class-names="banner-action__button"
|
||||||
|
@click="onClick"
|
||||||
|
>
|
||||||
|
{{ actionButtonLabel }}
|
||||||
|
</woot-button>
|
||||||
|
<woot-button
|
||||||
|
v-if="hasCloseButton"
|
||||||
|
size="tiny"
|
||||||
|
:color-scheme="colorScheme"
|
||||||
|
icon="dismiss-circle"
|
||||||
|
class-names="banner-action__button"
|
||||||
|
@click="onClickClose"
|
||||||
|
>
|
||||||
|
{{ $t('GENERAL_SETTINGS.DISMISS') }}
|
||||||
|
</woot-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -59,48 +101,6 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
class="flex items-center justify-center h-12 gap-4 px-4 py-3 text-xs text-white banner dark:text-white"
|
|
||||||
:class="bannerClasses"
|
|
||||||
>
|
|
||||||
<span class="banner-message">
|
|
||||||
{{ bannerMessage }}
|
|
||||||
<a
|
|
||||||
v-if="hrefLink"
|
|
||||||
:href="hrefLink"
|
|
||||||
rel="noopener noreferrer nofollow"
|
|
||||||
target="_blank"
|
|
||||||
>
|
|
||||||
{{ hrefLinkText }}
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
<div class="actions">
|
|
||||||
<woot-button
|
|
||||||
v-if="hasActionButton"
|
|
||||||
size="tiny"
|
|
||||||
:icon="actionButtonIcon"
|
|
||||||
:variant="actionButtonVariant"
|
|
||||||
color-scheme="primary"
|
|
||||||
class-names="banner-action__button"
|
|
||||||
@click="onClick"
|
|
||||||
>
|
|
||||||
{{ actionButtonLabel }}
|
|
||||||
</woot-button>
|
|
||||||
<woot-button
|
|
||||||
v-if="hasCloseButton"
|
|
||||||
size="tiny"
|
|
||||||
:color-scheme="colorScheme"
|
|
||||||
icon="dismiss-circle"
|
|
||||||
class-names="banner-action__button"
|
|
||||||
@click="onClickClose"
|
|
||||||
>
|
|
||||||
{{ $t('GENERAL_SETTINGS.DISMISS') }}
|
|
||||||
</woot-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.banner {
|
.banner {
|
||||||
&.primary {
|
&.primary {
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
<div
|
||||||
|
class="fixed outline-none z-[9999] cursor-pointer"
|
||||||
|
:style="style"
|
||||||
|
tabindex="0"
|
||||||
|
@blur="$emit('close')"
|
||||||
|
>
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
@@ -30,14 +40,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
class="fixed outline-none z-[9999] cursor-pointer"
|
|
||||||
:style="style"
|
|
||||||
tabindex="0"
|
|
||||||
@blur="$emit('close')"
|
|
||||||
>
|
|
||||||
<slot />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ import CalendarMonth from './components/CalendarMonth.vue';
|
|||||||
import CalendarWeek from './components/CalendarWeek.vue';
|
import CalendarWeek from './components/CalendarWeek.vue';
|
||||||
import CalendarFooter from './components/CalendarFooter.vue';
|
import CalendarFooter from './components/CalendarFooter.vue';
|
||||||
|
|
||||||
const emit = defineEmits(['dateRangeChanged']);
|
|
||||||
const { LAST_7_DAYS, LAST_30_DAYS, CUSTOM_RANGE } = DATE_RANGE_TYPES;
|
const { LAST_7_DAYS, LAST_30_DAYS, CUSTOM_RANGE } = DATE_RANGE_TYPES;
|
||||||
const { START_CALENDAR, END_CALENDAR } = CALENDAR_TYPES;
|
const { START_CALENDAR, END_CALENDAR } = CALENDAR_TYPES;
|
||||||
const { WEEK, MONTH, YEAR } = CALENDAR_PERIODS;
|
const { WEEK, MONTH, YEAR } = CALENDAR_PERIODS;
|
||||||
@@ -55,6 +54,8 @@ const hoveredEndDate = ref(null);
|
|||||||
const manualStartDate = ref(selectedStartDate.value);
|
const manualStartDate = ref(selectedStartDate.value);
|
||||||
const manualEndDate = ref(selectedEndDate.value);
|
const manualEndDate = ref(selectedEndDate.value);
|
||||||
|
|
||||||
|
const emit = defineEmits(['change']);
|
||||||
|
|
||||||
// Watcher will set the start and end dates based on the selected range
|
// Watcher will set the start and end dates based on the selected range
|
||||||
watch(selectedRange, newRange => {
|
watch(selectedRange, newRange => {
|
||||||
if (newRange !== CUSTOM_RANGE) {
|
if (newRange !== CUSTOM_RANGE) {
|
||||||
@@ -222,7 +223,7 @@ const emitDateRange = () => {
|
|||||||
>
|
>
|
||||||
<CalendarDateRange
|
<CalendarDateRange
|
||||||
:selected-range="selectedRange"
|
:selected-range="selectedRange"
|
||||||
@setRange="setDateRange"
|
@set-range="setDateRange"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
class="flex flex-col w-[680px] ltr:border-l rtl:border-r border-slate-50 dark:border-slate-700/50"
|
class="flex flex-col w-[680px] ltr:border-l rtl:border-r border-slate-50 dark:border-slate-700/50"
|
||||||
@@ -264,15 +265,15 @@ const emitDateRange = () => {
|
|||||||
:calendar-type="calendar"
|
:calendar-type="calendar"
|
||||||
:start-current-date="startCurrentDate"
|
:start-current-date="startCurrentDate"
|
||||||
:end-current-date="endCurrentDate"
|
:end-current-date="endCurrentDate"
|
||||||
@selectYear="openCalendar($event, calendar, YEAR)"
|
@select-year="openCalendar($event, calendar, YEAR)"
|
||||||
/>
|
/>
|
||||||
<CalendarMonth
|
<CalendarMonth
|
||||||
v-else-if="calendarViews[calendar] === MONTH"
|
v-else-if="calendarViews[calendar] === MONTH"
|
||||||
:calendar-type="calendar"
|
:calendar-type="calendar"
|
||||||
:start-current-date="startCurrentDate"
|
:start-current-date="startCurrentDate"
|
||||||
:end-current-date="endCurrentDate"
|
:end-current-date="endCurrentDate"
|
||||||
@selectMonth="openCalendar($event, calendar)"
|
@select-month="openCalendar($event, calendar)"
|
||||||
@setView="setViewMode"
|
@set-view="setViewMode"
|
||||||
@prev="moveCalendar(calendar, 'prev', YEAR)"
|
@prev="moveCalendar(calendar, 'prev', YEAR)"
|
||||||
@next="moveCalendar(calendar, 'next', YEAR)"
|
@next="moveCalendar(calendar, 'next', YEAR)"
|
||||||
/>
|
/>
|
||||||
@@ -286,9 +287,9 @@ const emitDateRange = () => {
|
|||||||
:selected-end-date="selectedEndDate"
|
:selected-end-date="selectedEndDate"
|
||||||
:selecting-end-date="selectingEndDate"
|
:selecting-end-date="selectingEndDate"
|
||||||
:hovered-end-date="hoveredEndDate"
|
:hovered-end-date="hoveredEndDate"
|
||||||
@updateHoveredEndDate="hoveredEndDate = $event"
|
@update-hovered-end-date="hoveredEndDate = $event"
|
||||||
@selectDate="selectDate"
|
@select-date="selectDate"
|
||||||
@setView="setViewMode"
|
@set-view="setViewMode"
|
||||||
@prev="moveCalendar(calendar, 'prev')"
|
@prev="moveCalendar(calendar, 'prev')"
|
||||||
@next="moveCalendar(calendar, 'next')"
|
@next="moveCalendar(calendar, 'next')"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ defineProps({
|
|||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
const emit = defineEmits(['prev', 'next', 'setView']);
|
const emit = defineEmits(['prev', 'next', 'set-view']);
|
||||||
|
|
||||||
const { YEAR } = CALENDAR_PERIODS;
|
const { YEAR } = CALENDAR_PERIODS;
|
||||||
|
|
||||||
@@ -32,7 +32,7 @@ const onClickNext = type => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const onClickSetView = (type, mode) => {
|
const onClickSetView = (type, mode) => {
|
||||||
emit('setView', type, mode);
|
emit('set-view', type, mode);
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -8,10 +8,10 @@ defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['setRange']);
|
const emit = defineEmits(['set-range']);
|
||||||
|
|
||||||
const setDateRange = range => {
|
const setDateRange = range => {
|
||||||
emit('setRange', range);
|
emit('set-range', range);
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
const emit = defineEmits(['clear', 'clear']);
|
const emit = defineEmits(['clear', 'apply']);
|
||||||
|
|
||||||
const onClickClear = () => {
|
const onClickClear = () => {
|
||||||
emit('clear');
|
emit('clear');
|
||||||
|
|||||||
@@ -18,7 +18,6 @@ const props = defineProps({
|
|||||||
endCurrentDate: Date,
|
endCurrentDate: Date,
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['selectMonth', 'prev', 'next', 'setView']);
|
|
||||||
const { START_CALENDAR } = CALENDAR_TYPES;
|
const { START_CALENDAR } = CALENDAR_TYPES;
|
||||||
const { MONTH, YEAR } = CALENDAR_PERIODS;
|
const { MONTH, YEAR } = CALENDAR_PERIODS;
|
||||||
|
|
||||||
@@ -34,8 +33,10 @@ const activeMonthIndex = computed(() => {
|
|||||||
return getMonth(date);
|
return getMonth(date);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const emit = defineEmits(['select-month', 'prev', 'next', 'set-view']);
|
||||||
|
|
||||||
const setViewMode = (type, mode) => {
|
const setViewMode = (type, mode) => {
|
||||||
emit('setView', type, mode);
|
emit('set-view', type, mode);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onClickPrev = () => {
|
const onClickPrev = () => {
|
||||||
@@ -47,7 +48,7 @@ const onClickNext = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const selectMonth = index => {
|
const selectMonth = index => {
|
||||||
emit('selectMonth', index);
|
emit('select-month', index);
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -62,7 +63,7 @@ const selectMonth = index => {
|
|||||||
MONTH
|
MONTH
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
@setView="setViewMode"
|
@set-view="setViewMode"
|
||||||
@prev="onClickPrev"
|
@prev="onClickPrev"
|
||||||
@next="onClickNext"
|
@next="onClickNext"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -31,22 +31,22 @@ const props = defineProps({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits([
|
const emit = defineEmits([
|
||||||
'updateHoveredEndDate',
|
'update-hovered-end-date',
|
||||||
'selectDate',
|
'select-date',
|
||||||
'prev',
|
'prev',
|
||||||
'next',
|
'next',
|
||||||
'setView',
|
'set-view',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const { START_CALENDAR } = CALENDAR_TYPES;
|
const { START_CALENDAR } = CALENDAR_TYPES;
|
||||||
const { MONTH } = CALENDAR_PERIODS;
|
const { MONTH } = CALENDAR_PERIODS;
|
||||||
|
|
||||||
const emitHoveredEndDate = day => {
|
const emitHoveredEndDate = day => {
|
||||||
emit('updateHoveredEndDate', day);
|
emit('update-hovered-end-date', day);
|
||||||
};
|
};
|
||||||
|
|
||||||
const emitSelectDate = day => {
|
const emitSelectDate = day => {
|
||||||
emit('selectDate', day);
|
emit('select-date', day);
|
||||||
};
|
};
|
||||||
const onClickPrev = () => {
|
const onClickPrev = () => {
|
||||||
emit('prev');
|
emit('prev');
|
||||||
@@ -57,7 +57,7 @@ const onClickNext = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const setViewMode = (type, mode) => {
|
const setViewMode = (type, mode) => {
|
||||||
emit('setView', type, mode);
|
emit('set-view', type, mode);
|
||||||
};
|
};
|
||||||
|
|
||||||
const weeks = calendarType => {
|
const weeks = calendarType => {
|
||||||
@@ -139,7 +139,7 @@ const dayClasses = day => ({
|
|||||||
"
|
"
|
||||||
@prev="onClickPrev"
|
@prev="onClickPrev"
|
||||||
@next="onClickNext"
|
@next="onClickNext"
|
||||||
@setView="setViewMode"
|
@set-view="setViewMode"
|
||||||
/>
|
/>
|
||||||
<CalendarWeekLabel />
|
<CalendarWeekLabel />
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -14,8 +14,6 @@ const props = defineProps({
|
|||||||
endCurrentDate: Date,
|
endCurrentDate: Date,
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['selectYear']);
|
|
||||||
|
|
||||||
const { START_CALENDAR } = CALENDAR_TYPES;
|
const { START_CALENDAR } = CALENDAR_TYPES;
|
||||||
|
|
||||||
const calculateStartYear = date => {
|
const calculateStartYear = date => {
|
||||||
@@ -54,8 +52,10 @@ const onClickNext = () => {
|
|||||||
startYear.value = addYears(new Date(startYear.value, 0, 1), 10).getFullYear();
|
startYear.value = addYears(new Date(startYear.value, 0, 1), 10).getFullYear();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const emit = defineEmits(['select-year']);
|
||||||
|
|
||||||
const selectYear = year => {
|
const selectYear = year => {
|
||||||
emit('selectYear', year);
|
emit('select-year', year);
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -12,8 +12,6 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['open']);
|
|
||||||
|
|
||||||
const formatDateRange = computed(() => {
|
const formatDateRange = computed(() => {
|
||||||
const startDate = props.selectedStartDate;
|
const startDate = props.selectedStartDate;
|
||||||
const endDate = props.selectedEndDate;
|
const endDate = props.selectedEndDate;
|
||||||
@@ -41,6 +39,8 @@ const activeDateRange = computed(
|
|||||||
() => dateRanges.find(range => range.value === props.selectedRange).label
|
() => dateRanges.find(range => range.value === props.selectedRange).label
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const emit = defineEmits(['open']);
|
||||||
|
|
||||||
const openDatePicker = () => {
|
const openDatePicker = () => {
|
||||||
emit('open');
|
emit('open');
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,3 +1,18 @@
|
|||||||
|
<template>
|
||||||
|
<div class="date-picker">
|
||||||
|
<date-picker
|
||||||
|
:range="true"
|
||||||
|
:confirm="true"
|
||||||
|
:clearable="false"
|
||||||
|
:editable="false"
|
||||||
|
:confirm-text="confirmText"
|
||||||
|
:placeholder="placeholder"
|
||||||
|
:value="value"
|
||||||
|
@change="handleChange"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import DatePicker from 'vue2-datepicker';
|
import DatePicker from 'vue2-datepicker';
|
||||||
export default {
|
export default {
|
||||||
@@ -23,18 +38,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="date-picker">
|
|
||||||
<DatePicker
|
|
||||||
range
|
|
||||||
confirm
|
|
||||||
:clearable="false"
|
|
||||||
:editable="false"
|
|
||||||
:confirm-text="confirmText"
|
|
||||||
:placeholder="placeholder"
|
|
||||||
:value="value"
|
|
||||||
@change="handleChange"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,19 @@
|
|||||||
|
<template>
|
||||||
|
<div class="date-picker">
|
||||||
|
<date-picker
|
||||||
|
type="datetime"
|
||||||
|
:confirm="true"
|
||||||
|
:clearable="false"
|
||||||
|
:editable="false"
|
||||||
|
:confirm-text="confirmText"
|
||||||
|
:placeholder="placeholder"
|
||||||
|
:value="value"
|
||||||
|
:disabled-date="disableBeforeToday"
|
||||||
|
@change="handleChange"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import addDays from 'date-fns/addDays';
|
import addDays from 'date-fns/addDays';
|
||||||
import DatePicker from 'vue2-datepicker';
|
import DatePicker from 'vue2-datepicker';
|
||||||
@@ -29,19 +45,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="date-picker">
|
|
||||||
<DatePicker
|
|
||||||
type="datetime"
|
|
||||||
confirm
|
|
||||||
:clearable="false"
|
|
||||||
:editable="false"
|
|
||||||
:confirm-text="confirmText"
|
|
||||||
:placeholder="placeholder"
|
|
||||||
:value="value"
|
|
||||||
:disabled-date="disableBeforeToday"
|
|
||||||
@change="handleChange"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<button
|
<button
|
||||||
class="inline-flex relative items-center p-1.5 w-fit h-8 gap-1.5 rounded-lg hover:bg-slate-50 dark:hover:bg-slate-800 active:bg-slate-75 dark:active:bg-slate-800"
|
class="inline-flex relative items-center p-1.5 w-fit h-8 gap-1.5 rounded-lg hover:bg-slate-50 dark:hover:bg-slate-800 active:bg-slate-75 dark:active:bg-slate-800"
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="flex items-center justify-center h-10 text-sm text-slate-500 dark:text-slate-300"
|
class="flex items-center justify-center h-10 text-sm text-slate-500 dark:text-slate-300"
|
||||||
|
|||||||
@@ -38,13 +38,13 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['onSearch']);
|
const emits = defineEmits(['on-search']);
|
||||||
|
|
||||||
const searchTerm = ref('');
|
const searchTerm = ref('');
|
||||||
|
|
||||||
const onSearch = debounce(value => {
|
const onSearch = debounce(value => {
|
||||||
searchTerm.value = value;
|
searchTerm.value = value;
|
||||||
emit('onSearch', value);
|
emits('on-search', value);
|
||||||
}, 300);
|
}, 300);
|
||||||
|
|
||||||
const filteredListItems = computed(() => {
|
const filteredListItems = computed(() => {
|
||||||
@@ -71,14 +71,13 @@ const shouldShowEmptyState = computed(() => {
|
|||||||
return !props.isLoading && isDropdownListEmpty.value;
|
return !props.isLoading && isDropdownListEmpty.value;
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="absolute z-20 w-40 bg-white border shadow dark:bg-slate-800 rounded-xl border-slate-50 dark:border-slate-700/50 max-h-[400px]"
|
class="absolute z-20 w-40 bg-white border shadow dark:bg-slate-800 rounded-xl border-slate-50 dark:border-slate-700/50 max-h-[400px]"
|
||||||
@click.stop
|
@click.stop
|
||||||
>
|
>
|
||||||
<slot name="search">
|
<slot name="search">
|
||||||
<DropdownSearch
|
<dropdown-search
|
||||||
v-if="enableSearch"
|
v-if="enableSearch"
|
||||||
:input-value="searchTerm"
|
:input-value="searchTerm"
|
||||||
:input-placeholder="inputPlaceholder"
|
:input-placeholder="inputPlaceholder"
|
||||||
@@ -88,21 +87,19 @@ const shouldShowEmptyState = computed(() => {
|
|||||||
/>
|
/>
|
||||||
</slot>
|
</slot>
|
||||||
<slot name="listItem">
|
<slot name="listItem">
|
||||||
<DropdownLoadingState
|
<dropdown-loading-state
|
||||||
v-if="shouldShowLoadingState"
|
v-if="shouldShowLoadingState"
|
||||||
:message="loadingPlaceholder"
|
:message="loadingPlaceholder"
|
||||||
/>
|
/>
|
||||||
<DropdownEmptyState
|
<dropdown-empty-state
|
||||||
v-else-if="shouldShowEmptyState"
|
v-else-if="shouldShowEmptyState"
|
||||||
:message="$t('REPORT.FILTER_ACTIONS.EMPTY_LIST')"
|
:message="$t('REPORT.FILTER_ACTIONS.EMPTY_LIST')"
|
||||||
/>
|
/>
|
||||||
<ListItemButton
|
<list-item-button
|
||||||
v-for="item in filteredListItems"
|
v-for="item in filteredListItems"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:is-active="isFilterActive(item.id)"
|
:is-active="isFilterActive(item.id)"
|
||||||
:button-text="item.name"
|
:button-text="item.name"
|
||||||
:icon="item.icon"
|
|
||||||
:icon-color="item.iconColor"
|
|
||||||
@click="$emit('click', item)"
|
@click="$emit('click', item)"
|
||||||
/>
|
/>
|
||||||
</slot>
|
</slot>
|
||||||
|
|||||||
@@ -8,17 +8,8 @@ defineProps({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
icon: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
iconColor: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<button
|
<button
|
||||||
class="relative inline-flex items-center justify-start w-full p-3 border-0 rounded-none first:rounded-t-xl last:rounded-b-xl h-11 hover:bg-slate-50 dark:hover:bg-slate-700 active:bg-slate-75 dark:active:bg-slate-800"
|
class="relative inline-flex items-center justify-start w-full p-3 border-0 rounded-none first:rounded-t-xl last:rounded-b-xl h-11 hover:bg-slate-50 dark:hover:bg-slate-700 active:bg-slate-75 dark:active:bg-slate-800"
|
||||||
@@ -28,12 +19,6 @@ defineProps({
|
|||||||
@focus="$emit('focus')"
|
@focus="$emit('focus')"
|
||||||
>
|
>
|
||||||
<div class="inline-flex items-center gap-3 overflow-hidden">
|
<div class="inline-flex items-center gap-3 overflow-hidden">
|
||||||
<fluent-icon
|
|
||||||
v-if="icon"
|
|
||||||
:icon="icon"
|
|
||||||
size="18"
|
|
||||||
:style="{ color: iconColor }"
|
|
||||||
/>
|
|
||||||
<span
|
<span
|
||||||
class="text-sm font-medium truncate text-slate-900 dark:text-slate-50"
|
class="text-sm font-medium truncate text-slate-900 dark:text-slate-50"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="flex items-center justify-center h-10 text-sm text-slate-500 dark:text-slate-300"
|
class="flex items-center justify-center h-10 text-sm text-slate-500 dark:text-slate-300"
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="flex items-center justify-between h-10 min-h-[40px] sticky top-0 bg-white z-10 dark:bg-slate-800 gap-2 px-3 border-b rounded-t-xl border-slate-50 dark:border-slate-700"
|
class="flex items-center justify-between h-10 min-h-[40px] sticky top-0 bg-white z-10 dark:bg-slate-800 gap-2 px-3 border-b rounded-t-xl border-slate-50 dark:border-slate-700"
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="relative group w-[inherit] whitespace-normal z-20">
|
<div class="relative group w-[inherit] whitespace-normal z-20">
|
||||||
<fluent-icon
|
<fluent-icon
|
||||||
|
|||||||
@@ -1,3 +1,32 @@
|
|||||||
|
<template>
|
||||||
|
<div
|
||||||
|
class="inline-flex ltr:mr-1 rtl:ml-1 mb-1"
|
||||||
|
:class="labelClass"
|
||||||
|
:style="labelStyle"
|
||||||
|
:title="description"
|
||||||
|
>
|
||||||
|
<span v-if="icon" class="label-action--button">
|
||||||
|
<fluent-icon :icon="icon" size="12" class="label--icon cursor-pointer" />
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="['smooth', 'dashed'].includes(variant) && title && !icon"
|
||||||
|
:style="{ background: color }"
|
||||||
|
class="label-color-dot flex-shrink-0"
|
||||||
|
/>
|
||||||
|
<span v-if="!href" class="whitespace-nowrap text-ellipsis overflow-hidden">
|
||||||
|
{{ title }}
|
||||||
|
</span>
|
||||||
|
<a v-else :href="href" :style="anchorStyle">{{ title }}</a>
|
||||||
|
<button
|
||||||
|
v-if="showClose"
|
||||||
|
class="label-close--button p-0"
|
||||||
|
:style="{ color: textColor }"
|
||||||
|
@click="onClick"
|
||||||
|
>
|
||||||
|
<fluent-icon icon="dismiss" size="12" class="close--icon" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getContrastingTextColor } from '@chatwoot/utils';
|
import { getContrastingTextColor } from '@chatwoot/utils';
|
||||||
|
|
||||||
@@ -80,36 +109,6 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
class="inline-flex ltr:mr-1 rtl:ml-1 mb-1"
|
|
||||||
:class="labelClass"
|
|
||||||
:style="labelStyle"
|
|
||||||
:title="description"
|
|
||||||
>
|
|
||||||
<span v-if="icon" class="label-action--button">
|
|
||||||
<fluent-icon :icon="icon" size="12" class="label--icon cursor-pointer" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
v-if="['smooth', 'dashed'].includes(variant) && title && !icon"
|
|
||||||
:style="{ background: color }"
|
|
||||||
class="label-color-dot flex-shrink-0"
|
|
||||||
/>
|
|
||||||
<span v-if="!href" class="whitespace-nowrap text-ellipsis overflow-hidden">
|
|
||||||
{{ title }}
|
|
||||||
</span>
|
|
||||||
<a v-else :href="href" :style="anchorStyle">{{ title }}</a>
|
|
||||||
<button
|
|
||||||
v-if="showClose"
|
|
||||||
class="label-close--button p-0"
|
|
||||||
:style="{ color: textColor }"
|
|
||||||
@click="onClick"
|
|
||||||
>
|
|
||||||
<fluent-icon icon="dismiss" size="12" class="close--icon" />
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.label {
|
.label {
|
||||||
@apply items-center font-medium text-xs rounded-[4px] gap-1 p-1 bg-slate-50 dark:bg-slate-700 text-slate-800 dark:text-slate-100 border border-solid border-slate-75 dark:border-slate-600 h-6;
|
@apply items-center font-medium text-xs rounded-[4px] gap-1 p-1 bg-slate-50 dark:bg-slate-700 text-slate-800 dark:text-slate-100 border border-solid border-slate-75 dark:border-slate-600 h-6;
|
||||||
|
|||||||
@@ -1,26 +1,3 @@
|
|||||||
<script>
|
|
||||||
export default {
|
|
||||||
props: {
|
|
||||||
heading: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
content: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
active: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
src: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="flex flex-col min-w-[15rem] max-h-[21.25rem] max-w-[23.75rem] rounded-md border border-solid border-slate-75 dark:border-slate-600"
|
class="flex flex-col min-w-[15rem] max-h-[21.25rem] max-w-[23.75rem] rounded-md border border-solid border-slate-75 dark:border-slate-600"
|
||||||
@@ -36,7 +13,7 @@ export default {
|
|||||||
active,
|
active,
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<div class="flex items-center p-1 text-sm font-medium">{{ heading }}</div>
|
<div class="items-center flex font-medium p-1 text-sm">{{ heading }}</div>
|
||||||
<fluent-icon
|
<fluent-icon
|
||||||
v-if="active"
|
v-if="active"
|
||||||
icon="checkmark-circle"
|
icon="checkmark-circle"
|
||||||
@@ -64,3 +41,30 @@ export default {
|
|||||||
<slot v-else />
|
<slot v-else />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
heading: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
content: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
active: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
type: String,
|
||||||
|
default: 'Active',
|
||||||
|
},
|
||||||
|
src: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -1,17 +1,3 @@
|
|||||||
<script>
|
|
||||||
export default {
|
|
||||||
props: {
|
|
||||||
value: { type: Boolean, default: false },
|
|
||||||
size: { type: String, default: '' },
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
onClick() {
|
|
||||||
this.$emit('input', !this.value);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@@ -25,6 +11,19 @@ export default {
|
|||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
value: { type: Boolean, default: false },
|
||||||
|
size: { type: String, default: '' },
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
onClick() {
|
||||||
|
this.$emit('input', !this.value);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.toggle-button {
|
.toggle-button {
|
||||||
@apply bg-slate-200 dark:bg-slate-600;
|
@apply bg-slate-200 dark:bg-slate-600;
|
||||||
|
|||||||
@@ -1,3 +1,20 @@
|
|||||||
|
<template>
|
||||||
|
<li
|
||||||
|
:class="{
|
||||||
|
'tabs-title': true,
|
||||||
|
'is-active': active,
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<a @click="onTabClick">
|
||||||
|
{{ name }}
|
||||||
|
<div v-if="showBadge" class="badge min-w-[20px]">
|
||||||
|
<span>
|
||||||
|
{{ getItemCount }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'WootTabsItem',
|
name: 'WootTabsItem',
|
||||||
@@ -44,21 +61,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<li
|
|
||||||
class="tabs-title"
|
|
||||||
:class="{
|
|
||||||
'is-active': active,
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
<a @click="onTabClick">
|
|
||||||
{{ name }}
|
|
||||||
<div v-if="showBadge" class="badge min-w-[20px]">
|
|
||||||
<span>
|
|
||||||
{{ getItemCount }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,16 @@
|
|||||||
|
<template>
|
||||||
|
<div
|
||||||
|
v-tooltip.top="{
|
||||||
|
content: tooltipText,
|
||||||
|
delay: { show: 1500, hide: 0 },
|
||||||
|
hideOnClick: true,
|
||||||
|
}"
|
||||||
|
class="ml-auto leading-4 text-xxs text-slate-500 dark:text-slate-500 hover:text-slate-900 dark:hover:text-slate-100"
|
||||||
|
>
|
||||||
|
<span>{{ `${createdAtTime} • ${lastActivityTime}` }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const MINUTE_IN_MILLI_SECONDS = 60000;
|
const MINUTE_IN_MILLI_SECONDS = 60000;
|
||||||
const HOUR_IN_MILLI_SECONDS = MINUTE_IN_MILLI_SECONDS * 60;
|
const HOUR_IN_MILLI_SECONDS = MINUTE_IN_MILLI_SECONDS * 60;
|
||||||
@@ -105,16 +118,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div
|
|
||||||
v-tooltip.top="{
|
|
||||||
content: tooltipText,
|
|
||||||
delay: { show: 1500, hide: 0 },
|
|
||||||
hideOnClick: true,
|
|
||||||
}"
|
|
||||||
class="ml-auto leading-4 text-xxs text-slate-500 dark:text-slate-500 hover:text-slate-900 dark:hover:text-slate-100"
|
|
||||||
>
|
|
||||||
<span>{{ `${createdAtTime} • ${lastActivityTime}` }}</span>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,3 +1,39 @@
|
|||||||
|
<template>
|
||||||
|
<transition-group
|
||||||
|
name="wizard-items"
|
||||||
|
tag="div"
|
||||||
|
class="wizard-box"
|
||||||
|
:class="classObject"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
v-for="item in items"
|
||||||
|
:key="item.route"
|
||||||
|
class="item"
|
||||||
|
:class="{ active: isActive(item), over: isOver(item) }"
|
||||||
|
>
|
||||||
|
<div class="flex items-center">
|
||||||
|
<h3
|
||||||
|
class="text-slate-800 dark:text-slate-100 text-base font-medium pl-6 overflow-hidden whitespace-nowrap mb-1.5 text-ellipsis leading-tight"
|
||||||
|
>
|
||||||
|
{{ item.title }}
|
||||||
|
</h3>
|
||||||
|
<span
|
||||||
|
v-if="isOver(item)"
|
||||||
|
class="text-green-500 dark:text-green-500 ml-1"
|
||||||
|
>
|
||||||
|
<fluent-icon icon="checkmark" />
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<span class="step">
|
||||||
|
{{ items.indexOf(item) + 1 }}
|
||||||
|
</span>
|
||||||
|
<p class="text-slate-600 dark:text-slate-300 text-sm m-0 pl-6">
|
||||||
|
{{ item.body }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</transition-group>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
/* eslint no-console: 0 */
|
/* eslint no-console: 0 */
|
||||||
import globalConfigMixin from 'shared/mixins/globalConfigMixin';
|
import globalConfigMixin from 'shared/mixins/globalConfigMixin';
|
||||||
@@ -5,6 +41,7 @@ import globalConfigMixin from 'shared/mixins/globalConfigMixin';
|
|||||||
export default {
|
export default {
|
||||||
mixins: [globalConfigMixin],
|
mixins: [globalConfigMixin],
|
||||||
props: {
|
props: {
|
||||||
|
isFullwidth: Boolean,
|
||||||
items: {
|
items: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => [],
|
default: () => [],
|
||||||
@@ -28,43 +65,6 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<transition-group
|
|
||||||
name="wizard-items"
|
|
||||||
tag="div"
|
|
||||||
class="wizard-box"
|
|
||||||
:class="classObject"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
v-for="item in items"
|
|
||||||
:key="item.route"
|
|
||||||
class="item"
|
|
||||||
:class="{ active: isActive(item), over: isOver(item) }"
|
|
||||||
>
|
|
||||||
<div class="flex items-center">
|
|
||||||
<h3
|
|
||||||
class="text-slate-800 dark:text-slate-100 text-base font-medium pl-6 overflow-hidden whitespace-nowrap mb-1.5 text-ellipsis leading-tight"
|
|
||||||
>
|
|
||||||
{{ item.title }}
|
|
||||||
</h3>
|
|
||||||
<span
|
|
||||||
v-if="isOver(item)"
|
|
||||||
class="ml-1 text-green-500 dark:text-green-500"
|
|
||||||
>
|
|
||||||
<fluent-icon icon="checkmark" />
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<span class="step">
|
|
||||||
{{ items.indexOf(item) + 1 }}
|
|
||||||
</span>
|
|
||||||
<p class="pl-6 m-0 text-sm text-slate-600 dark:text-slate-300">
|
|
||||||
{{ item.body }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</transition-group>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.wizard-box {
|
.wizard-box {
|
||||||
.item {
|
.item {
|
||||||
|
|||||||
@@ -1,3 +1,32 @@
|
|||||||
|
<template>
|
||||||
|
<button
|
||||||
|
class="button"
|
||||||
|
:type="type"
|
||||||
|
:class="buttonClasses"
|
||||||
|
:disabled="isDisabled || isLoading"
|
||||||
|
@click="handleClick"
|
||||||
|
>
|
||||||
|
<spinner
|
||||||
|
v-if="isLoading"
|
||||||
|
size="small"
|
||||||
|
:color-scheme="showDarkSpinner ? 'dark' : ''"
|
||||||
|
/>
|
||||||
|
<emoji-or-icon
|
||||||
|
v-else-if="icon || emoji"
|
||||||
|
class="icon"
|
||||||
|
:emoji="emoji"
|
||||||
|
:icon="icon"
|
||||||
|
:icon-size="iconSize"
|
||||||
|
/>
|
||||||
|
<span
|
||||||
|
v-if="$slots.default"
|
||||||
|
class="button__content"
|
||||||
|
:class="{ 'text-left rtl:text-right': size !== 'expanded' }"
|
||||||
|
>
|
||||||
|
<slot />
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import Spinner from 'shared/components/Spinner.vue';
|
import Spinner from 'shared/components/Spinner.vue';
|
||||||
import EmojiOrIcon from 'shared/components/EmojiOrIcon.vue';
|
import EmojiOrIcon from 'shared/components/EmojiOrIcon.vue';
|
||||||
@@ -103,33 +132,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<button
|
|
||||||
class="button"
|
|
||||||
:type="type"
|
|
||||||
:class="buttonClasses"
|
|
||||||
:disabled="isDisabled || isLoading"
|
|
||||||
@click="handleClick"
|
|
||||||
>
|
|
||||||
<Spinner
|
|
||||||
v-if="isLoading"
|
|
||||||
size="small"
|
|
||||||
:color-scheme="showDarkSpinner ? 'dark' : ''"
|
|
||||||
/>
|
|
||||||
<EmojiOrIcon
|
|
||||||
v-else-if="icon || emoji"
|
|
||||||
class="icon"
|
|
||||||
:emoji="emoji"
|
|
||||||
:icon="icon"
|
|
||||||
:icon-size="iconSize"
|
|
||||||
/>
|
|
||||||
<span
|
|
||||||
v-if="$slots.default"
|
|
||||||
class="button__content"
|
|
||||||
:class="{ 'text-left rtl:text-right': size !== 'expanded' }"
|
|
||||||
>
|
|
||||||
<slot />
|
|
||||||
</span>
|
|
||||||
</button>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,13 +1,47 @@
|
|||||||
|
<template>
|
||||||
|
<div v-if="!isFetchingAppIntegrations">
|
||||||
|
<div v-if="isAIIntegrationEnabled" class="relative">
|
||||||
|
<AIAssistanceCTAButton
|
||||||
|
v-if="shouldShowAIAssistCTAButton"
|
||||||
|
@click="openAIAssist"
|
||||||
|
/>
|
||||||
|
<woot-button
|
||||||
|
v-else
|
||||||
|
v-tooltip.top-end="$t('INTEGRATION_SETTINGS.OPEN_AI.AI_ASSIST')"
|
||||||
|
icon="wand"
|
||||||
|
color-scheme="secondary"
|
||||||
|
variant="smooth"
|
||||||
|
size="small"
|
||||||
|
@click="openAIAssist"
|
||||||
|
/>
|
||||||
|
<woot-modal
|
||||||
|
:show.sync="showAIAssistanceModal"
|
||||||
|
:on-close="hideAIAssistanceModal"
|
||||||
|
>
|
||||||
|
<AIAssistanceModal
|
||||||
|
:ai-option="aiOption"
|
||||||
|
@apply-text="insertText"
|
||||||
|
@close="hideAIAssistanceModal"
|
||||||
|
/>
|
||||||
|
</woot-modal>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="shouldShowAIAssistCTAButtonForAdmin" class="relative">
|
||||||
|
<AIAssistanceCTAButton @click="openAICta" />
|
||||||
|
<woot-modal :show.sync="showAICtaModal" :on-close="hideAICtaModal">
|
||||||
|
<AICTAModal @close="hideAICtaModal" />
|
||||||
|
</woot-modal>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { ref } from 'vue';
|
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
import { useAdmin } from 'dashboard/composables/useAdmin';
|
import { useAdmin } from 'dashboard/composables/useAdmin';
|
||||||
import { useUISettings } from 'dashboard/composables/useUISettings';
|
import { useUISettings } from 'dashboard/composables/useUISettings';
|
||||||
import { useKeyboardEvents } from 'dashboard/composables/useKeyboardEvents';
|
|
||||||
import { useAI } from 'dashboard/composables/useAI';
|
|
||||||
import AICTAModal from './AICTAModal.vue';
|
import AICTAModal from './AICTAModal.vue';
|
||||||
import AIAssistanceModal from './AIAssistanceModal.vue';
|
import AIAssistanceModal from './AIAssistanceModal.vue';
|
||||||
import { CMD_AI_ASSIST } from 'dashboard/helper/commandbar/events';
|
import aiMixin from 'dashboard/mixins/aiMixin';
|
||||||
|
import { CMD_AI_ASSIST } from 'dashboard/routes/dashboard/commands/commandBarBusEvents';
|
||||||
|
import keyboardEventListenerMixins from 'shared/mixins/keyboardEventListenerMixins';
|
||||||
import AIAssistanceCTAButton from './AIAssistanceCTAButton.vue';
|
import AIAssistanceCTAButton from './AIAssistanceCTAButton.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -16,49 +50,26 @@ export default {
|
|||||||
AICTAModal,
|
AICTAModal,
|
||||||
AIAssistanceCTAButton,
|
AIAssistanceCTAButton,
|
||||||
},
|
},
|
||||||
setup(props, { emit }) {
|
mixins: [aiMixin, keyboardEventListenerMixins],
|
||||||
|
setup() {
|
||||||
const { uiSettings, updateUISettings } = useUISettings();
|
const { uiSettings, updateUISettings } = useUISettings();
|
||||||
|
|
||||||
const { isAIIntegrationEnabled, draftMessage, recordAnalytics } = useAI();
|
|
||||||
|
|
||||||
const { isAdmin } = useAdmin();
|
const { isAdmin } = useAdmin();
|
||||||
|
|
||||||
const initialMessage = ref('');
|
|
||||||
|
|
||||||
const initializeMessage = draftMsg => {
|
|
||||||
initialMessage.value = draftMsg;
|
|
||||||
};
|
|
||||||
const keyboardEvents = {
|
|
||||||
'$mod+KeyZ': {
|
|
||||||
action: () => {
|
|
||||||
if (initialMessage.value) {
|
|
||||||
emit('replaceText', initialMessage.value);
|
|
||||||
initialMessage.value = '';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
allowOnFocusedInput: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
useKeyboardEvents(keyboardEvents);
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
uiSettings,
|
uiSettings,
|
||||||
updateUISettings,
|
updateUISettings,
|
||||||
isAdmin,
|
isAdmin,
|
||||||
initialMessage,
|
|
||||||
initializeMessage,
|
|
||||||
recordAnalytics,
|
|
||||||
isAIIntegrationEnabled,
|
|
||||||
draftMessage,
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
data: () => ({
|
data: () => ({
|
||||||
showAIAssistanceModal: false,
|
showAIAssistanceModal: false,
|
||||||
showAICtaModal: false,
|
showAICtaModal: false,
|
||||||
aiOption: '',
|
aiOption: '',
|
||||||
|
initialMessage: '',
|
||||||
}),
|
}),
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters({
|
...mapGetters({
|
||||||
|
currentChat: 'getSelectedChat',
|
||||||
isAChatwootInstance: 'globalConfig/isAChatwootInstance',
|
isAChatwootInstance: 'globalConfig/isAChatwootInstance',
|
||||||
}),
|
}),
|
||||||
isAICTAModalDismissed() {
|
isAICTAModalDismissed() {
|
||||||
@@ -81,10 +92,22 @@ export default {
|
|||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$emitter.on(CMD_AI_ASSIST, this.onAIAssist);
|
this.$emitter.on(CMD_AI_ASSIST, this.onAIAssist);
|
||||||
this.initializeMessage(this.draftMessage);
|
this.initialMessage = this.draftMessage;
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
getKeyboardEvents() {
|
||||||
|
return {
|
||||||
|
'$mod+KeyZ': {
|
||||||
|
action: () => {
|
||||||
|
if (this.initialMessage) {
|
||||||
|
this.$emit('replace-text', this.initialMessage);
|
||||||
|
this.initialMessage = '';
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
hideAIAssistanceModal() {
|
hideAIAssistanceModal() {
|
||||||
this.recordAnalytics('DISMISS_AI_SUGGESTION', {
|
this.recordAnalytics('DISMISS_AI_SUGGESTION', {
|
||||||
aiOption: this.aiOption,
|
aiOption: this.aiOption,
|
||||||
@@ -98,7 +121,7 @@ export default {
|
|||||||
is_open_ai_cta_modal_dismissed: true,
|
is_open_ai_cta_modal_dismissed: true,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
this.initializeMessage(this.draftMessage);
|
this.initialMessage = this.draftMessage;
|
||||||
const ninja = document.querySelector('ninja-keys');
|
const ninja = document.querySelector('ninja-keys');
|
||||||
ninja.open({ parent: 'ai_assist' });
|
ninja.open({ parent: 'ai_assist' });
|
||||||
},
|
},
|
||||||
@@ -113,44 +136,8 @@ export default {
|
|||||||
this.showAIAssistanceModal = true;
|
this.showAIAssistanceModal = true;
|
||||||
},
|
},
|
||||||
insertText(message) {
|
insertText(message) {
|
||||||
this.$emit('replaceText', message);
|
this.$emit('replace-text', message);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<div v-if="isAIIntegrationEnabled" class="relative">
|
|
||||||
<AIAssistanceCTAButton
|
|
||||||
v-if="shouldShowAIAssistCTAButton"
|
|
||||||
@click="openAIAssist"
|
|
||||||
/>
|
|
||||||
<woot-button
|
|
||||||
v-else
|
|
||||||
v-tooltip.top-end="$t('INTEGRATION_SETTINGS.OPEN_AI.AI_ASSIST')"
|
|
||||||
icon="wand"
|
|
||||||
color-scheme="secondary"
|
|
||||||
variant="smooth"
|
|
||||||
size="small"
|
|
||||||
@click="openAIAssist"
|
|
||||||
/>
|
|
||||||
<woot-modal
|
|
||||||
:show.sync="showAIAssistanceModal"
|
|
||||||
:on-close="hideAIAssistanceModal"
|
|
||||||
>
|
|
||||||
<AIAssistanceModal
|
|
||||||
:ai-option="aiOption"
|
|
||||||
@applyText="insertText"
|
|
||||||
@close="hideAIAssistanceModal"
|
|
||||||
/>
|
|
||||||
</woot-modal>
|
|
||||||
</div>
|
|
||||||
<div v-else-if="shouldShowAIAssistCTAButtonForAdmin" class="relative">
|
|
||||||
<AIAssistanceCTAButton @click="openAICta" />
|
|
||||||
<woot-modal :show.sync="showAICtaModal" :on-close="hideAICtaModal">
|
|
||||||
<AICTAModal @close="hideAICtaModal" />
|
|
||||||
</woot-modal>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -1,13 +1,3 @@
|
|||||||
<script>
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
onClick() {
|
|
||||||
this.$emit('click');
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="relative">
|
<div class="relative">
|
||||||
<woot-button
|
<woot-button
|
||||||
@@ -29,7 +19,15 @@ export default {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
methods: {
|
||||||
|
onClick() {
|
||||||
|
this.$emit('click');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@layer components {
|
@layer components {
|
||||||
|
|||||||
@@ -1,23 +1,60 @@
|
|||||||
|
<template>
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<woot-modal-header :header-title="headerTitle" />
|
||||||
|
<form
|
||||||
|
class="modal-content flex flex-col w-full"
|
||||||
|
@submit.prevent="applyText"
|
||||||
|
>
|
||||||
|
<div v-if="draftMessage" class="w-full">
|
||||||
|
<h4 class="text-base mt-1 text-slate-700 dark:text-slate-100">
|
||||||
|
{{ $t('INTEGRATION_SETTINGS.OPEN_AI.ASSISTANCE_MODAL.DRAFT_TITLE') }}
|
||||||
|
</h4>
|
||||||
|
<p v-dompurify-html="formatMessage(draftMessage, false)" />
|
||||||
|
<h4 class="text-base mt-1 text-slate-700 dark:text-slate-100">
|
||||||
|
{{
|
||||||
|
$t('INTEGRATION_SETTINGS.OPEN_AI.ASSISTANCE_MODAL.GENERATED_TITLE')
|
||||||
|
}}
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<AILoader v-if="isGenerating" />
|
||||||
|
<p v-else v-dompurify-html="formatMessage(generatedContent, false)" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex flex-row justify-end gap-2 py-2 px-0 w-full">
|
||||||
|
<woot-button variant="clear" @click.prevent="onClose">
|
||||||
|
{{
|
||||||
|
$t('INTEGRATION_SETTINGS.OPEN_AI.ASSISTANCE_MODAL.BUTTONS.CANCEL')
|
||||||
|
}}
|
||||||
|
</woot-button>
|
||||||
|
<woot-button :disabled="!generatedContent">
|
||||||
|
{{
|
||||||
|
$t('INTEGRATION_SETTINGS.OPEN_AI.ASSISTANCE_MODAL.BUTTONS.APPLY')
|
||||||
|
}}
|
||||||
|
</woot-button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { useMessageFormatter } from 'shared/composables/useMessageFormatter';
|
import { mapGetters } from 'vuex';
|
||||||
import { useAI } from 'dashboard/composables/useAI';
|
import messageFormatterMixin from 'shared/mixins/messageFormatterMixin';
|
||||||
import AILoader from './AILoader.vue';
|
import AILoader from './AILoader.vue';
|
||||||
|
import aiMixin from 'dashboard/mixins/aiMixin';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
AILoader,
|
AILoader,
|
||||||
},
|
},
|
||||||
|
mixins: [aiMixin, messageFormatterMixin],
|
||||||
props: {
|
props: {
|
||||||
aiOption: {
|
aiOption: {
|
||||||
type: String,
|
type: String,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
setup() {
|
|
||||||
const { formatMessage } = useMessageFormatter();
|
|
||||||
const { draftMessage, processEvent, recordAnalytics } = useAI();
|
|
||||||
return { draftMessage, processEvent, recordAnalytics, formatMessage };
|
|
||||||
},
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
generatedContent: '',
|
generatedContent: '',
|
||||||
@@ -25,6 +62,9 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
...mapGetters({
|
||||||
|
appIntegrations: 'integrations/getAppIntegrations',
|
||||||
|
}),
|
||||||
headerTitle() {
|
headerTitle() {
|
||||||
const translationKey = this.aiOption?.toUpperCase();
|
const translationKey = this.aiOption?.toUpperCase();
|
||||||
return translationKey
|
return translationKey
|
||||||
@@ -52,52 +92,13 @@ export default {
|
|||||||
},
|
},
|
||||||
applyText() {
|
applyText() {
|
||||||
this.recordAnalytics(this.aiOption);
|
this.recordAnalytics(this.aiOption);
|
||||||
this.$emit('applyText', this.generatedContent);
|
this.$emit('apply-text', this.generatedContent);
|
||||||
this.onClose();
|
this.onClose();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="flex flex-col">
|
|
||||||
<woot-modal-header :header-title="headerTitle" />
|
|
||||||
<form
|
|
||||||
class="flex flex-col w-full modal-content"
|
|
||||||
@submit.prevent="applyText"
|
|
||||||
>
|
|
||||||
<div v-if="draftMessage" class="w-full">
|
|
||||||
<h4 class="mt-1 text-base text-slate-700 dark:text-slate-100">
|
|
||||||
{{ $t('INTEGRATION_SETTINGS.OPEN_AI.ASSISTANCE_MODAL.DRAFT_TITLE') }}
|
|
||||||
</h4>
|
|
||||||
<p v-dompurify-html="formatMessage(draftMessage, false)" />
|
|
||||||
<h4 class="mt-1 text-base text-slate-700 dark:text-slate-100">
|
|
||||||
{{
|
|
||||||
$t('INTEGRATION_SETTINGS.OPEN_AI.ASSISTANCE_MODAL.GENERATED_TITLE')
|
|
||||||
}}
|
|
||||||
</h4>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<AILoader v-if="isGenerating" />
|
|
||||||
<p v-else v-dompurify-html="formatMessage(generatedContent, false)" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex flex-row justify-end w-full gap-2 px-0 py-2">
|
|
||||||
<woot-button variant="clear" @click.prevent="onClose">
|
|
||||||
{{
|
|
||||||
$t('INTEGRATION_SETTINGS.OPEN_AI.ASSISTANCE_MODAL.BUTTONS.CANCEL')
|
|
||||||
}}
|
|
||||||
</woot-button>
|
|
||||||
<woot-button :disabled="!generatedContent">
|
|
||||||
{{
|
|
||||||
$t('INTEGRATION_SETTINGS.OPEN_AI.ASSISTANCE_MODAL.BUTTONS.APPLY')
|
|
||||||
}}
|
|
||||||
</woot-button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.modal-content {
|
.modal-content {
|
||||||
@apply pt-2 px-8 pb-8;
|
@apply pt-2 px-8 pb-8;
|
||||||
|
|||||||
@@ -1,18 +1,57 @@
|
|||||||
|
<template>
|
||||||
|
<div class="flex-1 min-w-0 px-0">
|
||||||
|
<woot-modal-header
|
||||||
|
:header-title="$t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.TITLE')"
|
||||||
|
:header-content="$t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.DESC')"
|
||||||
|
/>
|
||||||
|
<form
|
||||||
|
class="flex flex-col flex-wrap modal-content"
|
||||||
|
@submit.prevent="finishOpenAI"
|
||||||
|
>
|
||||||
|
<div class="w-full mt-2">
|
||||||
|
<woot-input
|
||||||
|
v-model="value"
|
||||||
|
type="text"
|
||||||
|
:class="{ error: $v.value.$error }"
|
||||||
|
:placeholder="
|
||||||
|
$t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.KEY_PLACEHOLDER')
|
||||||
|
"
|
||||||
|
@blur="$v.value.$touch"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-row justify-between w-full gap-2 px-0 py-2">
|
||||||
|
<woot-button variant="link" @click.prevent="openOpenAIDoc">
|
||||||
|
{{ $t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.BUTTONS.NEED_HELP') }}
|
||||||
|
</woot-button>
|
||||||
|
<div class="flex items-center gap-1">
|
||||||
|
<woot-button variant="clear" @click.prevent="onDismiss">
|
||||||
|
{{ $t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.BUTTONS.DISMISS') }}
|
||||||
|
</woot-button>
|
||||||
|
<woot-button :is-disabled="$v.value.$invalid">
|
||||||
|
{{ $t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.BUTTONS.FINISH') }}
|
||||||
|
</woot-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { useVuelidate } from '@vuelidate/core';
|
import { required } from 'vuelidate/lib/validators';
|
||||||
import { required } from '@vuelidate/validators';
|
import { mapGetters } from 'vuex';
|
||||||
import { useAlert } from 'dashboard/composables';
|
import { useAlert } from 'dashboard/composables';
|
||||||
import { useUISettings } from 'dashboard/composables/useUISettings';
|
import { useUISettings } from 'dashboard/composables/useUISettings';
|
||||||
import { useAI } from 'dashboard/composables/useAI';
|
import aiMixin from 'dashboard/mixins/aiMixin';
|
||||||
import { OPEN_AI_EVENTS } from 'dashboard/helper/AnalyticsHelper/events';
|
import { OPEN_AI_EVENTS } from 'dashboard/helper/AnalyticsHelper/events';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
mixins: [aiMixin],
|
||||||
setup() {
|
setup() {
|
||||||
const { updateUISettings } = useUISettings();
|
const { updateUISettings } = useUISettings();
|
||||||
const { recordAnalytics } = useAI();
|
|
||||||
const v$ = useVuelidate();
|
|
||||||
|
|
||||||
return { updateUISettings, v$, recordAnalytics };
|
return {
|
||||||
|
updateUISettings,
|
||||||
|
};
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@@ -24,6 +63,11 @@ export default {
|
|||||||
required,
|
required,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters({
|
||||||
|
appIntegrations: 'integrations/getAppIntegrations',
|
||||||
|
}),
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClose() {
|
onClose() {
|
||||||
this.$emit('close');
|
this.$emit('close');
|
||||||
@@ -69,41 +113,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div class="flex-1 min-w-0 px-0">
|
|
||||||
<woot-modal-header
|
|
||||||
:header-title="$t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.TITLE')"
|
|
||||||
:header-content="$t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.DESC')"
|
|
||||||
/>
|
|
||||||
<form
|
|
||||||
class="flex flex-col flex-wrap modal-content"
|
|
||||||
@submit.prevent="finishOpenAI"
|
|
||||||
>
|
|
||||||
<div class="w-full mt-2">
|
|
||||||
<woot-input
|
|
||||||
v-model="value"
|
|
||||||
type="text"
|
|
||||||
:class="{ error: v$.value.$error }"
|
|
||||||
:placeholder="
|
|
||||||
$t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.KEY_PLACEHOLDER')
|
|
||||||
"
|
|
||||||
@blur="v$.value.$touch"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div class="flex flex-row justify-between w-full gap-2 px-0 py-2">
|
|
||||||
<woot-button variant="link" @click.prevent="openOpenAIDoc">
|
|
||||||
{{ $t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.BUTTONS.NEED_HELP') }}
|
|
||||||
</woot-button>
|
|
||||||
<div class="flex items-center gap-1">
|
|
||||||
<woot-button variant="clear" @click.prevent="onDismiss">
|
|
||||||
{{ $t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.BUTTONS.DISMISS') }}
|
|
||||||
</woot-button>
|
|
||||||
<woot-button :is-disabled="v$.value.$invalid">
|
|
||||||
{{ $t('INTEGRATION_SETTINGS.OPEN_AI.CTA_MODAL.BUTTONS.FINISH') }}
|
|
||||||
</woot-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|||||||
@@ -12,6 +12,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script></script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.animation-container {
|
.animation-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|||||||
@@ -1,48 +1,3 @@
|
|||||||
<script setup>
|
|
||||||
import { computed } from 'vue';
|
|
||||||
import { formatBytes } from 'shared/helpers/FileHelper';
|
|
||||||
|
|
||||||
const props = defineProps({
|
|
||||||
attachments: {
|
|
||||||
type: Array,
|
|
||||||
default: () => [],
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const emit = defineEmits(['removeAttachment']);
|
|
||||||
|
|
||||||
const nonRecordedAudioAttachments = computed(() => {
|
|
||||||
return props.attachments.filter(attachment => !attachment?.isRecordedAudio);
|
|
||||||
});
|
|
||||||
|
|
||||||
const recordedAudioAttachments = computed(() =>
|
|
||||||
props.attachments.filter(attachment => attachment.isRecordedAudio)
|
|
||||||
);
|
|
||||||
|
|
||||||
const onRemoveAttachment = itemIndex => {
|
|
||||||
emit(
|
|
||||||
'removeAttachment',
|
|
||||||
nonRecordedAudioAttachments.value
|
|
||||||
.filter((_, index) => index !== itemIndex)
|
|
||||||
.concat(recordedAudioAttachments.value)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const formatFileSize = file => {
|
|
||||||
const size = file.byte_size || file.size;
|
|
||||||
return formatBytes(size, 0);
|
|
||||||
};
|
|
||||||
|
|
||||||
const isTypeImage = file => {
|
|
||||||
const type = file.content_type || file.type;
|
|
||||||
return type.includes('image');
|
|
||||||
};
|
|
||||||
|
|
||||||
const fileName = file => {
|
|
||||||
return file.filename || file.name;
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="flex overflow-auto max-h-[12.5rem]">
|
<div class="flex overflow-auto max-h-[12.5rem]">
|
||||||
<div
|
<div
|
||||||
@@ -82,3 +37,48 @@ const fileName = file => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { computed } from 'vue';
|
||||||
|
import { formatBytes } from 'shared/helpers/FileHelper';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
attachments: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const emits = defineEmits(['remove-attachment']);
|
||||||
|
|
||||||
|
const nonRecordedAudioAttachments = computed(() => {
|
||||||
|
return props.attachments.filter(attachment => !attachment?.isRecordedAudio);
|
||||||
|
});
|
||||||
|
|
||||||
|
const recordedAudioAttachments = computed(() =>
|
||||||
|
props.attachments.filter(attachment => attachment.isRecordedAudio)
|
||||||
|
);
|
||||||
|
|
||||||
|
const onRemoveAttachment = itemIndex => {
|
||||||
|
emits(
|
||||||
|
'remove-attachment',
|
||||||
|
nonRecordedAudioAttachments.value
|
||||||
|
.filter((_, index) => index !== itemIndex)
|
||||||
|
.concat(recordedAudioAttachments.value)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const formatFileSize = file => {
|
||||||
|
const size = file.byte_size || file.size;
|
||||||
|
return formatBytes(size, 0);
|
||||||
|
};
|
||||||
|
|
||||||
|
const isTypeImage = file => {
|
||||||
|
const type = file.content_type || file.type;
|
||||||
|
return type.includes('image');
|
||||||
|
};
|
||||||
|
|
||||||
|
const fileName = file => {
|
||||||
|
return file.filename || file.name;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -1,97 +1,3 @@
|
|||||||
<script>
|
|
||||||
import AutomationActionTeamMessageInput from './AutomationActionTeamMessageInput.vue';
|
|
||||||
import AutomationActionFileInput from './AutomationFileInput.vue';
|
|
||||||
import WootMessageEditor from 'dashboard/components/widgets/WootWriter/Editor.vue';
|
|
||||||
export default {
|
|
||||||
components: {
|
|
||||||
AutomationActionTeamMessageInput,
|
|
||||||
AutomationActionFileInput,
|
|
||||||
WootMessageEditor,
|
|
||||||
},
|
|
||||||
props: {
|
|
||||||
value: {
|
|
||||||
type: Object,
|
|
||||||
default: () => null,
|
|
||||||
},
|
|
||||||
actionTypes: {
|
|
||||||
type: Array,
|
|
||||||
default: () => [],
|
|
||||||
},
|
|
||||||
dropdownValues: {
|
|
||||||
type: Array,
|
|
||||||
default: () => [],
|
|
||||||
},
|
|
||||||
errorMessage: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
showActionInput: {
|
|
||||||
type: Boolean,
|
|
||||||
default: true,
|
|
||||||
},
|
|
||||||
initialFileName: {
|
|
||||||
type: String,
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
isMacro: {
|
|
||||||
type: Boolean,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
action_name: {
|
|
||||||
get() {
|
|
||||||
if (!this.value) return null;
|
|
||||||
return this.value.action_name;
|
|
||||||
},
|
|
||||||
set(value) {
|
|
||||||
const payload = this.value || {};
|
|
||||||
this.$emit('input', { ...payload, action_name: value });
|
|
||||||
},
|
|
||||||
},
|
|
||||||
action_params: {
|
|
||||||
get() {
|
|
||||||
if (!this.value) return null;
|
|
||||||
return this.value.action_params;
|
|
||||||
},
|
|
||||||
set(value) {
|
|
||||||
const payload = this.value || {};
|
|
||||||
this.$emit('input', { ...payload, action_params: value });
|
|
||||||
},
|
|
||||||
},
|
|
||||||
inputType() {
|
|
||||||
return this.actionTypes.find(action => action.key === this.action_name)
|
|
||||||
.inputType;
|
|
||||||
},
|
|
||||||
actionInputStyles() {
|
|
||||||
return {
|
|
||||||
'has-error': this.errorMessage,
|
|
||||||
'is-a-macro': this.isMacro,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
castMessageVmodel: {
|
|
||||||
get() {
|
|
||||||
if (Array.isArray(this.action_params)) {
|
|
||||||
return this.action_params[0];
|
|
||||||
}
|
|
||||||
return this.action_params;
|
|
||||||
},
|
|
||||||
set(value) {
|
|
||||||
this.action_params = value;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
removeAction() {
|
|
||||||
this.$emit('removeAction');
|
|
||||||
},
|
|
||||||
resetAction() {
|
|
||||||
this.$emit('resetAction');
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="filter" :class="actionInputStyles">
|
<div class="filter" :class="actionInputStyles">
|
||||||
<div class="filter-inputs">
|
<div class="filter-inputs">
|
||||||
@@ -138,7 +44,7 @@ export default {
|
|||||||
track-by="id"
|
track-by="id"
|
||||||
label="name"
|
label="name"
|
||||||
:placeholder="$t('FORMS.MULTISELECT.SELECT')"
|
:placeholder="$t('FORMS.MULTISELECT.SELECT')"
|
||||||
multiple
|
:multiple="true"
|
||||||
selected-label
|
selected-label
|
||||||
:select-label="$t('FORMS.MULTISELECT.ENTER_TO_SELECT')"
|
:select-label="$t('FORMS.MULTISELECT.ENTER_TO_SELECT')"
|
||||||
deselect-label=""
|
deselect-label=""
|
||||||
@@ -153,16 +59,16 @@ export default {
|
|||||||
v-model="action_params"
|
v-model="action_params"
|
||||||
type="email"
|
type="email"
|
||||||
class="answer--text-input"
|
class="answer--text-input"
|
||||||
:placeholder="$t('AUTOMATION.ACTION.EMAIL_INPUT_PLACEHOLDER')"
|
placeholder="Enter email"
|
||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
v-else-if="inputType === 'url'"
|
v-else-if="inputType === 'url'"
|
||||||
v-model="action_params"
|
v-model="action_params"
|
||||||
type="url"
|
type="url"
|
||||||
class="answer--text-input"
|
class="answer--text-input"
|
||||||
:placeholder="$t('AUTOMATION.ACTION.URL_INPUT_PLACEHOLDER')"
|
placeholder="Enter url"
|
||||||
/>
|
/>
|
||||||
<AutomationActionFileInput
|
<automation-action-file-input
|
||||||
v-if="inputType === 'attachment'"
|
v-if="inputType === 'attachment'"
|
||||||
v-model="action_params"
|
v-model="action_params"
|
||||||
:initial-file-name="initialFileName"
|
:initial-file-name="initialFileName"
|
||||||
@@ -177,25 +83,122 @@ export default {
|
|||||||
@click="removeAction"
|
@click="removeAction"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<AutomationActionTeamMessageInput
|
<automation-action-team-message-input
|
||||||
v-if="inputType === 'team_message'"
|
v-if="inputType === 'team_message'"
|
||||||
v-model="action_params"
|
v-model="action_params"
|
||||||
:teams="dropdownValues"
|
:teams="dropdownValues"
|
||||||
/>
|
/>
|
||||||
<WootMessageEditor
|
<woot-message-editor
|
||||||
v-if="inputType === 'textarea'"
|
v-if="inputType === 'textarea'"
|
||||||
v-model="castMessageVmodel"
|
v-model="castMessageVmodel"
|
||||||
rows="4"
|
rows="4"
|
||||||
enable-variables
|
:enable-variables="true"
|
||||||
:placeholder="$t('AUTOMATION.ACTION.TEAM_MESSAGE_INPUT_PLACEHOLDER')"
|
:placeholder="$t('AUTOMATION.ACTION.TEAM_MESSAGE_INPUT_PLACEHOLDER')"
|
||||||
class="action-message"
|
class="action-message"
|
||||||
/>
|
/>
|
||||||
<p v-if="errorMessage" class="filter-error">
|
<p
|
||||||
{{ errorMessage }}
|
v-if="v.action_params.$dirty && v.action_params.$error"
|
||||||
|
class="filter-error"
|
||||||
|
>
|
||||||
|
{{ $t('FILTER.EMPTY_VALUE_ERROR') }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import AutomationActionTeamMessageInput from './AutomationActionTeamMessageInput.vue';
|
||||||
|
import AutomationActionFileInput from './AutomationFileInput.vue';
|
||||||
|
import WootMessageEditor from 'dashboard/components/widgets/WootWriter/Editor.vue';
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
AutomationActionTeamMessageInput,
|
||||||
|
AutomationActionFileInput,
|
||||||
|
WootMessageEditor,
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
value: {
|
||||||
|
type: Object,
|
||||||
|
default: () => null,
|
||||||
|
},
|
||||||
|
actionTypes: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
dropdownValues: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
v: {
|
||||||
|
type: Object,
|
||||||
|
default: () => null,
|
||||||
|
},
|
||||||
|
showActionInput: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
initialFileName: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
isMacro: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
action_name: {
|
||||||
|
get() {
|
||||||
|
if (!this.value) return null;
|
||||||
|
return this.value.action_name;
|
||||||
|
},
|
||||||
|
set(value) {
|
||||||
|
const payload = this.value || {};
|
||||||
|
this.$emit('input', { ...payload, action_name: value });
|
||||||
|
},
|
||||||
|
},
|
||||||
|
action_params: {
|
||||||
|
get() {
|
||||||
|
if (!this.value) return null;
|
||||||
|
return this.value.action_params;
|
||||||
|
},
|
||||||
|
set(value) {
|
||||||
|
const payload = this.value || {};
|
||||||
|
this.$emit('input', { ...payload, action_params: value });
|
||||||
|
},
|
||||||
|
},
|
||||||
|
inputType() {
|
||||||
|
return this.actionTypes.find(action => action.key === this.action_name)
|
||||||
|
.inputType;
|
||||||
|
},
|
||||||
|
actionInputStyles() {
|
||||||
|
return {
|
||||||
|
'has-error': this.v.action_params.$dirty && this.v.action_params.$error,
|
||||||
|
'is-a-macro': this.isMacro,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
castMessageVmodel: {
|
||||||
|
get() {
|
||||||
|
if (Array.isArray(this.action_params)) {
|
||||||
|
return this.action_params[0];
|
||||||
|
}
|
||||||
|
return this.action_params;
|
||||||
|
},
|
||||||
|
set(value) {
|
||||||
|
this.action_params = value;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
removeAction() {
|
||||||
|
this.$emit('removeAction');
|
||||||
|
},
|
||||||
|
resetAction() {
|
||||||
|
this.$emit('resetAction');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.filter {
|
.filter {
|
||||||
@apply bg-slate-50 dark:bg-slate-800 p-2 border border-solid border-slate-75 dark:border-slate-600 rounded-md mb-2;
|
@apply bg-slate-50 dark:bg-slate-800 p-2 border border-solid border-slate-75 dark:border-slate-600 rounded-md mb-2;
|
||||||
|
|||||||
@@ -1,3 +1,30 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div class="multiselect-wrap--small">
|
||||||
|
<multiselect
|
||||||
|
v-model="selectedTeams"
|
||||||
|
track-by="id"
|
||||||
|
label="name"
|
||||||
|
:placeholder="$t('AUTOMATION.ACTION.TEAM_DROPDOWN_PLACEHOLDER')"
|
||||||
|
:multiple="true"
|
||||||
|
selected-label
|
||||||
|
:select-label="$t('FORMS.MULTISELECT.ENTER_TO_SELECT')"
|
||||||
|
deselect-label=""
|
||||||
|
:max-height="160"
|
||||||
|
:options="teams"
|
||||||
|
:allow-empty="false"
|
||||||
|
@input="updateValue"
|
||||||
|
/>
|
||||||
|
<textarea
|
||||||
|
v-model="message"
|
||||||
|
rows="4"
|
||||||
|
:placeholder="$t('AUTOMATION.ACTION.TEAM_MESSAGE_INPUT_PLACEHOLDER')"
|
||||||
|
@input="updateValue"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
// The value types are dynamic, hence prop validation removed to work with our action schema
|
// The value types are dynamic, hence prop validation removed to work with our action schema
|
||||||
@@ -25,33 +52,6 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<div class="multiselect-wrap--small">
|
|
||||||
<multiselect
|
|
||||||
v-model="selectedTeams"
|
|
||||||
track-by="id"
|
|
||||||
label="name"
|
|
||||||
:placeholder="$t('AUTOMATION.ACTION.TEAM_DROPDOWN_PLACEHOLDER')"
|
|
||||||
multiple
|
|
||||||
selected-label
|
|
||||||
:select-label="$t('FORMS.MULTISELECT.ENTER_TO_SELECT')"
|
|
||||||
deselect-label=""
|
|
||||||
:max-height="160"
|
|
||||||
:options="teams"
|
|
||||||
:allow-empty="false"
|
|
||||||
@input="updateValue"
|
|
||||||
/>
|
|
||||||
<textarea
|
|
||||||
v-model="message"
|
|
||||||
rows="4"
|
|
||||||
:placeholder="$t('AUTOMATION.ACTION.TEAM_MESSAGE_INPUT_PLACEHOLDER')"
|
|
||||||
@input="updateValue"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.multiselect {
|
.multiselect {
|
||||||
margin: var(--space-smaller) var(--space-zero);
|
margin: var(--space-smaller) var(--space-zero);
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user