feat: update paywall

Align it with SLA
This commit is contained in:
Shivam Mishra
2025-01-23 17:57:55 +05:30
parent fb0ab150a5
commit 2f4bf9d009
3 changed files with 20 additions and 7 deletions
@@ -1,12 +1,22 @@
<script setup>
import { computed } from 'vue';
import { useRouter } from 'vue-router';
import { useMapGetter } from 'dashboard/composables/store';
import { useAccount } from 'dashboard/composables/useAccount';
import BasePaywallModal from 'dashboard/routes/dashboard/settings/components/BasePaywallModal.vue';
const router = useRouter();
const { accountId } = useAccount();
const currentUser = useMapGetter('getCurrentUser');
const isSuperAdmin = computed(() => {
return currentUser.value.type === 'SuperAdmin';
});
const { accountId, isOnChatwootCloud } = useAccount();
const i18nKey = computed(() =>
isOnChatwootCloud.value ? 'PAYWALL' : 'ENTERPRISE_PAYWALL'
);
const openBilling = () => {
router.push({
name: 'billing_settings_index',
@@ -22,8 +32,9 @@ const openBilling = () => {
<BasePaywallModal
class="mx-auto"
feature-prefix="CAPTAIN"
i18n-key="PAYWALL"
is-on-chatwoot-cloud
:i18n-key="i18nKey"
:is-super-admin="isSuperAdmin"
:is-on-chatwoot-cloud="isOnChatwootCloud"
@upgrade="openBilling"
/>
</div>
@@ -21,7 +21,6 @@ export function useAccount() {
const accountId = computed(() => {
return Number(route.params.accountId);
});
const currentAccount = computed(() => getAccountFn.value(accountId.value));
/**
@@ -34,9 +33,6 @@ export function useAccount() {
};
const isCloudFeatureEnabled = feature => {
// always return true if not on cloud
if (!isOnChatwootCloud.value) return true;
return isFeatureEnabledonAccount.value(currentAccount.value.id, feature);
};
@@ -55,5 +51,6 @@ export function useAccount() {
accountScopedUrl,
accountScopedRoute,
isCloudFeatureEnabled,
isOnChatwootCloud,
};
}
@@ -316,6 +316,11 @@
"UPGRADE_NOW": "Upgrade now",
"CANCEL_ANYTIME": "You can change or cancel your plan anytime"
},
"ENTERPRISE_PAYWALL": {
"AVAILABLE_ON": "Captain AI feature is only available in a paid plan.",
"UPGRADE_PROMPT": "Upgrade your plan to get access to our assistants, copilot and more.",
"ASK_ADMIN": "Please reach out to your administrator for the upgrade."
},
"BANNER": {
"RESPONSES": "You've used over 80% of your response limit. To continue using Captain AI, please upgrade.",
"DOCUMENTS": "Document limit reached. Upgrade to continue using Captain AI."