-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtextareaHighlighter.html
195 lines (168 loc) · 6.04 KB
/
textareaHighlighter.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="ja">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title></title>
<!-- JSライブラリ -->
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="jquery-ui-1.12.1/jquery-ui.min.js"></script>
<!-- CSSライブラリ -->
<link rel="stylesheet" href="reset.css">
<style>
body {
background-color: #EDFAF7;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.forbidden-word-alert {
color: red;
display: none;
}
.forbidden-word {
background-color: lightpink;
}
.text-highlighter-wrap {
position: relative;
}
.text-highlight-container {
position: absolute;
color: lightcoral; /* テスト用 */
/* color: transparent; 本番用 */
width: 100%;
background-color: white;
/* 以下はチューニング部分 */
font-size: initial;
line-height: 20px;
}
.text-highlighter {
white-space: pre-wrap; /* これを指定するとテキストエリアの改行がdivに反映される */
word-wrap: break-word;
padding: 2px;
}
#textarea textarea {
position: relative;
z-index: 1;
resize: none;
background-color: transparent;
/* 以下はチューニング部分 */
height: 100px;
padding: 2px;
font-size: initial;
line-height: 20px;
overflow-y: hidden;
}
</style>
</head>
<body>
<div>
<button id="insert-value">値を挿入</button>
<div id="textarea">
<textarea name="test" class="textarea" cols="100">テスト圧倒的</textarea>
</div>
</div>
</body>
<script>
// 禁止語
var forbiddenWords = ['日本一', '圧倒的', '一番'];
// 使用制限語の正規表現
var forbiddenWordsRegex = forbiddenWords.join('|');
forbiddenWordsRegex = new RegExp(forbiddenWordsRegex, 'g');
// チェック対象のフォーム
var ForbiddenWordCheckFroms = '#textarea textarea';
// アラートメッセージを追加
$(ForbiddenWordCheckFroms).before(`
<div class="forbidden-word-alert">
<small>あかんで!!!!</small>
</div>
`);
// テキストエリアをラップ
$(ForbiddenWordCheckFroms).wrap('<div class="text-highlighter-wrap"></div');
// ハイライトコンテナとハイライターを追加
$('.text-highlighter-wrap').prepend(`
<div class="text-highlight-container">
<div class="text-highlighter">
</div>
</div>
`);
// 初期表示
$(ForbiddenWordCheckFroms).each(function () {
// 禁止語のチェック
checkForbiddenWords($(this), forbiddenWordsRegex);
// テキストエリアのリサイズ
resizeTextarea($(this));
})
// キー操作
$(ForbiddenWordCheckFroms).on('keyup keydown', function(){
// 禁止語のチェック
checkForbiddenWords($(this), forbiddenWordsRegex);
// テキストエリアのリサイズ
resizeTextarea($(this));
});
// ペースト
$(ForbiddenWordCheckFroms).on('paste', function(){
// ペーストはタイミングを遅らせる
setTimeout(() => {
checkForbiddenWords($(this), forbiddenWordsRegex);
// テキストエリアのリサイズ
resizeTextarea($(this));
}, 10);
});
// ボタンクリック
$('#insert-value').on('click', function () {
setTimeout(() => {
$(ForbiddenWordCheckFroms).each(function () {
// 禁止語のチェック
checkForbiddenWords($(this), forbiddenWordsRegex);
// テキストエリアのリサイズ
resizeTextarea($(this));
})
}, 10);
});
// テスト用
$('#insert-value').on('click', function () {
var str = '圧倒的、日本一、一番';
$('#textarea textarea').val(str);
})
function checkForbiddenWords(that, forbiddenWordsRegex) {
var str = that.val();
var forbiddenWordAlert = that.parents('.text-highlighter-wrap').prev('.forbidden-word-alert');
var textHighlighter = that.prev('.text-highlight-container').children('.text-highlighter');
// test()にはlastIndex問題があるので、毎回オブジェクトを生成するか、matchを利用する
// var regex = new Regexp(forbiddenWords)
// var isForbiddenWordsInStr = forbiddenWordsRegex.test(str);
var forbiddenWordsInStr = str.match(forbiddenWordsRegex);
if (forbiddenWordsInStr !== null && forbiddenWordsInStr.length > 0) {
// アラートメッセージを表示
if (forbiddenWordAlert.css('display') === 'none') {
forbiddenWordAlert.css('display', 'inline');
}
str = highlightText(str, forbiddenWordsInStr);
// アラートメッセージを消す
} else if (forbiddenWordAlert.css('display') === 'inline') {
forbiddenWordAlert.css('display', 'none');
}
textHighlighter.html(str);
}
function highlightText (str, forbiddenWordsInStr) {
$.each(forbiddenWordsInStr, function (i, e) {
var replaceStr = '<span class="forbidden-word">'+e+'</span>';
str = str.replace(e, replaceStr);
})
return str;
}
function resizeTextarea(that) {
var textHighlighterWrap = that.parents('.text-highlighter-wrap');
var textHighlighterHeight = that.prev('.text-highlight-container').children('.text-highlighter').outerHeight();
if (textHighlighterHeight > 100) {
// divのテキストとtextareaのテキストがずれないように高さを調整する(プラスするpx数はチューニング必要)
textHighlighterWrap.children().css('height', (textHighlighterHeight + Number(20)) + 'px');
} else {
textHighlighterWrap.children().css('height', '100px');
}
}
</script>
</html>