- Adding custom views
- Setting active view
Contact Support
Custom views in Angular AI AssistView component
30 Nov 202420 minutes to read
Adding custom views
By using the e-views
tag directive you can define the collection of different assist view models in the AI AssistView. You can customize the default and the custom views added.
Setting view type
You can set the type of view by using the type property within the e-view
tag directive. It accepts two values such as Assist
, and Custom
.
<template>
<div id='container' style="height: 350px; width: 650px;">
<br>
<ejs-aiassistview id='aiAssistView' :prompt-request="onPromptRequest" ref="aiassist">
<e-views>
<e-view type="Assist"></e-view>
<e-view type="Custom"></e-view>
</e-views>
</ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent, ViewDirective, ViewsDirective } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent,
'e-views': ViewsDirective,
'e-view': ViewDirective
},
data: function () {
return {
}
},
methods: {
onPromptRequest: (args) => {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AI AssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 1000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
Setting name
You can use the name property to specifies the header name of the Assist
or Custom
views in the AI AssistView.
<template>
<div id='container' style="height: 350px; width: 650px;">
<br>
<ejs-aiassistview id='aiAssistView' :prompt-request="onPromptRequest" ref="aiassist">
<e-views>
<e-view name="Prompt"></e-view>
<e-view name="Response"></e-view>
</e-views>
</ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent, ViewDirective, ViewsDirective } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent,
'e-views': ViewsDirective,
'e-view': ViewDirective
},
data: function () {
return {
}
},
methods: {
onPromptRequest: (args) => {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AI AssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 1000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
Setting iconCss
You can customize the view icons by using the iconCss property. By default the e-assistview-icon
class is added as built-in header icon for the AI AssistView.
<template>
<div id='container' style="height: 350px; width: 650px;">
<br>
<ejs-aiassistview id='aiAssistView' :prompt-request="onPromptRequest" ref="aiassist">
<e-views>
<e-view icon-css="e-icons e-assistview-icon"></e-view>
<e-view icon-css="e-icons e-comment-show" type="Custom"></e-view>
</e-views>
</ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent, ViewDirective, ViewsDirective } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent,
'e-views': ViewsDirective,
'e-view': ViewDirective
},
data: function () {
return {
}
},
methods: {
onPromptRequest: (args) => {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AI AssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 1000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
The following example illustrates how types, name, and iconCss are used in a AI AssistView component.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' :prompt-request="onPromptRequest" ref="aiassist">
<e-views>
<e-view type="Assist" name="Prompt"></e-view>
<e-view type="Custom" name="Response" icon-css="e-icons e-comment-show" view-template="viewTemplate2">
<template v-slot:viewTemplate2="">
<div class="view-container"><h3>Response view content</h3></div>
</template>
</e-view>
</e-views>
</ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview, ViewDirective as EView, ViewsDirective as EViews } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest (args) => {
setTimeout(() => {
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(defaultResponse);
}, 1000);
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
.view-container {
height: inherit;
display: flex;
align-items: center;
justify-content: center;
}
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' :prompt-request="onPromptRequest" ref="aiassist">
<e-views>
<e-view type="Assist" name="Prompt"></e-view>
<e-view type="Custom" name="Response" icon-css="e-icons e-comment-show" view-template="viewTemplate2">
<template v-slot:viewTemplate2="">
<div class="view-container"><h3>Response view content</h3></div>
</template>
</e-view>
</e-views>
</ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent, ViewDirective, ViewsDirective } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent,
'e-views': ViewsDirective,
'e-view': ViewDirective
},
data: function () {
return {
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AI AssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 1000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
.view-container {
height: inherit;
display: flex;
align-items: center;
justify-content: center;
}
</style>
Setting view template
You can use the viewTemplate property to add the view content of the multiple views added in the AI AssistView.
<template>
<div id='container' style="width: max(50%, 500px); margin: 30px auto;">
<br>
<ejs-aiassistview id='aiAssistView'>
<e-views>
<e-view type="Assist" name="Prompt" view-template="viewTemplate">
<template v-slot:viewTemplate="">
<div class="view-container"><h3>Prompt view content</h3></div>
</template>
</e-view>
<e-view type="Custom" name="Response" view-template="viewTemplate2">
<template v-slot:viewTemplate2="">
<div class="view-container"><h3>Response view content</h3></div>
</template>
</e-view>
</e-views>
</ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview, ViewDirective as EView, ViewsDirective as EViews } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
.view-container {
margin: 20px auto;
width: 80%;
}
</style>
<template>
<div id='container' style="width: max(50%, 500px); margin: 30px auto;">
<br>
<ejs-aiassistview id='aiAssistView'>
<e-views>
<e-view type="Assist" name="Prompt" view-template="viewTemplate">
<template v-slot:viewTemplate="">
<div class="view-container"><h3>Prompt view content</h3></div>
</template>
</e-view>
<e-view type="Custom" name="Response" view-template="viewTemplate2">
<template v-slot:viewTemplate2="">
<div class="view-container"><h3>Response view content</h3></div>
</template>
</e-view>
</e-views>
</ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent, ViewDirective, ViewsDirective } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent,
'e-views': ViewsDirective,
'e-view': ViewDirective
},
data: function () {
return {
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
.view-container {
margin: 20px auto;
width: 80%;
}
</style>
Setting active view
You can use the activeView property to set the active view in the AI AssistView. By default, the value is 0
.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' active-view="1" :prompt-request="onPromptRequest" ref="aiassist">
<e-views>
<e-view type="Assist" name="Prompt"></e-view>
<e-view type="Custom" name="Response" icon-css="e-icons e-comment-show" view-template="viewTemplate2">
<template v-slot:viewTemplate2="">
<div class="view-container"><h3>Response view content</h3></div>
</template>
</e-view>
</e-views>
</ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview, ViewDirective as EView, ViewsDirective as EViews } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(defaultResponse);
}, 1000);
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
.view-container {
height: inherit;
display: flex;
align-items: center;
justify-content: center;
}
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' active-view="1" :prompt-request="onPromptRequest" ref="aiassist">
<e-views>
<e-view type="Assist" name="Prompt"></e-view>
<e-view type="Custom" name="Response" icon-css="e-icons e-comment-show" view-template="viewTemplate2">
<template v-slot:viewTemplate2="">
<div class="view-container"><h3>Response view content</h3></div>
</template>
</e-view>
</e-views>
</ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent, ViewDirective, ViewsDirective } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent,
'e-views': ViewsDirective,
'e-view': ViewDirective
},
data: function () {
return {
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AI AssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 1000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
.view-container {
height: inherit;
display: flex;
align-items: center;
justify-content: center;
}
</style>