Tauri2.0+Vite5聊天室|vue3+tauri2+element-plus仿微信|tauri聊天應用

来源:https://www.cnblogs.com/xiaoyan2017/p/18437155
-Advertisement-
Play Games

原創tauri2.0+vue3+pinai2仿QQ/微信客戶端聊天Exe程式TauriWinChat。 tauri2-vue3-winchat自研vite5+tauri2.0+vue3 setup+element-plus跨平臺仿QQ|微信桌面端聊天軟體。全新封裝tauri2多開視窗管理、自定義圓角 ...


原創tauri2.0+vue3+pinai2仿QQ/微信客戶端聊天Exe程式TauriWinChat

tauri2-vue3-winchat自研vite5+tauri2.0+vue3 setup+element-plus跨平臺仿QQ|微信桌面端聊天軟體。全新封裝tauri2多開視窗管理、自定義圓角陰影窗體。實現聊天、通訊錄、收藏、我的、朋友圈/小視頻等模塊。

技術棧

  • 編碼器:VScode
  • 技術框架:tauri2.0+vite^5.4.7+vue^3.5.8+vue-router^4.4.5
  • 狀態管理:pinia^2.2.2
  • 本地存儲:pinia-plugin-persistedstate^4.0.2
  • UI組件庫:element-plus^2.8.3
  • 富文本編輯器:@vueup/vue-quill^1.2.0
  • 樣式預處理:sass^1.79.3
  • 小視頻滑動組件:swiper^11.1.14

項目框架結構

vue3-taurichat桌面聊天項目採用最新跨平臺框架 tauri2.0 整合 vite5 搭建項目模板。

Tauri2.0-Vue3chat聊天程式已經同步到我的原創作品集,有需要的可以去看看~

https://gf.bilibili.com/item/detail/1107133011

vite.js整合tauri2.0創建多視窗|自定義托盤閃爍右鍵菜單

之前有分享過一篇介紹tauri2結合vite.js搭建桌面端項目、創建多視窗、自定義托盤閃爍及右鍵菜單。感興趣的可以去瞅瞅。

https://www.cnblogs.com/xiaoyan2017/p/18416811

tauri2-vue3chat實現類似QQ登錄/主視窗切換,支持主題壁紙、置頂視窗、自定義最大化/最小化/關閉按鈕,聊天模塊支持圖片/視頻新視窗預覽、拖拽圖片到聊天區域。

主入口main.js

/**
 * 主入口文件main.js
 */

import { createApp } from 'vue'
import './style.scss'
import App from './App.vue'

// 引入組件庫
import VEPlus from 've-plus'
import 've-plus/dist/ve-plus.css'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'

// 引入路由/狀態管理
import Router from './router'
import Pinia from './pinia'

createApp(App)
.use(VEPlus)
.use(ElementPlus)
.use(Router)
.use(Pinia)
.mount('#app')

Tauri2.0-Vue3chat佈局模板

項目整體分為菜單欄+側邊欄+右側內容區+右上角導航條等模塊。

<template>
  <div class="vu__chatbox">
    <template v-if="!route?.meta?.isNewWin">
      <div class="vu__container flexbox flex-alignc flex-justifyc">
        <div class="vu__layout flexbox flex-col">
          <div class="vu__layout-body flex1 flexbox" @contextmenu.prevent>
            <!-- 菜單欄 -->
            <slot v-if="!route?.meta?.hideMenuBar" name="menubar">
              <MenuBar />
            </slot>

            <!-- 側邊欄 -->
            <div v-if="route?.meta?.showSideBar" class="vu__layout-sidebar flexbox">
              <aside class="vu__layout-sidebar__body flexbox flex-col">
                <slot name="sidebar">
                  <SideBar />
                </slot>
              </aside>
            </div>

            <!-- 主內容區 -->
            <div class="vu__layout-main flex1 flexbox flex-col">
              <ToolBar v-if="!route?.meta?.hideToolBar" />
              <router-view v-slot="{ Component, route }">
                <keep-alive>
                  <component :is="Component" :key="route.path" />
                </keep-alive>
              </router-view>
            </div>
          </div>
        </div>
      </div>
    </template>
    <template v-else>
      <WinLayout />
    </template>
  </div>
