551 lines
16 KiB
Vue
551 lines
16 KiB
Vue
|
|
<template>
|
|||
|
|
<div ref="chatContainerRef" class="chat-container" :style="chatContainerStyle">
|
|||
|
|
<template v-if="dataSource">
|
|||
|
|
<div v-if="isMultiSession" class="leftArea" :class="[expand ? 'expand' : 'shrink']">
|
|||
|
|
<div class="content">
|
|||
|
|
<slide :source="source" v-if="uuid" :dataSource="dataSource" @save="handleSave" :prologue="prologue" :appData="appData" @click="handleChatClick"></slide>
|
|||
|
|
</div>
|
|||
|
|
<div class="toggle-btn" @click="handleToggle">
|
|||
|
|
<span class="icon">
|
|||
|
|
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|||
|
|
<path
|
|||
|
|
d="M5.64645 3.14645C5.45118 3.34171 5.45118 3.65829 5.64645 3.85355L9.79289 8L5.64645 12.1464C5.45118 12.3417 5.45118 12.6583 5.64645 12.8536C5.84171 13.0488 6.15829 13.0488 6.35355 12.8536L10.8536 8.35355C11.0488 8.15829 11.0488 7.84171 10.8536 7.64645L6.35355 3.14645C6.15829 2.95118 5.84171 2.95118 5.64645 3.14645Z"
|
|||
|
|
fill="currentColor"
|
|||
|
|
></path>
|
|||
|
|
</svg>
|
|||
|
|
</span>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="rightArea" :class="[expand ? 'expand' : 'shrink']">
|
|||
|
|
<chat
|
|||
|
|
url="/airag/chat/send"
|
|||
|
|
v-if="uuid && chatVisible"
|
|||
|
|
:uuid="uuid"
|
|||
|
|
:historyData="chatData"
|
|||
|
|
type="view"
|
|||
|
|
@save="handleSave"
|
|||
|
|
:formState="appData"
|
|||
|
|
:prologue="prologue"
|
|||
|
|
:presetQuestion="presetQuestion"
|
|||
|
|
@reload-message-title="reloadMessageTitle"
|
|||
|
|
:chatTitle="chatTitle"
|
|||
|
|
:quickCommandData="quickCommandData"
|
|||
|
|
:showAdvertising = "showAdvertising"
|
|||
|
|
:hasExtraFlowInputs="hasExtraFlowInputs"
|
|||
|
|
:conversationSettings="getCurrentSettings"
|
|||
|
|
@edit-settings="handleEditSettings"
|
|||
|
|
ref="chatRef"
|
|||
|
|
></chat>
|
|||
|
|
</div>
|
|||
|
|
<!-- [issues/8545]新建AI应用的时候只能选择没有自定义参数的AI流程 -->
|
|||
|
|
<ConversationSettingsModal
|
|||
|
|
ref="settingsModalRef"
|
|||
|
|
:flowInputs="flowInputs"
|
|||
|
|
:conversationId="uuid"
|
|||
|
|
:existingSettings="getCurrentSettings"
|
|||
|
|
@ok="handleSettingsOk"
|
|||
|
|
/>
|
|||
|
|
</template>
|
|||
|
|
<Loading :loading="loading" tip="加载中,请稍后"></Loading>
|
|||
|
|
</div>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script setup lang="ts">
|
|||
|
|
import slide from './slide.vue';
|
|||
|
|
import chat from './chat.vue';
|
|||
|
|
import ConversationSettingsModal from './components/ConversationSettingsModal.vue';
|
|||
|
|
import { Spin, message } from 'ant-design-vue';
|
|||
|
|
import { ref, watch, nextTick, onUnmounted, onMounted, computed } from 'vue';
|
|||
|
|
import { useUserStore } from '/@/store/modules/user';
|
|||
|
|
import { JEECG_CHAT_KEY } from '/@/enums/cacheEnum';
|
|||
|
|
import { defHttp } from '/@/utils/http/axios';
|
|||
|
|
import { useRouter } from 'vue-router';
|
|||
|
|
import { useAppInject } from "@/hooks/web/useAppInject";
|
|||
|
|
import Loading from '@/components/Loading/src/Loading.vue';
|
|||
|
|
|
|||
|
|
const router = useRouter();
|
|||
|
|
const userId = useUserStore().getUserInfo?.id;
|
|||
|
|
const localKey = JEECG_CHAT_KEY + userId;
|
|||
|
|
let timer: any = null;
|
|||
|
|
let unwatch01: any = null;
|
|||
|
|
const dataSource = ref<any>({});
|
|||
|
|
const uuid = ref<string>('');
|
|||
|
|
const chatData = ref<any>([]);
|
|||
|
|
const expand = ref<any>(true);
|
|||
|
|
const chatVisible = ref(true);
|
|||
|
|
const chatContainerRef = ref<any>(null);
|
|||
|
|
const chatContainerStyle = ref({});
|
|||
|
|
//左侧聊天信息
|
|||
|
|
const chatTitle = ref<string>('');
|
|||
|
|
//左侧聊天点击的坐标
|
|||
|
|
const chatActiveKey = ref<number>(0);
|
|||
|
|
//预置开场白
|
|||
|
|
const presetQuestion = ref<string>('');
|
|||
|
|
//加载
|
|||
|
|
const loading = ref<any>(true);
|
|||
|
|
|
|||
|
|
const handleToggle = () => {
|
|||
|
|
expand.value = !expand.value;
|
|||
|
|
};
|
|||
|
|
//应用id
|
|||
|
|
const appId = ref<string>('');
|
|||
|
|
//应用数据
|
|||
|
|
const appData = ref<any>({});
|
|||
|
|
//开场白
|
|||
|
|
const prologue = ref<string>('');
|
|||
|
|
//快捷指令
|
|||
|
|
const quickCommandData = ref<any>([]);
|
|||
|
|
//是否显示广告位
|
|||
|
|
const showAdvertising = ref<boolean>(false);
|
|||
|
|
//对话设置弹窗ref
|
|||
|
|
const settingsModalRef = ref();
|
|||
|
|
//工作流入参列表
|
|||
|
|
const flowInputs = ref<any[]>([]);
|
|||
|
|
//当前会话的设置
|
|||
|
|
const conversationSettings = ref<Record<string, Record<string, any>>>({});
|
|||
|
|
|
|||
|
|
const priming = () => {
|
|||
|
|
dataSource.value = {
|
|||
|
|
active: '1002',
|
|||
|
|
usingContext: true,
|
|||
|
|
history: [{ id: '1002', title: '新建聊天', isEdit: false, disabled: true }],
|
|||
|
|
};
|
|||
|
|
chatTitle.value = '新建聊天';
|
|||
|
|
chatActiveKey.value = 0;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
const handleSave = () => {
|
|||
|
|
// 删除标签或清空内容之后的保存
|
|||
|
|
//save(dataSource.value);
|
|||
|
|
setTimeout(() => {
|
|||
|
|
// 删除标签或清空内容也会触发watch保存,此时不需watch保存需清除
|
|||
|
|
//clearTimeout(timer);
|
|||
|
|
}, 50);
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 检查是否有额外的工作流入参
|
|||
|
|
* for [issues/8545]新建AI应用的时候只能选择没有自定义参数的AI流程
|
|||
|
|
*/
|
|||
|
|
const hasExtraFlowInputs = computed(() => {
|
|||
|
|
if (!appData.value || !appData.value.metadata) {
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
try {
|
|||
|
|
const metadata = typeof appData.value.metadata === 'string'
|
|||
|
|
? JSON.parse(appData.value.metadata)
|
|||
|
|
: appData.value.metadata;
|
|||
|
|
const flowInputsList = metadata.flowInputs || [];
|
|||
|
|
|
|||
|
|
// 过滤掉固定参数
|
|||
|
|
const fixedParams = ['history', 'content', 'images'];
|
|||
|
|
const extraInputs = flowInputsList.filter((input: any) => !fixedParams.includes(input.field));
|
|||
|
|
|
|||
|
|
return extraInputs.length > 0;
|
|||
|
|
} catch (e) {
|
|||
|
|
console.error('解析metadata失败', e);
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
// 检查是否有必填的额外参数
|
|||
|
|
const hasRequiredFlowInputs = computed(() => {
|
|||
|
|
if (!appData.value || !appData.value.metadata) {
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
try {
|
|||
|
|
const metadata = typeof appData.value.metadata === 'string'
|
|||
|
|
? JSON.parse(appData.value.metadata)
|
|||
|
|
: appData.value.metadata;
|
|||
|
|
const flowInputsList = metadata.flowInputs || [];
|
|||
|
|
|
|||
|
|
// 过滤掉固定参数,且必须是必填的
|
|||
|
|
const fixedParams = ['history', 'content', 'images'];
|
|||
|
|
const requiredInputs = flowInputsList.filter((input: any) =>
|
|||
|
|
!fixedParams.includes(input.field) && input.required
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
return requiredInputs.length > 0;
|
|||
|
|
} catch (e) {
|
|||
|
|
console.error('解析metadata失败', e);
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
// 监听appData变化,更新flowInputs
|
|||
|
|
watch(
|
|||
|
|
() => appData.value,
|
|||
|
|
(val) => {
|
|||
|
|
if (!val || !val.metadata) {
|
|||
|
|
flowInputs.value = [];
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
try {
|
|||
|
|
const metadata = typeof val.metadata === 'string'
|
|||
|
|
? JSON.parse(val.metadata)
|
|||
|
|
: val.metadata;
|
|||
|
|
flowInputs.value = metadata.flowInputs || [];
|
|||
|
|
} catch (e) {
|
|||
|
|
console.error('解析metadata失败', e);
|
|||
|
|
flowInputs.value = [];
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
{ immediate: true, deep: true }
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
// 获取当前会话的设置
|
|||
|
|
const getCurrentSettings = computed(() => {
|
|||
|
|
return conversationSettings.value[uuid.value] || {};
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
// 编辑对话设置
|
|||
|
|
function handleEditSettings() {
|
|||
|
|
if (settingsModalRef.value) {
|
|||
|
|
settingsModalRef.value.open();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 保存对话设置
|
|||
|
|
function handleSettingsOk(data: Record<string, any>) {
|
|||
|
|
// 保存到本地状态(会在发送消息时传给后端)
|
|||
|
|
conversationSettings.value[uuid.value] = data;
|
|||
|
|
message.success('对话设置已保存');
|
|||
|
|
|
|||
|
|
nextTick(() => {
|
|||
|
|
chatVisible.value = true;
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 监听dataSource变化执行操作
|
|||
|
|
const execute = () => {
|
|||
|
|
unwatch01 = watch(
|
|||
|
|
() => dataSource.value.active,
|
|||
|
|
(value) => {
|
|||
|
|
if (value) {
|
|||
|
|
if (value == '1002') {
|
|||
|
|
uuid.value = '1002';
|
|||
|
|
chatData.value = [];
|
|||
|
|
chatTitle.value = "新建聊天";
|
|||
|
|
chatVisible.value = false;
|
|||
|
|
nextTick(() => {
|
|||
|
|
chatVisible.value = true;
|
|||
|
|
// 新会话且有必填参数,弹出设置弹窗
|
|||
|
|
if (hasRequiredFlowInputs.value && !conversationSettings.value['1002']) {
|
|||
|
|
if (settingsModalRef.value) {
|
|||
|
|
settingsModalRef.value.open();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
});
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
//update-begin---author:wangshuai---date:2025-03-14---for:【QQYUN-11421】聊天,删除会话后,聊天切换到新的会话,但是聊天标题没有变---
|
|||
|
|
let values = dataSource.value.history.filter((item) => item.id === value);
|
|||
|
|
if(values && values.length>0){
|
|||
|
|
chatTitle.value = values[0]?.title
|
|||
|
|
}
|
|||
|
|
//update-end---author:wangshuai---date:2025-03-14---for:【QQYUN-11421】聊天,删除会话后,聊天切换到新的会话,但是聊天标题没有变---
|
|||
|
|
//根据选中的id查询聊天内容
|
|||
|
|
let params = { conversationId: value };
|
|||
|
|
uuid.value = value;
|
|||
|
|
defHttp.get({ url: '/airag/chat/messages', params }, { isTransformResponse: false }).then((res) => {
|
|||
|
|
if (res.success) {
|
|||
|
|
// 处理新的返回格式(包含messages和flowInputs)
|
|||
|
|
if (res.result && res.result.messages) {
|
|||
|
|
chatData.value = res.result.messages;
|
|||
|
|
// 加载已保存的设置
|
|||
|
|
if (res.result.flowInputs) {
|
|||
|
|
conversationSettings.value[value] = res.result.flowInputs;
|
|||
|
|
}
|
|||
|
|
} else if (Array.isArray(res.result)) {
|
|||
|
|
// 兼容旧格式
|
|||
|
|
chatData.value = res.result;
|
|||
|
|
} else {
|
|||
|
|
chatData.value = [];
|
|||
|
|
}
|
|||
|
|
} else {
|
|||
|
|
chatData.value = [];
|
|||
|
|
}
|
|||
|
|
chatVisible.value = false;
|
|||
|
|
// 新会话且有必填参数,弹出设置弹窗
|
|||
|
|
if (hasRequiredFlowInputs.value && !conversationSettings.value[value]) {
|
|||
|
|
if (settingsModalRef.value) {
|
|||
|
|
settingsModalRef.value.open();
|
|||
|
|
}
|
|||
|
|
}else{
|
|||
|
|
nextTick(() => {
|
|||
|
|
chatVisible.value = true;
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
});
|
|||
|
|
}else{
|
|||
|
|
chatData.value = [];
|
|||
|
|
chatTitle.value = "";
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
{ immediate: true }
|
|||
|
|
);
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
//是否为多会话模式
|
|||
|
|
const isMultiSession = ref<boolean>(true);
|
|||
|
|
//是否为手机
|
|||
|
|
const { getIsMobile } = useAppInject();
|
|||
|
|
//来源
|
|||
|
|
const source = ref<string>('');
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 初始化聊天信息
|
|||
|
|
* @param appId
|
|||
|
|
*/
|
|||
|
|
function initChartData(appId = '') {
|
|||
|
|
defHttp
|
|||
|
|
.get(
|
|||
|
|
{
|
|||
|
|
url: '/airag/chat/conversations',
|
|||
|
|
params: { appId: appId },
|
|||
|
|
},
|
|||
|
|
{ isTransformResponse: false }
|
|||
|
|
)
|
|||
|
|
.then((res) => {
|
|||
|
|
if (res.success && res.result && res.result.length > 0) {
|
|||
|
|
dataSource.value.history = res.result;
|
|||
|
|
dataSource.value.active = res.result[0].id;
|
|||
|
|
chatTitle.value = res.result[0].title;
|
|||
|
|
chatActiveKey.value = 0;
|
|||
|
|
} else {
|
|||
|
|
priming();
|
|||
|
|
}
|
|||
|
|
!unwatch01 && execute();
|
|||
|
|
})
|
|||
|
|
.catch(() => {
|
|||
|
|
priming();
|
|||
|
|
}).finally(()=>{
|
|||
|
|
loading.value = false
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
onMounted(() => {
|
|||
|
|
loading.value = true;
|
|||
|
|
let params: any = router.currentRoute.value.params;
|
|||
|
|
if (params.appId) {
|
|||
|
|
appId.value = params.appId;
|
|||
|
|
getApplicationData(params.appId);
|
|||
|
|
initChartData(params.appId);
|
|||
|
|
} else {
|
|||
|
|
initChartData();
|
|||
|
|
quickCommandData.value = [
|
|||
|
|
{ name: '请介绍一下JeecgBoot', descr: "请介绍一下JeecgBoot" },
|
|||
|
|
{ name: 'JEECG有哪些优势?', descr: "JEECG有哪些优势?" },
|
|||
|
|
{ name: 'JEECG可以做哪些事情?', descr: "JEECG可以做哪些事情?" },];
|
|||
|
|
}
|
|||
|
|
let query: any = router.currentRoute.value.query;
|
|||
|
|
source.value = query.source;
|
|||
|
|
if(query.source){
|
|||
|
|
showAdvertising.value = query.source === 'chatJs';
|
|||
|
|
}else{
|
|||
|
|
showAdvertising.value = false;
|
|||
|
|
}
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
onUnmounted(() => {
|
|||
|
|
chatData.value = [];
|
|||
|
|
chatTitle.value = "";
|
|||
|
|
prologue.value = ""
|
|||
|
|
presetQuestion.value = "";
|
|||
|
|
quickCommandData.value = [];
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 获取应用id
|
|||
|
|
*
|
|||
|
|
* @param appId
|
|||
|
|
*/
|
|||
|
|
async function getApplicationData(appId) {
|
|||
|
|
await defHttp
|
|||
|
|
.get(
|
|||
|
|
{
|
|||
|
|
url: '/airag/chat/init',
|
|||
|
|
params: { id: appId },
|
|||
|
|
},
|
|||
|
|
{ isTransformResponse: false }
|
|||
|
|
)
|
|||
|
|
.then((res) => {
|
|||
|
|
if (res.success) {
|
|||
|
|
appData.value = res.result;
|
|||
|
|
if (res.result && res.result.prologue) {
|
|||
|
|
prologue.value = res.result.prologue;
|
|||
|
|
}
|
|||
|
|
if (res.result && res.result.quickCommand) {
|
|||
|
|
quickCommandData.value = JSON.parse(res.result.quickCommand);
|
|||
|
|
}
|
|||
|
|
if (res.result && res.result.presetQuestion) {
|
|||
|
|
presetQuestion.value = res.result.presetQuestion;
|
|||
|
|
}
|
|||
|
|
if (res.result && res.result.metadata) {
|
|||
|
|
let metadata = JSON.parse(res.result.metadata);
|
|||
|
|
//判斷是否为手机模式
|
|||
|
|
if(!getIsMobile.value){
|
|||
|
|
//是否为多会话模式
|
|||
|
|
if((metadata.multiSession && metadata.multiSession === '1') || !metadata.multiSession) {
|
|||
|
|
isMultiSession.value = true;
|
|||
|
|
} else {
|
|||
|
|
isMultiSession.value = false;
|
|||
|
|
expand.value = false;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
if(getIsMobile.value){
|
|||
|
|
isMultiSession.value = false;
|
|||
|
|
expand.value = false;
|
|||
|
|
}
|
|||
|
|
} else {
|
|||
|
|
appData.value = {};
|
|||
|
|
}
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 左侧消息列表点击事件
|
|||
|
|
* @param title
|
|||
|
|
* @param index
|
|||
|
|
*/
|
|||
|
|
function handleChatClick(title, index) {
|
|||
|
|
chatTitle.value = title;
|
|||
|
|
chatActiveKey.value = index;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 重新加载标题消息
|
|||
|
|
* @param text
|
|||
|
|
*/
|
|||
|
|
function reloadMessageTitle(text) {
|
|||
|
|
let title = dataSource.value.history[chatActiveKey.value].title;
|
|||
|
|
if(title === '新建聊天'){
|
|||
|
|
dataSource.value.history[chatActiveKey.value].title = text;
|
|||
|
|
dataSource.value.history[chatActiveKey.value]['disabled'] = false;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 初始化聊天:用于icon点击
|
|||
|
|
*/
|
|||
|
|
function initChat(value) {
|
|||
|
|
appId.value = value;
|
|||
|
|
getApplicationData(value);
|
|||
|
|
initChartData(value);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
defineExpose({
|
|||
|
|
initChat
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
onUnmounted(() => {
|
|||
|
|
unwatch01 && unwatch01();
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
watch(
|
|||
|
|
() => chatContainerRef.value,
|
|||
|
|
() => {
|
|||
|
|
if(chatContainerRef.value.offsetHeight){
|
|||
|
|
chatContainerStyle.value = { height: `${chatContainerRef.value.offsetHeight} px` };
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
);
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style scoped lang="less">
|
|||
|
|
@width: 260px;
|
|||
|
|
.chat-container {
|
|||
|
|
height: 100%;
|
|||
|
|
width: 100%;
|
|||
|
|
position: absolute;
|
|||
|
|
background: white;
|
|||
|
|
display: flex;
|
|||
|
|
overflow: hidden;
|
|||
|
|
z-index: 800;
|
|||
|
|
border: 1px solid #eeeeee;
|
|||
|
|
:deep(.ant-spin) {
|
|||
|
|
position: absolute;
|
|||
|
|
top: 50%;
|
|||
|
|
left: 50%;
|
|||
|
|
transform: translate(-50%, -50%);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.leftArea {
|
|||
|
|
width: @width;
|
|||
|
|
transition: 0.3s left;
|
|||
|
|
position: absolute;
|
|||
|
|
left: 0;
|
|||
|
|
height: 100%;
|
|||
|
|
|
|||
|
|
.content {
|
|||
|
|
width: 100%;
|
|||
|
|
height: 100%;
|
|||
|
|
overflow: hidden;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
&.shrink {
|
|||
|
|
left: -@width;
|
|||
|
|
|
|||
|
|
.toggle-btn {
|
|||
|
|
.icon {
|
|||
|
|
transform: rotate(0deg);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.toggle-btn {
|
|||
|
|
transition:
|
|||
|
|
color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
|||
|
|
right 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
|||
|
|
left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
|||
|
|
border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
|||
|
|
background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|||
|
|
cursor: pointer;
|
|||
|
|
width: 24px;
|
|||
|
|
height: 24px;
|
|||
|
|
position: absolute;
|
|||
|
|
top: 50%;
|
|||
|
|
right: 0;
|
|||
|
|
border-radius: 50%;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: center;
|
|||
|
|
font-size: 18px;
|
|||
|
|
color: rgb(51, 54, 57);
|
|||
|
|
border: 1px solid rgb(239, 239, 245);
|
|||
|
|
background-color: #fff;
|
|||
|
|
box-shadow: 0 2px 4px 0px #e7e9ef;
|
|||
|
|
transform: translateX(50%) translateY(-50%);
|
|||
|
|
z-index: 1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.icon {
|
|||
|
|
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|||
|
|
transform: rotate(180deg);
|
|||
|
|
font-size: 18px;
|
|||
|
|
height: 18px;
|
|||
|
|
|
|||
|
|
svg {
|
|||
|
|
height: 1em;
|
|||
|
|
width: 1em;
|
|||
|
|
vertical-align: top;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.rightArea {
|
|||
|
|
margin-left: @width;
|
|||
|
|
transition: 0.3s margin-left;
|
|||
|
|
|
|||
|
|
&.shrink {
|
|||
|
|
margin-left: 0;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
flex: 1;
|
|||
|
|
min-width: 0;
|
|||
|
|
}
|
|||
|
|
</style>
|