增加Account模块启动器

This commit is contained in:
userA
2023-10-11 21:44:25 +08:00
parent a39d082db3
commit 0c7c7c9ecd
34 changed files with 475 additions and 50 deletions

View File

@@ -2,7 +2,7 @@ package org.example.core.account.Impl;
import org.example.core.account.AccountCenter;
import org.example.core.factory.PlatformFactory;
import org.example.core.mapper.AccountMapper;
import org.example.mapper.AccountMapper;
import org.example.pojo.Account;
import org.springframework.stereotype.Component;
import org.springframework.util.Assert;

View File

@@ -1,7 +1,7 @@
package org.example.core.guard;
import org.example.core.exchange.Exchange;
import org.example.core.mapper.AccountMapper;
import org.example.mapper.AccountMapper;
import org.example.plugin.GuardPlugin;
import org.example.pojo.*;

View File

@@ -0,0 +1,25 @@
package org.example.core.init.moudle;
import org.example.constpool.ConstPool;
import org.example.constpool.ModuleName;
import org.example.init.ModuleInitMachine;
import org.example.log.ChopperLogFactory;
import org.example.log.LoggerType;
import java.util.List;
/**
* <p>用于初始化弹幕模块所需</p>
*
* @author welsir
* @date 2023/7/31 10:11
*/
public class AccountModuleInitMachine extends ModuleInitMachine {
public AccountModuleInitMachine() {
super(List.of(),
ChopperLogFactory.getLogger(LoggerType.Account),
ModuleName.ACCOUNT);
}
}

View File

@@ -1,7 +1,7 @@
package org.example.core.platform;
import org.example.core.factory.PlatformOperation;
import org.example.core.mapper.AccountMapper;
import org.example.mapper.AccountMapper;
import org.example.pojo.Account;
import org.openqa.selenium.Cookie;
import org.openqa.selenium.chrome.ChromeDriver;

View File

@@ -1,4 +1,4 @@
package org.example.core.mapper;
package org.example.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Select;

View File

@@ -1,4 +1,4 @@
package org.example.core.mapper;
package org.example.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.example.pojo.AccountType;

View File

@@ -1,5 +0,0 @@
spring:
datasource:
username: root
password: 123456
url: jdbc:mysql://localhost:3306/database?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8

View File

@@ -0,0 +1,33 @@
package org.example.core;
import org.example.bean.Barrage;
import org.example.cache.FileCache;
import org.example.core.creeper.file.BarrageSaveFile;
import org.example.exception.FileCacheException;
/**
* @author Genius
* @date 2023/10/10 18:34
**/
public class BarrageFileCache extends FileCache<BarrageSaveFile> {
private final long flagTime = System.currentTimeMillis();
public BarrageFileCache(BarrageSaveFile configFile) throws FileCacheException {
super(configFile, 0, 10 * 1024);
}
@Override
public int append(Object append, String... keys) throws InterruptedException, FileCacheException {
if(append instanceof Barrage){
if (((Barrage) append).getTimeReal() < flagTime) {
long current = System.currentTimeMillis();
((Barrage) append).setTimeReal(current);
((Barrage) append).setTimeIndex(current-flagTime);
}
}
return super.append(append, keys);
}
}

View File

@@ -9,6 +9,7 @@ import org.example.constpool.BarrageModuleConstPool;
import org.example.constpool.FileNameBuilder;
import org.example.core.creeper.file.BarrageSaveFile;
import org.example.core.creeper.loadconfig.LoadBarrageConfig;
import org.example.util.BarrageUtil;
import org.example.util.FileUtil;
import org.example.util.JsonFileUtil;

View File