</template>

vite.js+tauri2.0實現無邊框圓角陰影拖拽窗體

項目採用  decorations: false  無邊框模式。結合  transparent: true  和  shadow: false  實現自定義圓角陰影視窗。

.vu__chatbox {height: calc(100vh); padding: 5px; overflow: hidden;}
.vu__layout {
  background-color: #f5f5f5;
  overflow: hidden;
  height: 100%; width: 100%;
  position: relative; z-index: 100;
  border-radius: 8px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15),0 1px 5px -1px rgba(0, 0, 0, 0.1),0 2px 5px rgba(0, 0, 0, 0.1);
}
  • tauri2.0自定義系統最小化/最大化/關閉

<script setup>
  /**
   * tauri2.0自定義系統最大化/最小化/關閉
   * by andy  Q:282310962
   */

  import { ref } from 'vue'
  import { getCurrentWindow } from '@tauri-apps/api/window'
  import { listen } from '@tauri-apps/api/event'
  import { exit } from '@tauri-apps/plugin-process'

  import { authState } from '@/pinia/modules/auth'
  import { isTrue } from '@/utils'
  import { winSet } from '@/windows/actions'

  const authstate = authState()

  const props = defineProps({
    color: String,
    // 視窗是否可最小化
    minimizable: {type: [Boolean, String], default: true},
    // 視窗是否可最大化
    maximizable: {type: [Boolean, String], default: true},
    // 視窗是否可關閉
    closable: {type: [Boolean, String], default: true},
    // 層級
    zIndex: {type: [Number, String], default: 2024},

    // 關閉前回調,會暫停實例關閉 function(done),done用於關閉
        beforeClose: Function
  })

  const hasMaximized = ref(false)
  const isResizable = ref(true)
  const isMaximizable = ref(true)

  // 用戶是否可以手動調整視窗大小
  getCurrentWindow().isResizable().then(res => {
    isResizable.value = res
  })
  // 視窗是否可以最大化
  getCurrentWindow().isMaximizable().then(res => {
    isMaximizable.value = res
  })
  // 初始監聽視窗是否最大化
  getCurrentWindow().isMaximized().then(res => {
    hasMaximized.value = res
  })
  // 實時監聽視窗是否最大化
  listen('tauri://resize', async() => {
    hasMaximized.value = await getCurrentWindow().isMaximized()
  })

  // 最小化
  const handleWinMin = async() => {
    // winSet('minimize')
    await getCurrentWindow().minimize()
  }
  // 最大化/還原
  const handleWinToggle = async() => {
    // winSet('max2min')
    await getCurrentWindow().toggleMaximize()
  }
  // 關閉
  const handleClose = async() => {
    const isMajor = getCurrentWindow().label.indexOf('main') > -1
    if(isMajor) {
      let el = layer({
        type: 'android',
        content: '是否最小化到托盤,不退出程式?',
        layerStyle: 'background: #f9f9f9; border-radius: 8px;',
        closable: false,
        resize: false,
        btns: [
          {
            text: '最小化托盤',
            style: 'color: #646cff',
            click: () => {
              layer.close(el)
              // winSet('hide')
              await getCurrentWindow().hide()
            }
          },
          {
            text: '退出程式',
            style: 'color: #fa5151',
            click: async() => {
              authstate.logout()
              await exit()
            }
          }
        ]
      })
    }else {
      // winSet('close')
      await getCurrentWindow().close()
    }
  }
</script>

<template>
  <div class="ev__winbtns vu__drag" :style="{'z-index': zIndex}">
    <div class="ev__winbtns-actions vu__undrag" :style="{'color': color}">
      <a v-if="isTrue(minimizable)" class="wbtn min" title="最小化" @click="handleWinMin"><i class="wicon elec-icon elec-icon-min"></i></a>
      <a v-if="isTrue(maximizable) && isResizable && isMaximizable" class="wbtn toggle" :title="hasMaximized ? '向下還原' : '最大化'" @click="handleWinToggle">
        <i class="wicon elec-icon iconfont" :class="hasMaximized ? 've-icon-shrink' : 've-icon-arrowsalt'"></i>
      </a>
      <a v-if="isTrue(closable)" class="wbtn close" title="關閉" @click="handleClose"><i class="wicon elec-icon elec-icon-quit"></i></a>
    </div>
  </div>
