mirror of
https://github.com/ZiuChen/ClipboardManager.git
synced 2025-09-24 03:53:20 +08:00
init commit
This commit is contained in:
5
src/App.vue
Normal file
5
src/App.vue
Normal file
@@ -0,0 +1,5 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
<router-view/>
|
||||
</div>
|
||||
</template>
|
43
src/cpns/FileList.vue
Normal file
43
src/cpns/FileList.vue
Normal file
@@ -0,0 +1,43 @@
|
||||
<template>
|
||||
<div class="clip-file-list">
|
||||
<div class="clip-file" v-for="file of data.slice(0, 8)" @click.stop="openFile(file.path)">
|
||||
<img class="clip-file-icon" :src="getIcon(file.path)" alt="icon" />
|
||||
<!-- <span class="clip-file-icon" v-if="file.isFile">📄</span>
|
||||
<span class="clip-folder-icon" v-else>📁</span> -->
|
||||
{{ file.name }}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'fileList',
|
||||
props: {
|
||||
data: {
|
||||
type: Array,
|
||||
required: true
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
openFile(path) {
|
||||
window.openFile(path)
|
||||
},
|
||||
getIcon(path) {
|
||||
return window.getIcon(path)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.clip-file:hover {
|
||||
font-weight: 600;
|
||||
}
|
||||
.clip-file:hover::after {
|
||||
content: '📤';
|
||||
}
|
||||
.clip-file-icon {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
</style>
|
10
src/main.js
Normal file
10
src/main.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import Vue from 'vue'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
|
||||
Vue.config.productionTip = false
|
||||
|
||||
new Vue({
|
||||
router,
|
||||
render: (h) => h(App)
|
||||
}).$mount('#app')
|
5
src/plugins/material.js
Normal file
5
src/plugins/material.js
Normal file
@@ -0,0 +1,5 @@
|
||||
import Vue from 'vue'
|
||||
import 'material-design-icons/iconfont/material-icons.css';
|
||||
import 'vue-material/dist/vue-material.min.css';
|
||||
import 'vue-material/dist/theme/default.css';
|
||||
import {} from 'vue-material/dist/components';
|
18
src/router/index.js
Normal file
18
src/router/index.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import Vue from 'vue'
|
||||
import VueRouter from 'vue-router'
|
||||
|
||||
Vue.use(VueRouter)
|
||||
|
||||
const routes = [
|
||||
{
|
||||
path: '/',
|
||||
name: 'Main',
|
||||
component: () => import('../views/Main.vue')
|
||||
},
|
||||
]
|
||||
|
||||
const router = new VueRouter({
|
||||
routes
|
||||
})
|
||||
|
||||
export default router
|
349
src/views/Main.vue
Normal file
349
src/views/Main.vue
Normal file
@@ -0,0 +1,349 @@
|
||||
<template>
|
||||
<div class="main">
|
||||
<div class="clip-restore" @click="restoreDataBase">🧺</div>
|
||||
<transition name="fade">
|
||||
<div class="clip-full" v-show="fullDataShow">
|
||||
<div v-if="fullData.type === 'text'">
|
||||
<div v-text="fullData.data"></div>
|
||||
</div>
|
||||
<div v-if="fullData.type === 'file'">
|
||||
<file-list :data="fullData.data"></file-list>
|
||||
</div>
|
||||
</div>
|
||||
</transition>
|
||||
<div class="clip-overlay" v-show="fullDataShow" @click="toggleFullData('')"></div>
|
||||
<div class="clip-switch">
|
||||
<template v-for="tab of tabs">
|
||||
<div :class="{ active: activeTab === tab.type }" @click="toggleNav(tab.type)">
|
||||
{{ tab.name }}
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
<div class="clip-break"></div>
|
||||
<div class="clip-empty-status" v-if="showList.length === 0">
|
||||
当前记录为空,快去复制点东西来吧
|
||||
</div>
|
||||
<div
|
||||
class="clip-item"
|
||||
v-for="(item, index) in showList"
|
||||
:key="item.createTime"
|
||||
@click="executeCopy(item)"
|
||||
>
|
||||
<div class="clip-info">
|
||||
<div class="clip-time">
|
||||
<span>{{ dateFormat(item.updateTime) }}</span>
|
||||
</div>
|
||||
<div class="clip-data">
|
||||
<template v-if="item.type === 'text'">
|
||||
{{ item.data.slice(0, 500).trim() }}
|
||||
</template>
|
||||
<template v-if="item.type === 'image'">
|
||||
<img :src="item.data" alt="Image" />
|
||||
<div class="clip-image-size">{{ item.size }}</div>
|
||||
</template>
|
||||
<template v-if="item.type === 'file'">
|
||||
<file-list :data="JSON.parse(item.data)" />
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clip-count">{{ index + 1 }}</div>
|
||||
<div
|
||||
class="clip-more"
|
||||
v-if="
|
||||
(item.type === 'text' && item.data.length >= 500) ||
|
||||
(item.type === 'file' && JSON.parse(item.data).length >= 8)
|
||||
"
|
||||
@click.stop="toggleFullData(item)"
|
||||
>
|
||||
📃
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import FileList from '../cpns/FileList.vue'
|
||||
|
||||
export default {
|
||||
name: 'Main',
|
||||
components: {
|
||||
FileList
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
GAP: 10,
|
||||
offset: 0,
|
||||
showList: [],
|
||||
list: [],
|
||||
fullData: { type: '', data: '' },
|
||||
fullDataShow: false,
|
||||
tabs: [
|
||||
{
|
||||
name: '📚 全部',
|
||||
type: 'all'
|
||||
},
|
||||
{
|
||||
name: '📋 文字',
|
||||
type: 'text'
|
||||
},
|
||||
{
|
||||
name: '⛺ 图片',
|
||||
type: 'image'
|
||||
},
|
||||
{
|
||||
name: '📂 文件',
|
||||
type: 'file'
|
||||
}
|
||||
],
|
||||
activeTab: 'all'
|
||||
}
|
||||
},
|
||||
mounted: function () {
|
||||
this.list = window.db.dataBase.data
|
||||
this.showList = this.list.slice(0, this.GAP) // 最初展示 10条
|
||||
|
||||
// 初始化导航
|
||||
this.toggleNav(this.activeTab)
|
||||
// 懒加载
|
||||
document.addEventListener('scroll', (e) => {
|
||||
console.log('scroll')
|
||||
const { scrollTop, clientHeight, scrollHeight } = e.target.scrollingElement
|
||||
if (scrollTop + clientHeight + 25 >= scrollHeight) {
|
||||
console.log('bottom')
|
||||
this.offset += this.GAP + 1
|
||||
let addition = []
|
||||
if (this.activeTab !== 'all') {
|
||||
addition = this.list.filter((item) => item.type === this.activeTab)
|
||||
} else {
|
||||
addition = this.list
|
||||
}
|
||||
addition = addition.slice(this.offset, this.offset + this.GAP)
|
||||
if (addition.length) {
|
||||
this.showList.push(...addition)
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
toggleNav(type) {
|
||||
this.activeTab = type
|
||||
if (type === 'all') {
|
||||
this.showList = this.list.slice(0, this.GAP)
|
||||
} else {
|
||||
this.showList = this.list.filter((item) => item.type === type).slice(0, this.GAP)
|
||||
}
|
||||
document.scrollingElement.scrollTop = 0
|
||||
},
|
||||
dateFormat(timeStamp) {
|
||||
const startTime = new Date(timeStamp) // 开始时间
|
||||
const endTime = new Date() // 结束时间
|
||||
const gaps = [
|
||||
Math.floor((endTime - startTime) / 1000 / 60), // 分钟
|
||||
Math.floor((endTime - startTime) / 1000 / 60 / 60), // 小时
|
||||
Math.floor((endTime - startTime) / 1000 / 60 / 60 / 24) // 天
|
||||
]
|
||||
let info = ''
|
||||
if (gaps[2] > 0) {
|
||||
info = `${gaps[2]}天前`
|
||||
} else if (gaps[1] > 0) {
|
||||
info = `${gaps[1]}小时前`
|
||||
} else if (gaps[0] > 0) {
|
||||
info = `${gaps[0]}分钟前`
|
||||
} else {
|
||||
info = '刚刚'
|
||||
}
|
||||
return info
|
||||
},
|
||||
toggleFullData(item) {
|
||||
// only text || file
|
||||
const { type, data } = item
|
||||
if (type === 'text') {
|
||||
this.fullData.type === 'text'
|
||||
this.fullData.data = data
|
||||
} else if (type === 'file') {
|
||||
this.fullData.type === 'file'
|
||||
this.fullData.data = JSON.parse(data)
|
||||
}
|
||||
this.fullDataShow = !this.fullDataShow
|
||||
},
|
||||
executeCopy(item) {
|
||||
window.copy(item)
|
||||
},
|
||||
restoreDataBase() {
|
||||
console.log('restore clicked')
|
||||
// window.db.emptyDataBase()
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
:root {
|
||||
--primary--color: #8a2be2;
|
||||
--primary--color-lighter: #d3b8ec;
|
||||
--text-color: #333;
|
||||
--text-color-lighter: rgb(138, 138, 138);
|
||||
--text-bg-color: #e3d9ec;
|
||||
--text-bg-color-lighter: #eeeaf3;
|
||||
}
|
||||
.clip-restore {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: fixed;
|
||||
bottom: 10px;
|
||||
right: 10px;
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
cursor: pointer;
|
||||
border-radius: 50%;
|
||||
font-size: 20px;
|
||||
background-color: rgb(232, 232, 232);
|
||||
user-select: none;
|
||||
}
|
||||
.clip-restore:hover {
|
||||
background-color: var(--primary--color);
|
||||
transition: all 0.15s;
|
||||
}
|
||||
.clip-switch {
|
||||
z-index: 999;
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
display: flex;
|
||||
justify-content: left;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
background-color: #eeeeee;
|
||||
}
|
||||
.clip-switch * {
|
||||
padding: 10px 15px 10px 15px;
|
||||
margin: 10px 5px 10px 10px;
|
||||
cursor: pointer;
|
||||
border-radius: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.clip-switch *:hover {
|
||||
background-color: rgb(222, 222, 222);
|
||||
transition: all 0.15s ease-in-out;
|
||||
}
|
||||
.clip-switch .active {
|
||||
color: var(--primary--color);
|
||||
background-color: white;
|
||||
transition: all 0.15s ease-in-out;
|
||||
}
|
||||
.clip-break {
|
||||
height: 55px;
|
||||
}
|
||||
.clip-empty-status {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 50px;
|
||||
}
|
||||
.clip-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
border: 0px solid #eee;
|
||||
border-width: 0px 0px 1px 0px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.clip-item:hover {
|
||||
background-color: var(--text-bg-color-lighter);
|
||||
transition: all 0.15s;
|
||||
}
|
||||
.clip-info {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 14px;
|
||||
padding: 10px;
|
||||
}
|
||||
.clip-time {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-width: 100px;
|
||||
}
|
||||
.clip-time span {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 13px;
|
||||
color: var(--text-color-lighter);
|
||||
background-color: var(--text-bg-color);
|
||||
border-radius: 5px;
|
||||
min-width: 50px;
|
||||
padding: 5px 10px 5px 10px;
|
||||
}
|
||||
.clip-data {
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
word-break: break-all;
|
||||
max-height: 150px;
|
||||
padding: 5px;
|
||||
white-space: pre-wrap;
|
||||
flex-direction: column;
|
||||
background-color: white;
|
||||
}
|
||||
.clip-data img {
|
||||
max-height: 150px;
|
||||
}
|
||||
.clip-data .clip-image-size {
|
||||
position: absolute;
|
||||
background-color: white;
|
||||
}
|
||||
.clip-count {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 50px;
|
||||
padding: 10px;
|
||||
font-size: 13px;
|
||||
color: var(--text-color-lighter);
|
||||
padding: 10px;
|
||||
}
|
||||
.clip-more {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 10px;
|
||||
font-size: 13px;
|
||||
cursor: pointer;
|
||||
border-radius: 0px 5px 5px 0px;
|
||||
}
|
||||
.clip-more:hover {
|
||||
background-color: var(--text-bg-color);
|
||||
transition: all 0.15s;
|
||||
}
|
||||
.clip-full {
|
||||
z-index: 9999999999;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 60%;
|
||||
background: white;
|
||||
padding: 0px 20px 0px 20px;
|
||||
overflow-y: scroll;
|
||||
word-break: break-all;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
.fade-enter-active,
|
||||
.fade-leave-active {
|
||||
transition: all 0.15s;
|
||||
}
|
||||
.fade-enter,
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
.clip-overlay {
|
||||
z-index: 999999999;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user