mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-05 06:22:43 +08:00
增加插件生成时的,插件 更新 生成时间的字段,用于增加 新插件的标识
This commit is contained in:
parent
3969b06eaa
commit
2a3758f90f
@ -111,8 +111,17 @@ const createPlugins = (pluginName) => {
|
||||
.then(() => {
|
||||
// 要替换的字符及其替换后的内容
|
||||
const configFile = pluginPath + '/config.js'
|
||||
|
||||
// 获得当前日期
|
||||
const currentDate = new Date()
|
||||
const year = currentDate.getFullYear()// 获取年份
|
||||
const month = String(currentDate.getMonth() + 1).padStart(2, '0') // 获取月份(注意月份是从 0 开始的,需要加 1)
|
||||
const day = String(currentDate.getDate()).padStart(2, '0') // 获取日期
|
||||
const formattedDate = `${year}-${month}-${day}`
|
||||
|
||||
const replaceCharacters = {
|
||||
'template': pluginName,
|
||||
'2024-01-01': formattedDate,
|
||||
}
|
||||
// 读取原始文件内容
|
||||
fs.readFile(configFile, 'utf8', (err, data) => {
|
||||
|
Binary file not shown.
@ -4,7 +4,7 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2023-10-16 10:53:09
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-02-02 16:12:29
|
||||
* @LastEditTime: 2024-03-12 10:02:02
|
||||
*/
|
||||
// 放工具函数
|
||||
const findStringBetween = (str) => {
|
||||
|
@ -1,12 +1,3 @@
|
||||
/*
|
||||
* @Description:
|
||||
* @Version: 1.668
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2024-01-12 09:24:00
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-03-08 15:05:00
|
||||
*/
|
||||
|
||||
export default {
|
||||
"name": "UIdemo",
|
||||
"title": "UI界面的例子",
|
||||
@ -16,6 +7,8 @@ export default {
|
||||
"website": "https://gitee.com/hawk86104",
|
||||
"state": "active",
|
||||
"require": [],
|
||||
"creatTime": "2024-01-12",
|
||||
"updateTime": "2024-03-11",
|
||||
"preview": [
|
||||
{ "src": "plugins/UIdemo/preview/divSample.png", "type": "img", "name": "divSample", "title": "简单DIV" },
|
||||
{ "src": "plugins/UIdemo/preview/divIllustrate.png", "type": "img", "name": "divIllustrate", "title": "DIV说明样例" },
|
||||
|
@ -4,7 +4,7 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2024-03-08 15:06:29
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-03-11 19:05:03
|
||||
* @LastEditTime: 2024-03-12 09:45:43
|
||||
-->
|
||||
<script setup lang="ts">
|
||||
import { ref, watchEffect, reactive } from 'vue'
|
||||
@ -64,10 +64,10 @@ paneControl.addBinding(paneState, 'color', {
|
||||
<h1>关羽 - GuanYu</h1>
|
||||
</section>
|
||||
<section>
|
||||
<h1 style="margin-left: -3em;">大脑 - Brain</h1>
|
||||
<h1 style="margin-left: -11em;margin-bottom: -10em;">大脑 - Brain</h1>
|
||||
</section>
|
||||
<section>
|
||||
<h1>飞机 - Plane</h1>
|
||||
<h1 style="margin-left: 11em;margin-bottom: -10em;">设备 - Device</h1>
|
||||
</section>
|
||||
</main>
|
||||
</template>
|
||||
|
@ -4,7 +4,7 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2023-11-18 22:17:49
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-01-25 09:48:45
|
||||
* @LastEditTime: 2024-03-12 10:18:22
|
||||
-->
|
||||
<template>
|
||||
<div class="flex h-full">
|
||||
@ -16,7 +16,8 @@
|
||||
</template>
|
||||
<template #label>基础功能展示</template>
|
||||
<template v-for="(bP, pkey) in pluginsConfig">
|
||||
<f-menu-item v-if="pkey === 'basic'" v-for="(onePlugin, okey) in bP.child" :value="onePlugin.name">
|
||||
<f-menu-item v-if="pkey === 'basic'" v-for="(onePlugin, okey) in bP.child"
|
||||
:value="onePlugin.name">
|
||||
<template #label>{{ onePlugin.title }}</template>
|
||||
</f-menu-item>
|
||||
</template>
|
||||
@ -26,24 +27,27 @@
|
||||
<PictureOutlined />
|
||||
</template>
|
||||
<template #label>插件中心</template>
|
||||
<template v-for="(onePlugin, pkey) in pluginsConfig">
|
||||
<template v-for="(onePlugin, pkey) in pluginsConfig ">
|
||||
<f-menu-item v-if="pkey !== 'basic'" :value="pkey">
|
||||
<template #label>{{ onePlugin.title }}</template>
|
||||
<template #icon v-if="isNew(onePlugin.updateTime)">
|
||||
<EditOutlined :size="12" :rotate="135" color="#5384ff" />
|
||||
</template>
|
||||
</f-menu-item>
|
||||
</template>
|
||||
</f-sub-menu>
|
||||
</f-menu>
|
||||
</div>
|
||||
<div class="flex-1 overflow-scroll" style="height: calc(100vh - 54px);">
|
||||
<template v-for="(onePlugin, pkey) in pluginsConfig" :key="pkey">
|
||||
<template v-for="( onePlugin, pkey ) in pluginsConfig " :key="pkey">
|
||||
<template v-if="pkey === 'basic'">
|
||||
<div style="background-color: #f1f1f2;" v-for="(one, opkey) in onePlugin.child" :key="opkey"
|
||||
<div style="background-color: #f1f1f2;" v-for="( one, opkey ) in onePlugin.child " :key="opkey"
|
||||
:ref="el => tabListRef[one.name] = el">
|
||||
<cardList :onePlugin="one" />
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
||||
<template v-for="(onePlugin, pkey) in pluginsConfig" :key="pkey">
|
||||
<template v-for="( onePlugin, pkey ) in pluginsConfig " :key="pkey">
|
||||
<div style="background-color: #f1f1f2;" v-if="pkey !== 'basic'" :ref="el => tabListRef[pkey] = el">
|
||||
<cardList :onePlugin="onePlugin" />
|
||||
</div>
|
||||
@ -53,9 +57,9 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref } from 'vue';
|
||||
import { ref, computed } from 'vue';
|
||||
import { defineRouteMeta } from '@fesjs/fes';
|
||||
import { AppstoreOutlined, PictureOutlined } from '@fesjs/fes-design/icon';
|
||||
import { AppstoreOutlined, PictureOutlined, EditOutlined } from '@fesjs/fes-design/icon';
|
||||
import { getPluginsConfig } from '../common/utils';
|
||||
import cardList from '../components/forPreview/cardList.vue'
|
||||
|
||||
@ -65,11 +69,25 @@ defineRouteMeta({
|
||||
});
|
||||
|
||||
const tabListRef = ref([])
|
||||
let pluginsConfig = getPluginsConfig();
|
||||
let pluginsConfig = getPluginsConfig()
|
||||
const goto = (value: string) => {
|
||||
tabListRef.value[value.value]?.scrollIntoView({ behavior: 'smooth', block: 'center', inline: "nearest" })
|
||||
}
|
||||
|
||||
const isNew = ((time: string) => {
|
||||
if (time) {
|
||||
const targetDate = new Date(time)
|
||||
const currentDate = new Date()
|
||||
const targetTimestamp = targetDate.getTime()
|
||||
const currentTimestamp = currentDate.getTime()
|
||||
const timeDifference = currentTimestamp - targetTimestamp
|
||||
const millisecondsPerDay = 1000 * 60 * 60 * 24 // 每天的毫秒数
|
||||
const daysDifference = Math.floor(timeDifference / millisecondsPerDay)
|
||||
if (daysDifference < 7) { //小于七天 算新插件
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="less">
|
||||
|
Loading…
x
Reference in New Issue
Block a user