mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
* feat: Remove foundation * chore: Minor fix * Minor fix * Update _forms.scss * chore: More changes * chore: Minor fix * chore: Clean up * fix: font-weight * chore: More changes * chore: Setting page * chore: Editor fix * chore: Reports page * chore: More changes * chore: Minor changes * chore: More fixes * chore: More changes * chore: More changes * chore: More changes * chore: Minor fix * chore: More changes * chore: More changes * chore: More changes * chore: More changes * chore: Clean up * chore: Minor fix * chore: Clean ups * chore: Rename basic file * chore: Remove unused files * chore: Fix expanded input * Fix campaign rendering * chore: Clean up * chore: More changes * chore: Remove unused files * fix: Overflow issue * chore: Minor fix * chore: Clean up * chore: Minor fix * chore: Remove unused files * chore: Minor fix * chore: Minor fix * fix: autoprefixer start/end value has mixed support * chore: Minor fix * chore: Remove unused files * chore: Minor fix * chore: Minor fix * chore: Minor fix * Add responsive design to label settings * fix inbox view * chore: Minor fix * w-60% to w-2/3 * chore: Fix team * chore: Fix button * w-[34%] to w-1/3 * chore: Fix border * Add support mobile views in team page * chore: fix snackbar * chore: clean up * chore: Clean up * fix: loading state alignment * fix: alert styles * chore: Minor fix * fix: spacing for agent bot row * fix: layout * fix: layout for SLA * fix: checkbox * fix: SLA checkbox spacing * Update inbox settings pages * fix macros listing page layout * fix canned responses * chore: Fix bot page * chore: fix automation page * chore: fix agents page * chore: fix canned response editor * chore: Fix settings table * chore: fix settings layout * chore: Minor fix * fix: canned response table layou * fix: layout for table header for webhooks * fix: webhook row layout * fix: dashboard app modal layout * fix: add title to canned response truncated shortcode * fix: dashboard apps row layuot * fix: layouts hooks * fix: body color * fix: delete action color in portal locales * fix: text color for campagin title * fix: success button color --------- Co-authored-by: Pranav <pranav@chatwoot.com> Co-authored-by: Vishnu Narayanan <iamwishnu@gmail.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
158 lines
4.3 KiB
Vue
158 lines
4.3 KiB
Vue
<template>
|
|
<div class="onboarding-wrap">
|
|
<div class="onboarding">
|
|
<div class="scroll-wrap">
|
|
<div class="features-item">
|
|
<h1 class="text-2xl text-slate-900 dark:text-slate-50">
|
|
<span>{{
|
|
$t('ONBOARDING.TITLE', {
|
|
installationName: globalConfig.installationName,
|
|
})
|
|
}}</span>
|
|
</h1>
|
|
<p class="intro-body">
|
|
{{
|
|
$t('ONBOARDING.DESCRIPTION', {
|
|
installationName: globalConfig.installationName,
|
|
})
|
|
}}
|
|
</p>
|
|
<p v-if="globalConfig.installationName === 'Chatwoot'">
|
|
<a
|
|
href="https://www.chatwoot.com/changelog"
|
|
target="_blank"
|
|
rel="noopener nofollow noreferrer"
|
|
class="onboarding--link"
|
|
>
|
|
{{ $t('ONBOARDING.READ_LATEST_UPDATES') }}
|
|
</a>
|
|
<span>🎉</span>
|
|
</p>
|
|
</div>
|
|
<div class="features-item">
|
|
<h2 class="text-lg text-black-900 dark:text-slate-200">
|
|
<span class="emoji">💬</span>
|
|
<span class="conversation--title">{{
|
|
$t('ONBOARDING.ALL_CONVERSATION.TITLE')
|
|
}}</span>
|
|
</h2>
|
|
<p class="intro-body">
|
|
{{ $t('ONBOARDING.ALL_CONVERSATION.DESCRIPTION') }}
|
|
</p>
|
|
</div>
|
|
<div class="features-item">
|
|
<h2 class="text-lg text-black-900 dark:text-slate-200">
|
|
<span class="emoji">👥</span>
|
|
{{ $t('ONBOARDING.TEAM_MEMBERS.TITLE') }}
|
|
</h2>
|
|
<p class="intro-body">
|
|
{{ $t('ONBOARDING.TEAM_MEMBERS.DESCRIPTION') }}
|
|
</p>
|
|
<router-link :to="newAgentURL" class="onboarding--link">
|
|
{{ $t('ONBOARDING.TEAM_MEMBERS.NEW_LINK') }}
|
|
</router-link>
|
|
</div>
|
|
<div class="features-item">
|
|
<h2 class="text-lg text-black-900 dark:text-slate-200">
|
|
<span class="emoji">📥</span>{{ $t('ONBOARDING.INBOXES.TITLE') }}
|
|
</h2>
|
|
<p class="intro-body">
|
|
{{ $t('ONBOARDING.INBOXES.DESCRIPTION') }}
|
|
</p>
|
|
<router-link :to="newInboxURL" class="onboarding--link">
|
|
{{ $t('ONBOARDING.INBOXES.NEW_LINK') }}
|
|
</router-link>
|
|
</div>
|
|
<div class="features-item">
|
|
<h2 class="text-lg text-black-900 dark:text-slate-200">
|
|
<span class="emoji">🔖</span>{{ $t('ONBOARDING.LABELS.TITLE') }}
|
|
</h2>
|
|
<p class="intro-body">
|
|
{{ $t('ONBOARDING.LABELS.DESCRIPTION') }}
|
|
</p>
|
|
<router-link :to="newLabelsURL" class="onboarding--link">
|
|
{{ $t('ONBOARDING.LABELS.NEW_LINK') }}
|
|
</router-link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import accountMixin from '../../../mixins/account';
|
|
|
|
export default {
|
|
mixins: [accountMixin],
|
|
computed: {
|
|
...mapGetters({ globalConfig: 'globalConfig/get' }),
|
|
newInboxURL() {
|
|
return this.addAccountScoping('settings/inboxes/new');
|
|
},
|
|
newAgentURL() {
|
|
return this.addAccountScoping('settings/agents/list');
|
|
},
|
|
newLabelsURL() {
|
|
return this.addAccountScoping('settings/labels/list');
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.onboarding-wrap {
|
|
display: flex;
|
|
font-size: var(--font-size-small);
|
|
justify-content: center;
|
|
overflow: auto;
|
|
text-align: left;
|
|
}
|
|
.onboarding {
|
|
height: 100vh;
|
|
overflow: auto;
|
|
}
|
|
|
|
.scroll-wrap {
|
|
padding: var(--space-larger) 8.5rem;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.features-item {
|
|
margin-bottom: var(--space-large);
|
|
}
|
|
|
|
.conversation--title {
|
|
margin-left: var(--space-minus-smaller);
|
|
}
|
|
|
|
.page-title {
|
|
font-size: var(--font-size-big);
|
|
font-weight: var(--font-weight-bold);
|
|
margin-bottom: var(--space-one);
|
|
}
|
|
|
|
.block-title {
|
|
font-weight: var(--font-weight-bold);
|
|
margin-bottom: var(--space-smaller);
|
|
margin-left: var(--space-minus-large);
|
|
}
|
|
|
|
.intro-body {
|
|
margin-bottom: var(--space-small);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.onboarding--link {
|
|
color: var(--w-500);
|
|
font-weight: var(--font-weight-medium);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.emoji {
|
|
width: var(--space-large);
|
|
display: inline-block;
|
|
}
|
|
</style>
|