-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
65 lines (61 loc) · 2.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>文書校正ツール</title>
</head>
<link rel="stylesheet" href="./assets/dist/vendor.bundle.css">
<style type="text/css">
/* https://jp.vuejs.org/v2/api/index.html#v-cloak */
[v-cloak] {
display: none;
}
</style>
<body>
<div id="vue" @dragleave.prevent @dragover.prevent @drop.prevent="onDrop" style="width:100vw;height:100vh">
<div class="text-center">
<button class="btn btn-primary btn-block" @click="openTextlintConfig()">設定ファイルを開く</button>
</div>
<div class="text-center" style="font-size:x-large;margin-top:2rem" v-if="!isUploading">
<span>ここにファイルをドラッグ&ドロップしてください</span>
</div>
<!-- スピナー -->
<div style="margin-top:2rem;" class="text-center">
<div class="spinner-border" v-cloak v-if="isUploading" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div class="alert alert-dark" role="alert" v-cloak v-if="hasFileName()"><b>{{fileName}}</b> を校正しました</div>
<ul class="list-group" v-if="ok">
<li class="list-group-item list-group-item-success" v-cloak>
<h3>エラーはありません。</h3>
</li>
</ul>
<ul class="list-group" v-else>
<li class="list-group-item list-group-item-danger" v-for="result in proofreadResults" v-cloak>
<h3>{{result.Description}}</h3>
<ul class="list-group">
<li class="list-group-item" v-for="violation in result.Violations" v-cloak>
<p>{{violation.Message}}</p>
<small class="text-muted">
<p v-highlight-range:[violation]>{{violation.ViolatedSection}}</p>
</small>
</li>
</ul>
</li>
</ul>
<p v-cloak style="white-space: pre;">{{errorMsg}}</p>
</div>
<style>
mark {
background: orange;
}
#dropzone {
text-align: center;
}
</style>
<script src="node_modules/mark.js/dist/mark.min.js"></script>
<script src="node_modules/vue/dist/vue.min.js"></script>
<script src="assets/dist/vendor.bundle.js"></script>
<script src="assets/dist/index.js"></script>
</body>
</html>