mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-15 20:39:34 +08:00
- Added ScrollToTopBtn component for smooth scrolling to the top of the page. - Registered ScrollToTopBtn in main.ts. - Integrated ScrollToTopBtn into browse.vue, discover.vue, recommend.vue, resource.vue pages. - Updated components.d.ts to include ScrollToTopBtn type definition. - Refactored MediaCard.vue and SlideView.vue for improved hover effects and styling. - Cleaned up unused styles and optimized existing styles for better performance and readability.
125 lines
3.7 KiB
TypeScript
125 lines
3.7 KiB
TypeScript
// 1. 配置与兼容性
|
|
import './ace-config'
|
|
import '@/@core/utils/compatibility'
|
|
import '@/@iconify/icons-bundle'
|
|
import '@/plugins/webfontloader'
|
|
|
|
// 2. 核心插件和 UI 框架
|
|
import { createApp } from 'vue'
|
|
import vuetify from '@/plugins/vuetify'
|
|
import router from '@/router'
|
|
import pinia from '@/stores/index'
|
|
|
|
// 3. 全局组件
|
|
import App from '@/App.vue'
|
|
import { VAceEditor } from 'vue3-ace-editor'
|
|
import { PerfectScrollbarPlugin } from 'vue3-perfect-scrollbar'
|
|
import { CronVuetify } from '@vue-js-cron/vuetify'
|
|
|
|
// 4. 工具函数和其他辅助模块
|
|
import { fetchGlobalSettings } from './api'
|
|
import { isPWA } from './@core/utils/navigator'
|
|
|
|
// 5. 其他插件和功能模块
|
|
import ToastPlugin from 'vue-toast-notification'
|
|
import VuetifyUseDialog from 'vuetify-use-dialog'
|
|
import VueApexCharts from 'vue3-apexcharts'
|
|
|
|
// 6. 注册自定义组件
|
|
import DialogCloseBtn from '@/@core/components/DialogCloseBtn.vue'
|
|
import ScrollToTopBtn from '@/@core/components/ScrollToTopBtn.vue'
|
|
import MediaCard from './components/cards/MediaCard.vue'
|
|
import PosterCard from './components/cards/PosterCard.vue'
|
|
import BackdropCard from './components/cards/BackdropCard.vue'
|
|
import PersonCard from './components/cards/PersonCard.vue'
|
|
import MediaInfoCard from './components/cards/MediaInfoCard.vue'
|
|
import TorrentCard from './components/cards/TorrentCard.vue'
|
|
import MediaIdSelector from './components/misc/MediaIdSelector.vue'
|
|
import CronField from './components/field/CronField.vue'
|
|
import PathField from './components/field/PathField.vue'
|
|
|
|
// 7. 样式文件
|
|
import '@core/scss/template/libs/vuetify/index.scss'
|
|
import 'vuetify/styles'
|
|
import '@core/scss/template/index.scss'
|
|
import '@layouts/styles/index.scss'
|
|
import 'vue-toast-notification/dist/theme-bootstrap.css'
|
|
import 'vue3-perfect-scrollbar/style.css'
|
|
import '@vue-js-cron/vuetify/dist/vuetify.css'
|
|
import '@styles/styles.scss'
|
|
|
|
// 创建Vue实例
|
|
const app = createApp(App)
|
|
|
|
// 注册pinia
|
|
app.use(pinia)
|
|
|
|
// 初始化配置
|
|
async function initializeApp() {
|
|
try {
|
|
// 是否为PWA
|
|
const pwaMode = await isPWA()
|
|
app.provide('pwaMode', pwaMode)
|
|
|
|
// 全局设置
|
|
const globalSettings = await fetchGlobalSettings()
|
|
app.provide('globalSettings', globalSettings)
|
|
} catch (error) {
|
|
console.error('Failed to initialize app', error)
|
|
}
|
|
}
|
|
|
|
// 注册全局组件
|
|
initializeApp().then(() => {
|
|
// 1. 注册 UI 框架
|
|
app.use(vuetify)
|
|
|
|
// 2. 注册路由
|
|
app.use(router)
|
|
|
|
// 3. 注册全局组件
|
|
app
|
|
.component('VAceEditor', VAceEditor)
|
|
.component('VApexChart', VueApexCharts)
|
|
.component('VCronVuetify', CronVuetify)
|
|
.component('VDialogCloseBtn', DialogCloseBtn)
|
|
.component('VScrollToTopBtn', ScrollToTopBtn)
|
|
.component('VMediaCard', MediaCard)
|
|
.component('VPosterCard', PosterCard)
|
|
.component('VBackdropCard', BackdropCard)
|
|
.component('VPersonCard', PersonCard)
|
|
.component('VMediaInfoCard', MediaInfoCard)
|
|
.component('VTorrentCard', TorrentCard)
|
|
.component('VMediaIdSelector', MediaIdSelector)
|
|
.component('VCronField', CronField)
|
|
.component('VPathField', PathField)
|
|
|
|
// 5. 注册其他插件
|
|
app
|
|
.use(PerfectScrollbarPlugin)
|
|
.use(ToastPlugin, {
|
|
position: 'bottom-right',
|
|
})
|
|
.use(VuetifyUseDialog, {
|
|
confirmDialog: {
|
|
dialogProps: {
|
|
maxWidth: '30rem',
|
|
},
|
|
confirmationButtonProps: {
|
|
variant: 'elevated',
|
|
color: 'primary',
|
|
class: 'me-3 px-5',
|
|
'prepend-icon': 'mdi-check',
|
|
},
|
|
cancellationButtonProps: {
|
|
variant: 'outlined',
|
|
color: 'secondary',
|
|
class: 'me-3',
|
|
},
|
|
confirmationText: '确认',
|
|
cancellationText: '取消',
|
|
},
|
|
})
|
|
.mount('#app')
|
|
})
|