Jelajahi Sumber

feat: 窗口加载
1. 窗口加载应用

kindring 3 bulan lalu
induk
melakukan
b35f661f60
5 mengubah file dengan 65 tambahan dan 31 penghapusan
  1. 19 15
      src/App.vue
  2. 4 0
      src/assets/public.css
  3. 17 0
      src/components/music/musicIndex.vue
  4. 2 0
      src/types/application.ts
  5. 23 16
      src/util/AppManag.ts

+ 19 - 15
src/App.vue

@@ -15,15 +15,24 @@ import MacWindow from "./components/window/macWindow.vue";
 import MagnetView from "./components/magnets/magnetView.vue";
 import AppleBar from "@/components/appleBar/appleBar.vue";
 import BarIconBtn from "@/components/appleBar/barIconBtn.vue";
-import SettingView from "@/components/settingView.vue";
-import {NavItem} from "@/components/appleBar/appleBar.ts";
 import message from "@/components/public/kui/message";
-import ImageControl from "@/components/image/imageControl.vue";
-import {ApplicationInfo, RunApplicationInfo} from "@/types/application.ts";
+import {RunApplicationInfo} from "@/types/application.ts";
 import AppList from "@/components/window/app-list.vue";
 import AppWindow from "@/components/window/app-window.vue";
 import {windowAction} from "@/tools/IpcCmd.ts";
-import {Applications, closeApp, openApp, runNavComputed, runningApplications, setAppTop} from "@/util/AppManag.ts";
+import {
+  Applications,
+  closeApp,
+  getAppComponent,
+  setAppComponent,
+  openApp,
+  runNavComputed,
+  runningApplications,
+  setAppTop,
+} from "@/util/AppManag.ts";
+
+import musicIndex from "@/components/music/musicIndex.vue"
+
 
 const { proxy } = getCurrentInstance() as ComponentInternalInstance
 onMounted(() => {
@@ -31,21 +40,13 @@ onMounted(() => {
 });
 
 let transitionName = ref("slide-right");
-const activeIndex = ref(0);
-const settingPageKey = 'setting';
-const homePageKey = 'home';
-const imagePageKey = 'image';
-const musicPageKey = 'music';
 
 
 
 // 根据runningApplications 动态获取导航项
 
 
-
-
 const title = ref("fc-ele");
-const pageKey = ref(homePageKey);
 const editMode = ref(false);
 const isFull = ref(false);
 const isDing = ref(false);
@@ -120,8 +121,10 @@ const navAction = (actionCode:string) => {
   {
     return message.error(`${actionCode} is not exist`);
   }
+  setAppComponent(runningApp.key, musicIndex);
   runningApp.show = true;
   setAppTop(runningApp);
+
   // top
   // message.log(`pageKey: ${pageKey.value}`);
 }
@@ -207,6 +210,9 @@ function openApplication(key: string)
                 @focus-window="focusAppHandle(item)"
             >
 <!--              切换对应组件, 并且-->
+              <component
+                  :is="getAppComponent(item.key)">
+              </component>
             </app-window>
           </div>
         </div>
@@ -216,7 +222,6 @@ function openApplication(key: string)
     <div :class="`app-bar ${isBarHidden?'app-bar-hidden':''}`">
       <apple-bar
           :nav-items="runNavComputed"
-          :active="pageKey"
           :hide-time="3000"
           :prevent-hide="isOpenApplicationCenter"
           @input="(isHidden) => {isBarHidden = isHidden}"
@@ -232,7 +237,6 @@ function openApplication(key: string)
         </template>
 
         <bar-icon-btn
-            v-if="pageKey === homePageKey"
             icon-name="edit"
             :active="editMode"
             @click.native="editModeChange"

+ 4 - 0
src/assets/public.css

@@ -4,3 +4,7 @@
     height: 100%;
     position: relative;
 }
+
+.fc-app-window{
+    width: 100%;
+}

+ 17 - 0
src/components/music/musicIndex.vue

@@ -0,0 +1,17 @@
+<script setup lang="ts">
+import {defineComponent} from "vue";
+
+defineComponent({
+  name: "musicIndex"
+})
+</script>
+
+<template>
+  <div class="fc-app-window">
+    music
+  </div>
+</template>
+
+<style scoped>
+
+</style>

+ 2 - 0
src/types/application.ts

@@ -9,6 +9,8 @@ export interface ApplicationInfo {
     minHeight: number;
     minWidth: number;
     description: string;
+    component?: any;
+    componentPath: string;
 }
 
 export interface RunApplicationInfo {

+ 23 - 16
src/util/AppManag.ts

@@ -5,7 +5,7 @@ import {computed, reactive} from "vue";
 
 export let Applications:ApplicationInfo[] = [
     {
-        key: 'music',
+        key: 'musicIndex',
         name: '音乐',
         pinyin: 'yinyue',
         en: 'music',
@@ -14,6 +14,8 @@ export let Applications:ApplicationInfo[] = [
         minHeight: 600,
         minWidth: 800,
         description: '音乐播放器',
+        component: null,
+        componentPath: '@/components/music/musicIndex.vue',
     },
     {
         key: 'setting',
@@ -25,9 +27,13 @@ export let Applications:ApplicationInfo[] = [
         minHeight: 600,
         minWidth: 800,
         description: '软件设置',
+        component: null,
+        componentPath: '@/components/music/musicIndex.vue',
     },
 ]
 
+
+
 // 已经启动的app 列表
 export let runningApplications:RunApplicationInfo[] = reactive([]);
 
@@ -126,19 +132,20 @@ export function closeApp(app: RunApplicationInfo) {
 }
 
 
-export function getRunAppNavigation(): NavItem[] {
-    return runningApplications.map(item => {
-        let rawAppInfo = Applications.find(appInfo => appInfo.key === item.key)
-        if(!rawAppInfo)
-        {
-            throw new Error(`app not found: ${item.key}`)
-        }
-        return {
-            id: item.id,
-            name: rawAppInfo.name,
-            icon: rawAppInfo.icon,
-            description: rawAppInfo.description,
-            actionCode: item.id
-        } as NavItem;
-    })
+export function getAppComponent  (key: string): any {
+    let appInfo = Applications.find(item => item.key === key)
+    if(!appInfo)
+    {
+        throw new Error(`app not found: ${key}`)
+    }
+    return appInfo.component
+}
+export function setAppComponent (key: string, component: any)
+{
+    let appInfo = Applications.find(item => item.key === key)
+    if(!appInfo)
+    {
+        throw new Error(`app not found: ${key}`)
+    }
+    appInfo.component = component
 }