</template>

tauri設置無邊框視窗後,拖拽功能直接在需要拖拽的元素設置  data-tauri-drag-region  屬性,另外tauri還支持css設置拖拽功能。

// 拖拽
.vu__drag {-webkit-app-region: drag;}
// 取消拖拽
.vu__undrag {-webkit-app-region: no-drag;}

tauri2+vue3自定義托盤閃爍|托盤右鍵菜單

src-tauri/src目錄新建一個tray.rs托盤圖標文件。

/**
 * 自定義托盤圖標
 */

use tauri::{
  tray::{MouseButton, TrayIconBuilder, TrayIconEvent}, Emitter, Manager, Runtime
};

pub fn tray_create<R: Runtime>(app: &tauri::AppHandle<R>) -> tauri::Result<()> {
  let _ = TrayIconBuilder::with_id("tray")
    .tooltip("TAURI-WINCHAT")
    .icon(app.default_window_icon().unwrap().clone())
    .on_tray_icon_event(|tray, event| match event {
      TrayIconEvent::Click {
        id: _,
        position,
        rect: _,
        button,
        button_state: _,
      } => match button {
        MouseButton::Left {} => {
          let windows = tray.app_handle().webview_windows();
          for (key, value) in windows {
            println!("點擊左鍵: {}", key);
            if key == "main-login" || key == "main" {
              value.show().unwrap();
              value.unminimize().unwrap();
              value.set_focus().unwrap();
            }
          }
        }
        MouseButton::Right {} => {
          println!("點擊右鍵");
          tray.app_handle().emit("tray_contextmenu", position).unwrap();
        }
        _ => {}
      },
      TrayIconEvent::Enter {
        id: _,
        position,
        rect: _,
      } => {
        println!("滑鼠滑過托盤");
        tray.app_handle().emit("tray_mouseenter", position).unwrap();
      }
      TrayIconEvent::Leave {
        id: _,
        position,
        rect: _,
      } => {
        println!("滑鼠離開托盤");
        tray.app_handle().emit("tray_mouseleave", position).unwrap();
      }
      _ => {}
    })
    .build(app);
  Ok(())
}

托盤閃爍提醒和右鍵菜單文件

export default async function TrayContextMenu() {
  console.log('create tray contextmenu...')

  const authstate = authState()

  // 右鍵菜單寬度
  let menuW = 150
  // 右鍵菜單高度
  let menuH = authstate.authorization ? 300 : 48

  let webview = new WebviewWindow('win-traymenu', {
    url: '/tray/contextmenu',
    title: '托盤右鍵菜單',
    width: menuW,
    height: menuH,
    x: window.screen.width,
    y: window.screen.height,
    skipTaskbar: true,
    transparent: true,
    shadow: false,
    decorations: false,
    center: false,
    resizable: false,
    alwaysOnTop: true,
    focus: true,
    visible: false
  })

  await webview.listen('tauri://window-created', async() => {
    const win = await WebviewWindow.getByLabel('win-traymenu')
    win.hide()
  })
  await webview.listen('tauri://blur', async() => {
    const win = await WebviewWindow.getByLabel('win-traymenu')
    win.hide()
  })
  await webview.listen('tauri://error', async(error) => {
    console.log('traymenu error!', error)
  })

  // 監聽托盤右鍵菜單事件
  listen('tray_contextmenu', async(event) => {
    console.log('tray_contextmenu: ', event)

    let position = event.payload
    const win = await WebviewWindow.getByLabel('win-traymenu')
    if(!win) return

    win.setAlwaysOnTop(true)
    win.setFocus()
    win.setPosition(new LogicalPosition(position.x - 5, position.y - menuH + 5))
    win.show()
  })
}
<template>
  <div class="vu__traymenu" @click="handleTrayMenu">
    <template v-if="authstate.authorization">
      <a class="menu"><img src="/static/tray-online.png" />我線上上</a>
      <a class="menu"><img src="/static/tray-busy.png" />忙碌</a>
      <a class="menu"><img src="/static/tray-nodisturb.png" />請勿打擾</a>
      <a class="menu"><img src="/static/tray-hide.png" />隱身</a>
      <a class="menu"><img src="/static/tray-offline.png" />離線</a>
      <a class="menu" @click="winTrayFlash(false)">關閉頭像閃動</a>
      <a class="menu" @click="handleSetting">設置</a>
      <a class="menu" @click="handleAbout">關於</a>
      <a class="menu" @click="handleMainWin"><el-icon size="12"><Monitor /></el-icon>打開主面板</a>
    </template>
    <a class="menu" @click="handleLogout"><el-icon size="12" color="red"><SwitchButton /></el-icon>退出</a>
  </div>
