增加依赖 tvt 插件 的判断

This commit is contained in:
hawk86104 2024-08-11 18:47:46 +08:00
parent 4dc7c82e50
commit 89fa2bcbdc
4 changed files with 75 additions and 46 deletions

38
.fes.js
View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙
* @LastEditTime: 2024-06-15 11:17:09
* @LastEditTime: 2024-08-11 18:22:40
*/
// import { resolve } from 'path';
import { join } from 'path'
@ -17,9 +17,7 @@ import glsl from 'vite-plugin-glsl'
import obfuscatorPlugin from 'vite-plugin-javascript-obfuscator'
const timeStamp = new Date().getTime()
const combinedIsCustomElement = (tag) => {
return tag.startsWith('iconify-icon') || templateCompilerOptions.template.compilerOptions.isCustomElement(tag)
}
const combinedIsCustomElement = (tag) => tag.startsWith('iconify-icon') || templateCompilerOptions.template.compilerOptions.isCustomElement(tag)
export default defineBuildConfig({
title: 'TvT.js',
@ -55,27 +53,27 @@ export default defineBuildConfig({
}),
glsl(),
process.env.NODE_ENV === 'production' &&
obfuscatorPlugin({
debugger: false,
// include: ['src/plugins/'],
// exclude: ['/node_modules/', '/src/.fes/', '/src/app.jsx', /index.jsx$/],
// apply: 'build',
options: {
// 配置项,根据需要进行调整
optionsPreset: 'default',
// identifierNamesGenerator: 'mangled',
debugProtection: true,
disableConsoleOutput: true,
reservedStrings: ['suspenseLayout.vue', '/plugins'],
// ... [See more options](https://github.com/javascript-obfuscator/javascript-obfuscator)
},
}),
obfuscatorPlugin({
debugger: false,
// include: ['src/plugins/'],
// exclude: ['/node_modules/', '/src/.fes/', '/src/app.jsx', /index.jsx$/],
// apply: 'build',
options: {
// 配置项,根据需要进行调整
optionsPreset: 'default',
// identifierNamesGenerator: 'mangled',
debugProtection: true,
disableConsoleOutput: true,
reservedStrings: ['suspenseLayout.vue', '/plugins'],
// ... [See more options](https://github.com/javascript-obfuscator/javascript-obfuscator)
},
}),
],
build: {
chunkSizeWarningLimit: 1000, // 单位为KB
rollupOptions: {
output: {
manualChunks(id) {
manualChunks (id) {
// 自定义拆分策略,例如将特定的第三方库拆分为单独的 chunk
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0]

View File

@ -4,14 +4,12 @@
* @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙
* @LastEditTime: 2024-05-31 11:46:51
* @LastEditTime: 2024-08-11 18:02:39
*/
import { defineRuntimeConfig, useModel } from '@fesjs/fes'
import { FMenu } from '@fesjs/fes-design'
import Tres from '@tresjs/core'
import chalk from 'chalk'
import PageLoading from '@/components/pageLoading.vue'
import UserCenter from '@/components/forPreview/userCenter.vue'
// add by
import 'uno.css'
@ -22,6 +20,9 @@ import { addCollection } from 'iconify-icon'
import uimIcons from '@iconify/json/json/uim.json'
import lineMdIcons from '@iconify/json/json/line-md.json'
import wiIcons from '@iconify/json/json/wi.json'
import UserCenter from '@/components/forPreview/userCenter.vue'
import PageLoading from '@/components/pageLoading.vue'
addCollection(uimIcons)
addCollection(lineMdIcons)
addCollection(wiIcons)
@ -30,9 +31,9 @@ export default defineRuntimeConfig({
beforeRender: {
loading: <PageLoading />,
action () {
const { signin,getMenu } = useModel('forPreview')
const { signin, getMenu } = useModel('forPreview')
signin()
if (process.env.FES_APP_PLUGINS === 'true') {
if (process.env.FES_APP_PLUGINS === 'true') {
getMenu()
}
// return new Promise((resolve) => {
@ -51,7 +52,7 @@ export default defineRuntimeConfig({
// },
})
export function layout(layoutConfig) {
export function layout (layoutConfig) {
return {
renderCustom: () => <UserCenter />,
...layoutConfig,
@ -66,9 +67,9 @@ export function onAppCreated ({ app }) {
app.use(FMenu)
app.use(Tres)
window['$vue'] = app
window.$vue = app
// if (process.env.FES_APP_PLUGINS === 'true') {
console.log(chalk.hex('#1c86e5')(`
console.log(chalk.hex('#1c86e5')(`
@ -77,16 +78,16 @@ export function onAppCreated ({ app }) {
`))
console.log(chalk.hex('#5384ff').bold('· 二次开发如用于商业性质或开源竞品请不要删除和修改 TvT.js 源码头部的版权与作者声明及出处。'))
console.log(chalk.hex('#5384ff').bold('· 本项目遵循 Apache2 开源协议发布,并提供永久免费使用以及商用,但是不允许二次开源出来并进行收费。'))
console.log(chalk.hex('#1c86e5').bold('版权所有 Copyright © 2022-2025 by 🧊icegl (https://www.icegl.cn)'))
console.log(chalk.hex('#5384ff').bold('· 二次开发如用于商业性质或开源竞品请不要删除和修改 TvT.js 源码头部的版权与作者声明及出处。'))
console.log(chalk.hex('#5384ff').bold('· 本项目遵循 Apache2 开源协议发布,并提供永久免费使用以及商用,但是不允许二次开源出来并进行收费。'))
console.log(chalk.hex('#1c86e5').bold('版权所有 Copyright © 2022-2025 by 🧊icegl (https://www.icegl.cn)'))
// }
}
const findStringBetween = (str) => {
const regex = /plugins\/([^/]+)\/pages\//;
const match = str.match(regex);
const regex = /plugins\/([^/]+)\/pages\//
const match = str.match(regex)
if (match && match[1]) {
return match[1];
return match[1]
}
return null
}
@ -148,6 +149,7 @@ export function modifyRoute (memo) {
indexRoute.component = null
}
}
return {
...memo,
routes: [

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙
* @LastEditTime: 2024-05-24 09:52:10
* @LastEditTime: 2024-08-11 18:25:33
*/
// 放工具函数
import { request } from '@fesjs/fes'
@ -21,16 +21,25 @@ const findStringBetween = (str) => {
export const getPluginsConfig = () => {
// 获得插件列表 根据插件目录
const modulePaths = import.meta.glob('PLS/*/config.js', { eager: true })
const config = {}
for (const path of Object.keys(modulePaths)) {
const name = findStringBetween(path)
if (!name) {
continue
if (!window.pluginsConfig) {
const modulePaths = import.meta.glob('PLS/*/config.js', { eager: true })
const config = {}
for (const path of Object.keys(modulePaths)) {
const name = findStringBetween(path)
if (!name) {
continue
}
config[name] = modulePaths[path].default
}
config[name] = modulePaths[path].default
window.pluginsConfig = config
}
return config
return window.pluginsConfig
}
export const hasPlugin = (name) => {
const config = getPluginsConfig()
// eslint-disable-next-line no-undefined
return config[name] !== undefined
}
// 警告函数
@ -119,7 +128,7 @@ export const getOnePluginConfig = (pName, oName, cName) => {
// 根据页面参数名查找预览配置
if (oName && config.preview) {
const preview = findPreviewByName(config.preview, oName)
if (preview) return { config, preview: preview }
if (preview) return { config, preview }
}
// 根据子页面参数名查找子配置
else if (cName && config.child) {

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙
* @Date: 2024-03-13 17:14:11
* @LastEditors: 地虎降天龙
* @LastEditTime: 2024-03-14 08:13:11
* @LastEditTime: 2024-08-11 18:46:05
-->
<template>
<div v-if="!hasFinishLoading" class="absolute bg-grey-600 t-0 l-0 w-full h-full z-99999999 flex justify-center items-center text-black font-mono bg-black">
@ -28,19 +28,39 @@
</template>
<script setup lang="ts">
import { hasPlugin } from '@/common/utils'
import { useProgress } from '@tresjs/cientos'
const props = withDefaults(
defineProps<{
isDemo?: boolean
showProgress?: boolean
useResourceManager?: boolean
}>(),
{
isDemo: false,
showProgress: true,
useResourceManager: false,
},
)
const { hasFinishLoading, progress } = await useProgress()
let progress = null as any
let hasFinishLoading = null as any
if (props.useResourceManager) {
if (hasPlugin('resourceManager')) {
const modules = import.meta.glob('PLS/resourceManager/index.js')
const { Resource } = await modules['/src/plugins/resourceManager/index.js']()
progress = Resource.progress
hasFinishLoading = Resource.hasAllFinished
}else{
console.error('resourceManager插件未安装请到插件市场安装:https://icegl.cn/tvtstore')
}
} else {
const uP = await useProgress()
progress = uP.progress
hasFinishLoading = uP.hasFinishLoading
}
const animloop = () => {
if (progress.value++ > 100) {