-
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
8 changed files
with
118 additions
and
87 deletions.
There are no files selected for viewing
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -9,14 +9,14 @@ | |
</head> | ||
<body> | ||
<pre> | ||
<code id="code"> | ||
<code id="code" class="code"> | ||
</code> | ||
</pre> | ||
<button id="button" class="btn btn-success" onclick="copy()" data-clipboard-target="#code" data-clipboard-action="copy">一键复制</button> | ||
<button class="btn btn-success button" data-clipboard-target="#code" data-clipboard-action="copy">一键复制</button> | ||
<script src="js/prism.js"></script> | ||
<script src="js/jquery-3.6.0.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/clipboard.min.js"></script> | ||
<script src="js/code.js"></script> | ||
<script src="https://cdn.bootcdn.net/ajax/libs/toastr.js/latest/js/toastr.min.js"></script><script src="js/prism-java.min.js"></script> | ||
<script src="https://cdn.bootcdn.net/ajax/libs/toastr.js/latest/js/toastr.min.js"></script> | ||
<script src="js/code.js" type="module"></script> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import {copy, getQueryVariable} from './utils.js' | ||
|
||
$(document).ready(()=>{ | ||
let all = $("#all"); | ||
let body = $("body"); | ||
let set = new Set(); | ||
let id = getQueryVariable("id"); | ||
|
||
$.ajax({ | ||
url: "/selectList?id=" + id, | ||
success: (result) => { | ||
console.log(result.type); | ||
let len = result.type.length; | ||
let type = result.type; | ||
let date = result.date; | ||
let time_id = result.time_id; | ||
let text = result.text; | ||
let remark = result.remark; | ||
for (let i = 0; i < len; i ++){ | ||
all.append("<details><summary>"+ date[i] +" " + time_id[i] + " " + remark[i] + "</summary>" + | ||
"<pre><code class='language-"+ type[i] +"'>"+ text[i] +"</code></pre></details>"); | ||
if (!set.has(type[i])){ | ||
switch (type[i]){ | ||
case "java": | ||
body.append('<script src="js/prism-java.min.js"></script>'); | ||
break; | ||
case "cpp": | ||
body.append('<script src="js/prism-c.min.js"></script>'); | ||
body.append('<script src="js/prism-cpp.min.js"></script>'); | ||
break; | ||
case "python": | ||
body.append('<script src="js/prism-python.min.js"></script>'); | ||
} | ||
set.add(type[i]); | ||
} | ||
} | ||
Prism.highlightAll(); | ||
} | ||
}) | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export function copy(id){ | ||
let clipboard = new ClipboardJS('.button'); | ||
clipboard.on('success', (e)=>{ | ||
e.clearSelection(); | ||
// 释放内存,否则会多复制 | ||
clipboard.destroy(); | ||
toastr.success("复制成功,快去站贴吧!"); | ||
}); | ||
|
||
clipboard.on('error', (e)=>{ | ||
toastr.error("一键复制失败,请手动复制!"); | ||
}) | ||
} | ||
export function getQueryVariable(variable){ | ||
let query = window.location.search.substring(1); | ||
let vars = query.split("&"); | ||
for (let i = 0; i < vars.length; i ++){ | ||
let pair = vars[i].split("="); | ||
if (pair[0] === variable) return pair[1]; | ||
} | ||
return false; | ||
} |
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