</template>

綜上就是Tauri2.0+Vue3實戰開發桌面端聊天項目的一些知識分享,希望對大家有些幫助~

最後附上兩個最新electron+vue3實例項目

https://www.cnblogs.com/xiaoyan2017/p/18396212

https://www.cnblogs.com/xiaoyan2017/p/18366451

 

本文為博主原創文章,未經博主允許不得轉載,歡迎大家一起交流 QQ(282310962) wx(xy190310)
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • ArkTS 是鴻蒙生態的應用開發語言,它在 TypeScript 的基礎上進行了優化和定製,以適應鴻蒙系統的需求。 以下是在 ArkTS 中進行有效的記憶體管理和避免記憶體泄漏: 1. 使用 const 和 let 合理聲明變數: 使用 const 聲明那些不會重新賦值的變數,這有助於確保變數的不變性, ...
  • 背景: 寫多混編語言 把swift 習慣帶入到了OC 就比如這個布爾值的寫法 前言:雖然 true 和 YES 實際上等效為 1,但為了代碼的一致性和可讀性,最好在 Objective-C 中用 YES 和 NO 1. 類型不同 YES 和 NO 是 Objective-C 的 BOOL 類型,它本 ...
  • title: 理解 Vue 的 setup 應用程式鉤子 date: 2024/9/30 updated: 2024/9/30 author: cmdragon excerpt: 摘要:本文詳細介紹了Vue 3中setup函數的應用,包括其概念、特性、使用方法及重要性。setup函數作為組合API的 ...
  • 一:頁面佈局 盒模型 邊界(border)和其他內容的距離是(margin) 文本內容和邊界的距離是(padding) padding和margin屬性 單位em是當前文本的大小,2em是兩倍文本的距離 四個值按順時針方向代表top,right,bottom,left h1{padding:1em ...
  • title: 深入理解 Nuxt.js 中的 app:data:refresh 鉤子 date: 2024/9/29 updated: 2024/9/29 author: cmdragon excerpt: 摘要:本文詳細介紹了 Nuxt.js框架中的app:data:refresh鉤子,包括其定義 ...
  • 隨著出版的書籍越來越多,收到的各種郵件也越來越頻繁,遂於百忙之中,抽空整理一下書籍相關的資料和信息。 《ASP.NET MVC企業級實戰》 出版日期:2017年3月 目錄:https://www.cnblogs.com/jiekzou/p/5625762.html 隨書源碼:因某些原因,原百度雲盤下 ...
  • aspoem —— 現代化詩詞學習網站,一個更加註重UI和閱讀體驗的詩詞網站。收集了豐富的詩詞資源,用戶可以通過作者、詩詞、名句快速查找詩詞。 ...
  • 一:CSS介紹 css被稱為重疊樣式表 重疊在於css擁有合併來自多個源的屬性值的演算法 像衣服一樣,層層疊疊很多件穿在身上,別人看到的是露在錶面上的衣服 樣式表則是對網頁設計元素,如字體,大小,顏色,間距的定義 二:css基本語法 選擇器1,選擇器2{ 屬性:值; } 例子:設置標題1標題2的字體顏 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...