@@ -3,6 +3,7 @@ package org.example.core.creeper.loadtask;
import org.example.bean.barrage.DouyuBarrage;
import org.example.cache.FileCache;
import org.example.constpool.PluginName;
import org.example.core.BarrageFileCache;
import org.example.core.BarrageTaskMonitor;
import org.example.core.creeper.file.BarrageSaveFile;
import org.example.core.creeper.loadconfig.DouyuLiveBarrageLoadConfig;
@@ -38,7 +39,7 @@ public class DouyuLiveBarrageLoadTask extends WebSocketLoadTask<List<DouyuBarrag
public DouyuLiveBarrageLoadTask(DouyuLiveBarrageLoadConfig loadConfig) throws FileCacheException {
super(loadConfig);
roomId = loadConfig.getRoomId();
fileCache = new FileCache(new BarrageSaveFile<>(loadConfig,new ConcurrentLinkedQueue<>()));
fileCache = new BarrageFileCache(new BarrageSaveFile<>(loadConfig,new ConcurrentLinkedQueue<>()));
}
@Override
@@ -93,7 +94,7 @@ public class DouyuLiveBarrageLoadTask extends WebSocketLoadTask<List<DouyuBarrag
if(douyuBarrage.getTimeReal()==0){
long now = System.currentTimeMillis();
douyuBarrage.setTimeReal(now);
douyuBarrage.setTimeReal(now-startTime);
douyuBarrage.setTimeIndex(now-startTime);
}
list.add(douyuBarrage);
try {

View File

@@ -3,6 +3,7 @@ package org.example.core.creeper.pipline;
import org.example.bean.Barrage;
import org.example.cache.FileCache;
import org.example.constpool.PluginName;
import org.example.core.BarrageFileCache;
import org.example.core.BarrageTaskMonitor;
import org.example.core.creeper.file.BarrageSaveFile;
import org.example.core.creeper.loadconfig.LoadBarrageConfig;
@@ -33,7 +34,7 @@ import java.util.concurrent.locks.ReentrantLock;
*/
public class BarragePipelineWriteJson<T extends Barrage> implements Pipeline {
private FileCache filecache;
private BarrageFileCache filecache;
private final ConcurrentLinkedQueue<T> cache;
LoadBarrageConfig loadBarrageConfig;
@@ -53,7 +54,7 @@ public class BarragePipelineWriteJson<T extends Barrage> implements Pipeline {
this.loadBarrageConfig = loadBarrageConfig;
this.cache = new ConcurrentLinkedQueue<>();
this.barrageSaveFile = new BarrageSaveFile(loadBarrageConfig, cache);
this.filecache = new FileCache(barrageSaveFile, 0, 10 * 1024);
this.filecache = new BarrageFileCache(barrageSaveFile);
} catch (FileCacheException e) {
throw new RuntimeException(e);

View File

@@ -11,52 +11,52 @@ import java.util.stream.Collectors;
* @date 2023/09/17 23:20
**/
public class BarrageUtil {
public static boolean cutBarrageFile(String inputFilePath,String outputFilePath,long start,long end){
public static boolean cutBarrageFile(String inputFilePath, String outputFilePath, long start, long end) {
try {
Map<String, Object> map = JsonFileUtil.readJsonFile(inputFilePath);
Object barrages = map.get("data");
if(barrages instanceof JSONArray){
if (barrages instanceof JSONArray) {
List<Barrage> list = ((JSONArray) barrages).toJavaList(Barrage.class);
list = list.stream().sorted(Comparator.comparing(Barrage::getTimeReal)).collect(Collectors.toList());
if(list.isEmpty()){
JsonFileUtil.writeJsonFile(outputFilePath,Map.of("data",list,"updateTime",TimeUtil.getNowTime_YMDHMS()));
}else{
if (list.isEmpty()) {
JsonFileUtil.writeJsonFile(outputFilePath, Map.of("data", list, "updateTime", TimeUtil.getNowTime_YMDHMS()));
} else {
long startTime = list.get(0).getTimeReal() + start;
long endTime = list.get(0).getTimeReal() + end;
List<Barrage> newBarrageList = new ArrayList<>();
int endIndex = leTimeBarrageIndex(list,endTime);
int startIndex = geTimeBarrageIndex(list,startTime);
if(endIndex!=-1&&startIndex!=-1){
newBarrageList = List.copyOf(list.subList(startIndex,endIndex+1));
int endIndex = leTimeBarrageIndex(list, endTime);
int startIndex = geTimeBarrageIndex(list, startTime);
if (endIndex != -1 && startIndex != -1) {
newBarrageList = List.copyOf(list.subList(startIndex, endIndex + 1));
}
JsonFileUtil.writeJsonFile(outputFilePath,Map.of("data",newBarrageList,"updateTime",TimeUtil.getNowTime_YMDHMS()));
JsonFileUtil.writeJsonFile(outputFilePath, Map.of("data", newBarrageList, "updateTime", TimeUtil.getNowTime_YMDHMS()));
}
}
}catch (Exception e){
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;
}
public static int leTimeBarrageIndex(List<Barrage> barrages,long time){
public static int leTimeBarrageIndex(List<Barrage> barrages, long time) {
int left = 0;
int right = barrages.size() - 1;
int result = -1;
while (left <= right){
int mid = (left + right) / 2;
while (left <= right) {
int mid = (left + right) / 2;
Long timeReal = barrages.get(mid).getTimeReal();
if (timeReal <= time) {
left = mid + 1;
result = mid;
}else{
} else {
right = mid - 1;
}
}
return result;
return result;
}
public static int geTimeBarrageIndex(List<Barrage> barrages,long time){
public static int geTimeBarrageIndex(List<Barrage> barrages, long time) {
int left = 0;
int right = barrages.size() - 1;
int result = -1;
@@ -64,7 +64,7 @@ public class BarrageUtil {
int mid = (left + right) / 2;
Long timeReal = barrages.get(mid).getTimeReal();
if (timeReal >= time) {
right = mid -1;
right = mid - 1;
result = mid;
} else {
left = mid + 1;
@@ -72,5 +72,4 @@ public class BarrageUtil {
}
return result;
}
}

View File

@@ -17,4 +17,5 @@ public class ModuleName {
public static final String BARRAGE = ConstPool.BARRAGE;
public static final String LIVE = ConstPool.LIVE_RECORD;
public static final String SECTION = ConstPool.SECTION;
public static final String ACCOUNT = ConstPool.ACCOUNT;
}

View File

@@ -11,6 +11,7 @@ public enum LoggerType {
Hot("HotModule "),
Barrage("Barrage "),
LiveRecord("LiveRecord "),
Account("Account "),
Section("Section ");
private String loggerName;

View File

@@ -18,6 +18,18 @@
</properties>
<dependencies>
<dependency>
<groupId>org.example</groupId>
<artifactId>chopperbot-common</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.example</groupId>
<artifactId>chopperbot-account</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.example</groupId>
<artifactId>chopperbot-creeper</artifactId>
@@ -33,12 +45,6 @@
<artifactId>chopperbot-file</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.example</groupId>
<artifactId>chopperbot-common</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.example</groupId>
<artifactId>chopperbot-hot</artifactId>

View File

@@ -5,6 +5,7 @@ import org.example.service.FileService;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
@@ -33,4 +34,6 @@ public class FileController {
public Result getAllConfigFiles(){
return Result.success(fileService.getAllConfigs());
}
}

View File

@@ -114,19 +114,36 @@ public class HotController {
);
}
@CheckPlugin(needPlugin = {PluginName.HOT_RECOMMENDATION_PLUGIN})
@GetMapping("/hotRecommendation/list")
public Result followDogs(){
List<FollowDog> followDog = hotModuleService.heatRecommendApi().getFollowDog();
@CheckPlugin(needPlugin = {PluginName.HOT_LIVER_FOLLOWER})
@GetMapping("/liveFollow/changeSetting")
public Result changeLiverFollowSetting(@RequestParam(required = false) Integer focusLive,
@RequestParam(required = false) Integer focusBarrage,
@RequestParam(required = false) Long checkTime){
hotModuleService.liverFollowApi().changeSetting(
Map.of("focusList",focusLive,
"focusBarrage",focusBarrage,
"checkTime",checkTime
)
);
return Result.success(
Map.of("list",followDog)
Map.of("success",true)
);
}
@CheckPlugin(needPlugin = {PluginName.HOT_RECOMMENDATION_PLUGIN})
@GetMapping("/hotRecommendation/list")
public Result getFollowDogs(){
return Result.success(
Map.of(
"list",hotModuleService.heatRecommendApi().getFollowDog()
)
);
}
@CheckPlugin(needPlugin = {PluginName.HOT_RECOMMENDATION_PLUGIN})
@PostMapping("/hotRecommendation/add")
public Result addFollowDogs(@RequestBody FollowDog dog){
dog.setId(null);
boolean success = hotModuleService.heatRecommendApi().addFollowDog(dog);
if(success){
return Result.success(
@@ -137,6 +154,8 @@ public class HotController {
}
}
@CheckPlugin(needPlugin = {PluginName.HOT_RECOMMENDATION_PLUGIN})
@PostMapping("/hotRecommendation/update")
public Result updateFollowDogs(@RequestBody FollowDog dog){

View File

@@ -1,6 +1,7 @@
package org.example.service;
import org.example.pojo.vo.ConfigVO;
import org.example.util.Result;
import java.util.List;
@@ -16,4 +17,5 @@ public interface FileService {
//获取所有文件
List<ConfigVO> getAllConfigs();
}

View File

@@ -1,11 +1,17 @@
package org.example.util;
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
import org.example.bean.ConfigFile;
import org.example.cache.FileCache;
import org.example.cache.FileCacheManager;
import org.example.cache.FileCacheManagerInstance;
import org.example.constpool.PluginName;
import org.example.exception.FileCacheException;
import org.example.init.InitPluginRegister;
import org.slf4j.Logger;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
/**
@@ -48,4 +54,28 @@ public class ConfigFileUtil {
public static boolean createConfigFile(String filePath, ConfigFile configFile){
return createConfigFile(filePath,configFile,null,null,false);
}
public static void changeSetting(Map<String,Object> settings,String filePath,String...prefixParams){
FileCacheManager plugin = InitPluginRegister.getPlugin(PluginName.FILE_CACHE_PLUGIN, FileCacheManager.class);
FileCache fileCache = plugin.getFileCache(filePath);
settings.forEach(
(k,v)->{
try {
if(ObjectUtils.isNotEmpty(v)){
ArrayList<String> list = new ArrayList<String>(List.of(prefixParams));
list.add(k);
fileCache.writeKeys(v, list.toArray(new String[0]));
}
} catch (InterruptedException | FileCacheException e) {
throw new RuntimeException(e);
}
}
);
}
public static Object getSetting(String filePath,String...prefixParams){
FileCacheManager plugin = InitPluginRegister.getPlugin(PluginName.FILE_CACHE_PLUGIN, FileCacheManager.class);
FileCache fileCache = plugin.getFileCache(filePath);
return fileCache.get(prefixParams);
}
}

View File

@@ -1,12 +1,21 @@
package org.example.api;
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
import org.example.bean.FocusLiver;
import org.example.cache.FileCache;
import org.example.cache.FileCacheManager;
import org.example.config.HotModuleConfig;
import org.example.constpool.PluginName;
import org.example.core.focus.LiverFollower;
import org.example.exception.FileCacheException;
import org.example.init.InitPluginRegister;
import org.example.service.FocusLiverService;
import org.example.util.ConfigFileUtil;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
import java.util.List;
import java.util.Map;
/**
* @author Genius
@@ -41,4 +50,12 @@ public class LiverFollowApi {
}
return false;
}
public void changeSetting(Map<String,Object> settings){
ConfigFileUtil.changeSetting(settings,HotModuleConfig.getFullFilePath(),"liverFollower");
}
public Object getSetting(){
return ConfigFileUtil.getSetting(HotModuleConfig.getFullFilePath(),"liverFollower");
}
}

View File

@@ -33,4 +33,9 @@ public class BilibiliLiverCheckerConfig extends LoadConfig {
this.cookie.put("buvid3","6BA6EB5A-E197-4F47-A2C4-E4022E98BC85138387infoc");
this.cookie.put("SESSDATA","9481d398%2C1711296621%2C4d8e5%2A91CjB4IXMIVvMxEG4t5eeq6jicEzEbBHPyKRAJcBNLSi7n_-bBq8ik86Cua7JRupYgqPoSVl9pM2tHYllWSURiQmxESDByUExXU0kwV01JckN0dlB4Sks4aHk5V1FTOXBsSG9STkVJNnhwakxoS2VscWV6a0taYm0wa2xPVUxMRk9lZ2R5T19mS3FBIIEC");
}
@Override
public String getTaskId() {
return super.getTaskId()+"_"+liver;
}
}

View File

@@ -27,4 +27,9 @@ public class DouyuLiverCheckerConfig extends LoadConfig {
this.roomId = roomId;
this.url = "https://www.douyu.com/betard/"+roomId;
}
@Override
public String getTaskId() {
return super.getTaskId()+"_"+roomId;
}
}

View File

@@ -61,6 +61,7 @@ public class LiverFollower extends SpringBootPlugin {
FileCache fileCache = plugin.getFileCache(HotModuleConfig.getFullFilePath());
focusLive = (Integer)fileCache.get("LiverFollower", "focusLive")==1;
//focusBarrage = (Integer)fileCache.get("LiverFollower", "focusBarrage")==1;
checkTime = (Long)fileCache.get("LiverFollower", "checkTime");
focusRecord = (Integer)fileCache.get("LiverFollower", "focusRecord")==1;
checkTime = (Integer)fileCache.get("LiverFollower", "checkTime");
focusLivers = service.getFocusLivers();

View File

@@ -19,7 +19,6 @@ import java.util.concurrent.TimeUnit;
public class bilibiliTest {
public static void getcookies() throws Exception {
System.setProperty("webdriver.chrome.driver", "D:\\downLoad\\chromedriver_win32\\chromedriver.exe");
ChromeOptions options = new ChromeOptions();
options.setBinary("C:\\Program Files (x86)\\Chromebrowser\\Chrome.exe");

View File

@@ -3,7 +3,7 @@
"InstantSlicing":{
"handler":"ScheduleTime",
"ScheduleTime":{
"duration":300000
"duration":600000
}
},
"barrageScoreCurve":{

View File

@@ -31,5 +31,5 @@
"CreeperConfig":true
}
},
"updateTime":"2023-10-09 22:41:45"
"updateTime":"2023-10-11 18:15:50"
}

View File

@@ -22,10 +22,22 @@ export function addFollow(liver:FocusLiver){
export function unFollow(platform:string,liver:string){
return request({
url: '/hot/liveFollow/delete',
method: 'Get',
method: 'get',
params: {
platform:platform,
liver:liver
}
});
}
export function changeSetting(checkTime:number,focusLive:string,focusBarrage:string){
return request({
url: '/hot/liveFollow/changeSetting',
method: 'get',
params: {
checkTime: checkTime,
focusLive: focusLive,
focusBarrage: focusBarrage
}
})
}

View File

@@ -33,7 +33,7 @@ export default [
icon:"mdi mdi-star-face",
key:"menu.live_follow",
text:"Live Follow",
link: "/apps/live_follow"
link: "/apps/liveFollow"
},
{
icon: "mdi-forum-outline",

View File

@@ -92,6 +92,20 @@ export default [
category: "APP",
},
},
{
path: "/apps/liveFollow",
name: "app-live-follow",
component: () =>
import(
/* webpackChunkName: "utility-board" */ "@/views/app/hot/live_follow/LiveFollowPage.vue"
),
meta: {
requiresAuth: true,
title: "Live Follow",
layout: "ui",
category: "APP",
},
},
{
path: "/apps/email",
meta: {

View File

@@ -1,5 +1,4 @@
import { defineStore } from "pinia";
import {useSnackbarStore} from "@/stores/snackbarStore";
import {FollowDog} from "@/views/app/hot/heat_recommend/FollowDogTypes";

View File

@@ -0,0 +1,28 @@
<script setup lang="ts">
import {allCreeper} from "@/api/creeperApi";
import {useCreeperStore} from "@/views/app/creeper/creeperStore";
import LiveFollowCard from "@/views/app/hot/live_follow/component/LiveFollowCard.vue";
const creeperStore = useCreeperStore();
onMounted(async()=>{
await allCreeper().then(res=>{
creeperStore.creeperList = res.data['list']
})
})
</script>
<template>
<div class="app-container">
<LiveFollowCard :creepers="creeperStore.creeperList"></LiveFollowCard>
</div>
</template>
<style scoped lang="scss">
.app-container {
height: calc(100vh - 240px);
width: 100%;
font-size: 13px;
padding: 20px;
}
</style>

View File

@@ -0,0 +1,215 @@
<script setup lang="ts">
import CopyLabel from "@/components/common/CopyLabel.vue";
import {Creeper} from "../creeperTypes"
const props = defineProps<{
creepers: Creeper[];
}>();
const dialog = ref(false)
const notifications = false
const sound = true
const widgets = false
const loading = ref(true);
const headers = [
{ text: "id", align: "start", value: "id" },
{ text: "平台", value: "description" },
{ text: "主播昵称", value: "author" },
{ text: "房间号", value: "group" },
{ text: "标签", value: "priority" },
];
const open = (item) => {};
onMounted(() => {
setTimeout(() => {
loading.value = false;
}, 1000);
});
const searchKey = ref("")
const keys = ["group","name"]
const search = computed(()=> {
for (let i = 0; i < keys.length; i++) {
let key = keys[i]
if (searchKey.value.startsWith(key + ":")) {
let param = searchKey.value.split(key + ":")
if (param.length >= 2) {
return props.creepers.filter((creeper) => {
return creeper[key].includes(param[1].toLowerCase())
})
}
}
}
return props.creepers
})
const priorityColor = (priority:Number)=>{
if(priority<3){
return "green"
}else if(priority<5){
return "secondary"
}else if(priority<8){
return "orange"
}else{
return "red"
}
}
</script>
<template>
<!-- loading spinner -->
<div
v-if="loading"
class="h-full d-flex flex-grow-1 align-center justify-center"
>
<v-progress-circular indeterminate color="primary"></v-progress-circular>
</div>
<div v-else>
<v-card>
<v-card-title class="font-weight-bold">
<span>Live Follow</span>
<v-spacer></v-spacer>
<v-btn
color="primary"
dark
v-bind="props"
@click=""
>
<v-icon start icon="mdi mdi-cog"></v-icon>
Setting
</v-btn>
<v-dialog
v-model="dialog"
fullscreen
:scrim="false"
transition="dialog-bottom-transition"
>
<v-card>
<v-toolbar
dark
color="primary"
>
<v-btn
icon
dark
@click="dialog = false"
>
<v-icon>mdi-close</v-icon>
</v-btn>
<v-toolbar-title>Settings</v-toolbar-title>
<v-spacer></v-spacer>
<v-toolbar-items>
<v-btn
variant="text"
@click="dialog = false"
>
Save
</v-btn>
</v-toolbar-items>
</v-toolbar>
<v-list
lines="two"
subheader
>
<v-list-subheader>User Controls</v-list-subheader>
<v-list-item title="Content filtering" subtitle="Set the content filtering level to restrict apps that can be downloaded"></v-list-item>
<v-list-item title="Password" subtitle="Require password for purchase or use password to restrict purchase"></v-list-item>
</v-list>
<v-divider></v-divider>
<v-list
lines="two"
subheader
>
<v-list-subheader>General</v-list-subheader>
<v-list-item title="Notifications" subtitle="Notify me about updates to apps or games that I downloaded">
<template v-slot:prepend>
<v-checkbox v-model="notifications"></v-checkbox>
</template>
</v-list-item>
<v-list-item title="Sound" subtitle="Auto-update apps at any time. Data charges may apply">
<template v-slot:prepend>
<v-checkbox v-model="sound"></v-checkbox>
</template>
</v-list-item>
<v-list-item title="Auto-add widgets" subtitle="Automatically add home screen widgets">
<template v-slot:prepend>
<v-checkbox v-model="widgets"></v-checkbox>
</template>
</v-list-item>
</v-list>
</v-card>
</v-dialog>
</v-card-title>
<v-table class="pa-3">
<thead>
<tr>
<th class="text-left" v-for="header in headers" :key="header.text">
{{ header.text }}
</th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) in search" :key="item.name">
<td class="font-weight-bold">
<copy-label :text="`# ${index}`" />
</td>
<td>
<copy-label :text="item.name" />
</td>
<td>{{ item.description }}</td>
<td>{{ item.author }}</td>
<td>
<v-chip
class="ma-2"
color="cyan"
label>
<v-icon start icon="mdi mdi-earth-box"></v-icon>
{{ item.group }}
</v-chip>
</td>
</tr>
</tbody>
</v-table>
</v-card>
</div>
</template>
<style lang="scss" scoped>
.dialog-bottom-transition-enter-active,
.dialog-bottom-transition-leave-active {
transition: transform .2s ease-in-out;
}
.v-table {
table {
padding: 4px;
padding-bottom: 8px;
th {
text-transform: uppercase;
white-space: nowrap;
}
td {
border-bottom: 0 !important;
}
tbody {
tr {
transition: box-shadow 0.2s, transform 0.2s;
&:not(.v-data-table__selected):hover {
box-shadow: 0 3px 15px -2px rgba(0, 0, 0, 0.12);
transform: translateY(-4px);
}
}
}
}
}
</style>

View File

@@ -0,0 +1,13 @@
<template>
</template>
<script>
export default {
name: "LiveFollowSetting"
}
</script>
<style scoped>
</style>

Binary file not shown.