-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
115 additions
and
36 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<template> | ||
<div id="app"> | ||
<link rel="stylesheet" href="https://yui.syui.ai/bower_components/icomoon/css/icomoon.css" /> | ||
<link rel="stylesheet" href="https://yui.syui.ai/bower_components/font-awesome/css/all.min.css" /> | ||
<hooper :settings="hooperSettings"> | ||
<slide v-for="(n,index) of products" :key="n"> | ||
<div v-if="loading" class="loading"> | ||
|
@@ -23,13 +25,15 @@ | |
</div> | ||
--> | ||
|
||
<div class="page"> | ||
{{ loc }} | ||
<div class="page" v-if="loc === ''"> | ||
<div class="page_data"> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th scope="col">yui</th> | ||
<th scope="col">巻</th> | ||
<th scope="col">manga</th> | ||
<th scope="col">ver</th> | ||
<th scope="col">day</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
|
@@ -38,6 +42,7 @@ | |
<a :href="this.url + this.s_a"><img :src="url + 'manga/' + this.s_a + '.webp'" v-on:click="page_run(s_a)"></a> | ||
</th> | ||
<td>0.0</td> | ||
<td>2021-07-11</td> | ||
</tr> | ||
</tbody> | ||
<tbody> | ||
|
@@ -46,43 +51,52 @@ | |
<a :href="this.url + this.s_b"><img :src="url + 'manga/' + this.s_b + '.webp'" v-on:click="page_run(s_a)"></a> | ||
</th> | ||
<td>0.1</td> | ||
<td>2021-07-11</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
|
||
<div class="bsky_comment"> | ||
<div class="comment" v-if="loc === ''"> | ||
<div class="bsky_comment" v-if="comment_open == false"> | ||
<span class="comment"> | ||
<p class="comment-body" v-if="comment_first"> | ||
<img :src="'/icon/' + comment_first.did.replace('did:plc:', '') + '.jpg'" v-if="comment_first.avatar" class="comment"/> <span class="comment-time" v-if="comment_first.updated_at"><a :href="comment_first.bsky_url" v-if="comment_first.bsky_url">{{ moment(comment_first.updated_at) }}</a></span> <span class="comment-handle" v-if="comment_first.handle"><a :href="'https://' + comment_first.bsky_url.split('/').slice(2,5).join('/')" v-if="comment_first.bsky_url">@{{ comment_first.handle }}</a></span> | ||
<span class="comment-text" v-if="comment_first.text">{{ comment_first.text }}</span> | ||
</p> | ||
</span> | ||
<div class="comment_open"> | ||
<p> | ||
<a :href="comment_first.bsky_url" target="_blank">post</a> | ||
</p> | ||
<p> | ||
<button class="comment_open" v-on:click="comment_open = !comment_open"><i class="fa-solid fa-chevron-down"></i></button> | ||
</p> | ||
</div> | ||
</div> | ||
<div class="bsky_comment" v-else> | ||
<span v-for="i in api_json.data" class="comment"> | ||
<p class="comment-body" v-if="i.text"> | ||
<!-- | ||
<img :src="i.avatar" v-if="i.avatar" class="comment"/> <span class="comment-time" v-if="i.handle">{{ moment(i.updated_at) }}</span> <span class="comment-handle" v-if="i.handle"><a :href="i.bsky_url">@{{ i.handle }}</a></span> | ||
--> | ||
<img :src="'/icon/' + i.did.replace('did:plc:', '') + '.jpg'" v-if="i.avatar" class="comment"/> <span class="comment-time" v-if="i.handle">{{ moment(i.updated_at) }}</span> <span class="comment-handle" v-if="i.handle"><a :href="i.bsky_url">@{{ i.handle }}</a></span> | ||
<span class="comment-text">{{ i.text }}</span> | ||
<p class="comment-body" v-if="i"> | ||
{{ axios_check('/icon/' + i.did.replace('did:plc:', '') + '.jpg') }} | ||
<img :src="'/icon/' + i.did.replace('did:plc:', '') + '.jpg'" v-if="url_check" class="comment"/><img :src="i.avatar" v-else-if="i.avatar" class="comment"/> <span class="comment-time" v-if="i.updated_at"><a :href="i.bsky_url" v-if="i.bsky_url">{{ moment(i.updated_at) }}</a></span> <span class="comment-handle" v-if="i.handle"><a :href="'https://' + i.bsky_url.split('/').slice(2,5).join('/')" v-if="i.bsky_url">@{{ i.handle.replace('.bsky.social', '') }}</a></span> | ||
<span class="comment-text" v-if="i.text">{{ i.text }}</span> | ||
</p> | ||
</span> | ||
<div class="comment_open"><button class="comment_open" v-on:click="comment_open = !comment_open"><i class="fa-solid fa-chevron-up"></i></button></div> | ||
</div> | ||
</div> | ||
|
||
<div class="page_title"> | ||
<div class="page_title" v-if="loc === ''" > | ||
<div class="page_data"> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th scope="col"><span class="icon-ai"></span></th> | ||
<th scope="col">title</th> | ||
<th scope="col">body</th> | ||
<th scope="col">author</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<th scope="row"> | ||
<a href="https://yui.syui.ai"><img src="https://syui.ai/ai.png" v-on:click="page_run(s_a)"></a> | ||
<th class="row"> | ||
<a href="https://yui.syui.ai"><span class="icon-ai"></span></a> | ||
</th> | ||
<td>yui</td> | ||
<td>不思議な力を持つアイのお話</td> | ||
<td>syui</td> | ||
<td>不思議な力を持つアイの話</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
@@ -104,6 +118,7 @@ import { | |
import 'hooper/dist/hooper.css'; | ||
import axios from 'axios' | ||
import moment from "moment"; | ||
import fs from 'fs'; | ||
var page = 21; | ||
var loc = window.location.pathname.split('/').slice(-1)[0]; | ||
|
@@ -120,14 +135,20 @@ export default { | |
}, | ||
data() { | ||
return { | ||
loc: window.location.pathname.split('/').slice(-1)[0], | ||
bsky_pds: "https://bsky.social/xrpc", | ||
bsky_handle: "yui.syui.ai", | ||
bsky_cursor: null, | ||
bsky_cid: "", | ||
bsky_json: null, | ||
bsky_url: null, | ||
api_url: null, | ||
api_json: null, | ||
comment_open: false, | ||
comment_first: null, | ||
loading: true, | ||
f: null, | ||
url_check: true, | ||
url: "/", | ||
s_a: 0, | ||
s_b: 2, | ||
|
@@ -152,6 +173,12 @@ export default { | |
}, | ||
load() { | ||
this.loading = false; | ||
}, | ||
axios_check(url) { | ||
axios.get(url) | ||
.catch(error => { | ||
this.url_check = false; | ||
}); | ||
} | ||
}, | ||
mounted() { | ||
|
@@ -175,7 +202,11 @@ export default { | |
let url = this.api_url + "/users/2/ma?itemsPerPage=4000"; | ||
axios | ||
.get(url,{ crossdomain: true }) | ||
.then(response => (this.api_json = response)); | ||
.then( | ||
response => {this.api_json = response | ||
this.comment_first = this.api_json.data[0] | ||
} | ||
); | ||
} | ||
}; | ||
</script> | ||
|
@@ -190,7 +221,7 @@ a { | |
} | ||
a span.icon-ai { | ||
color: #fff700; | ||
color: #ddd700; | ||
} | ||
.page_n{text-align:center;height:50px} | ||
|
@@ -211,7 +242,7 @@ a span.icon-ai { | |
} | ||
.hooper-progress-inner { | ||
background-color: #dcd500; | ||
background-color: #ddd700; | ||
} | ||
button { | ||
|
@@ -227,14 +258,14 @@ ul.hooper-track { | |
} | ||
.hooper-list img { | ||
width:500px; | ||
width:400px; | ||
border: solid 3px #313131; | ||
margin: 20px; | ||
} | ||
.page { | ||
text-align:center; | ||
background-color: rgba(184, 207, 224, .24); | ||
background-color: #f1f1f1; | ||
padding: 50px 0 50px 0; | ||
} | ||
|
@@ -267,12 +298,18 @@ table { | |
text-align: center; | ||
margin-left: auto; | ||
margin-right: auto; | ||
word-break: break-all; | ||
} | ||
thead, td, tr, th { | ||
padding:10px; | ||
.page_data table tbody > thead, td, tr, th { | ||
background: #fff; | ||
border: solid 1px #fff; | ||
padding: 15px 25px 15px 25px; | ||
} | ||
th.row { | ||
background: #313131; | ||
border:none; | ||
} | ||
footer { | ||
|
@@ -294,36 +331,73 @@ span.comment-time { | |
color: #999; | ||
} | ||
span.comment-time a { | ||
color: #999; | ||
} | ||
span.comment-time a:hover { | ||
color: rgb(16, 131, 254); | ||
} | ||
span.comment-handle { | ||
padding: 0 5px 0 5px; | ||
position: absolute; | ||
} | ||
span.comment-handle a { | ||
color: rgb(16, 131, 254); | ||
color: #313131; | ||
} | ||
img.comment { | ||
width:60px; | ||
} | ||
p.comment-body { | ||
padding: 5px 70px 5px 70px; | ||
padding: 5px 40px 15px 40px; | ||
border-bottom: solid 1px #eee; | ||
} | ||
span.comment-text { | ||
padding:10px; | ||
} | ||
span.comment { | ||
button.comment_open { | ||
padding:20px 40px 20px 40px; | ||
background-color: rgba(184,207,224,.24); | ||
border: none; | ||
margin:0; | ||
} | ||
button.comment_open:hover { | ||
color: rgb(16, 131, 254); | ||
} | ||
.comment_open { | ||
text-align: center; | ||
width: 100%; | ||
} | ||
.comment_open p a { | ||
color: rgb(16, 131, 254); | ||
} | ||
.bsky_comment { | ||
background-color: #fff; | ||
width: 600px; | ||
margin: 0px auto; | ||
border: solid 1px #eee; | ||
} | ||
.comment { | ||
background-color: #fff; | ||
} | ||
@media screen and (max-width:1000px) { | ||
img{ width:100%; } | ||
img { | ||
width:100%; | ||
} | ||
.bsky_comment { | ||
width:auto; | ||
} | ||
.page_title a img { | ||
width:100%; | ||
} | ||
|
@@ -338,5 +412,12 @@ span.comment { | |
p.comment-body { | ||
padding: 5px; | ||
} | ||
.page_data table tbody > thead, td, tr, th { | ||
padding:10px; | ||
} | ||
} | ||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:[email protected]&display=swap') | ||
/* color: #aba700 #fff700 #313131 rgba(184, 207, 224, .24) rgb(16, 131, 254) #ddd700 */ | ||
</style> |