-
Notifications
You must be signed in to change notification settings - Fork 0
/
MdIndexCreater.ts
453 lines (444 loc) · 11.8 KB
/
MdIndexCreater.ts
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
/**
* Headword
*/
class Headword {
private sharpCount: number;
private headword: string;
private headwordNumber: number;
static headwordCount: number = 0;
public static HEADWORD_TARGET_TAG = '<a class="headword" name ="';
public static HEADWORD_LINKED_TAG = '<a class="linkedText" href ="#';
/**
* コンストラクターです。
*/
constructor(sharpCount, str) {
this.sharpCount = sharpCount;
this.headword = str.replace(/^#+\s+/g, "");
Headword.headwordCount++;
this.headwordNumber = Headword.headwordCount;
}
/**
* 文字列を検査し見出しであればheadwordのインスタンスを生成し返す。 それ以外であればnullを返す
*
* @param line
* @return
*/
public static getHeadword(line) {
if (line.match(/^#+\s+.*/g)) {
var sharp: string = line.match(/^#+/);
return new Headword(sharp[0].length, line);
}
return null;
}
/**
* 見出しを目次に変換して返す
* @return
*/
public getHeadline() {
var sb = "";
if (this.headwordNumber !== 1) {
for (var i = 1; i < this.sharpCount; i++) {
sb += " ";
}
}
sb += "* [" + this.headword + "](#" + this.headwordNumber + "_" + this.headword + ")";
return sb;
}
/**
* 見出しをタグがついたテキストに変換して返す
* @return
*/
public getTaggedText() {
var sb = "";
sb += Headword.HEADWORD_TARGET_TAG;
sb += this.headwordNumber;
sb += "_";
sb += this.headword;
sb += "\"></a>";
return sb;
}
/**
* リンクがついたテキストを返します。
* 本文中で使うテキストです。
*/
public getLinkedText() {
var sb = Headword.HEADWORD_LINKED_TAG;
sb += this.headwordNumber;
sb += "_";
sb += this.headword;
sb += '">' + this.headword;
sb += '</a>';
return sb;
}
/**
* 見出しをシャープを除いて返す
* @return
*/
public getHeadword() {
return this.headword;
}
/**
* sharpの数を返す
*/
public getSharpCount() {
return this.sharpCount;
}
/**
* 見出し番号を返す
*/
public getHeadwordNumber() {
return this.headwordNumber;
}
/**
* 見出しがいくつ生成されたかを返す
* @return
*/
public static getHeadwordCount() {
return Headword.headwordCount;
}
private static addHeadwordCount() {
Headword.headwordCount++;
}
}
class TextConverter {
/**
* 目次開始タグ
*/
public static HEADLINE_START_TAG = '<a name="mokuji_headline"></a>';
/**
* 目次終了タグ
*/
public static HEADLINE_END_TAG = '<a name="mokuji_headline_end"></a>'
/**
* Topへ戻るボタン
*/
public static TO_TOP_BUTTON: string = '<div class="to_top" style="text-align:right;">[TOPへ](#mokuji_headline)</div>';
/**
* 目次のテキストデータ
*/
private headline: string[] = [];
/**
* 目次用HTMLタグを付加した本文
*/
private taggedText: string[] = [];
/**
* 変換後のテキストデータ
*/
private textArrayText: string[] = [];
/**
* コメントアウトの識別子
*/
private COMMENT_OUT_MARKS = ["```", "~~~"];
/**
* コメントアウト時の識別子を保持する文字列
*/
private comment: RegExp = null;
/**
* 目次の挿入位置
*/
private lineCountInsertedHeadline = 0;
/**
* 見出しリスト
*/
private headwordList: Headword[] = [];
/**
* 与えられた文字列のリストを先頭から解析し、見出しがある場合、目次に変換しタグ付けし変換する。
* @param beforeText 変換前の文字列リスト
* @param maxSharpCount 判定する見出しレベル(#の数)
* @param ignoreFirstNumber 先頭から数えて変換除外する行数
* @param ignoreLastNumber 最終行から数えて変換除外する行数
*/
// public constructor(beforeText, maxSharpCount, ignoreFirstNumber, ignoreLastNumber) {
public constructor(beforeText, maxSharpCount) {
var textSize = beforeText.length;
for (var i = 0; i < beforeText.length; i++) {
var line: string = beforeText[i];
// 無視する行か判定
// if (i+1 <= ignoreFirstNumber || (textSize - ignoreLastNumber) < i+1) {
// this.taggedText.push(line);
// continue;
// }
// コメントアウトかどうかチェック
if (!this.isCommentOut(line)) {
this.checkIsHeadword(line, maxSharpCount);
}
this.taggedText.push(line);
}
if (this.headline.length > 1) {
this.headline.push(TextConverter.HEADLINE_END_TAG)
this.headline.push(""); // 目次の後に改行を挿入
}
this.textArrayText = this.headline.concat(this.taggedText);
}
/**
* lineからHeadwordを作成し、nullでなければ変換を行う
* @param line 元のテキスト1行
* @param maxSharpCount 変換対象の見出しレベル(#の数)
*/
private checkIsHeadword(line, maxSharpCount) {
var headword = Headword.getHeadword(line);
if (headword != null) {
if (headword.getSharpCount() <= maxSharpCount) {
this.headwordList.push(headword);
if (headword.getHeadwordNumber() == 1) {
this.lineCountInsertedHeadline = this.taggedText.length;
this.headline.push(TextConverter.HEADLINE_START_TAG);
}
this.headline.push(headword.getHeadline());
this.taggedText.push("");
this.taggedText.push(TextConverter.TO_TOP_BUTTON);
this.taggedText.push("");
this.taggedText.push(headword.getTaggedText());
}
}
}
/**
* 変換したtextを返す
*
* @return ArrayList<String> 変換したtext
*/
public gettextArrayText() {
return this.textArrayText;
}
/**
* 変換してtextをstringに変換してかえす
*/
public gettextArrayTextToString() {
var str: string;
for (var i = 0; i < this.textArrayText.length; i++) {
str += this.textArrayText[i];
str += "\n"
}
return str;
}
/**
* コメントアウト中かチェック
* @param line
* @return
*/
private isCommentOut(line) {
if (this.comment == null) {
for (var i = 0; i < this.COMMENT_OUT_MARKS.length; i++) {
var regexp = new RegExp("^" + this.COMMENT_OUT_MARKS[i] + '(.*)');
if (line.match(regexp)) {
this.comment = regexp;
return true;
}
}
return false;
} else {
//コメントアウト中
//識別子が等しければnullに戻してコメントアウト終了
if (line.match(this.comment)) {
this.comment = null;
return false;
}
return true;
}
}
/**
* Headwordのリストを返す
*/
public getHeadwordList() {
return this.headwordList;
}
/**
* タグ付きの本文を返す
*/
public getTaggedText() {
return this.taggedText;
}
/**
* もくじを返す
*/
public getHeadline() {
return this.headline;
}
}
class TextReader {
/**
* 読み込んだテキストデータです。
*/
private text: string;
/**
* テキストデータの配列です
*/
private textArray: string[];
/**
* 改行コードです。
*/
public static lineSeparater: string;
/**
* コンストラクターです。
*/
public constructor(textArea) {
if (textArea !== null) {
this.text = textArea.value;
this.findLineSeparater();
// TextReader.lineSeparater ="\n";
if (TextReader.lineSeparater == null) {
return null;
}
this.convertToArray();
return this;
}
return null;
}
/**
* テキストを配列に変換します。
*/
public convertToArray() {
this.textArray = this.text.split(TextReader.lineSeparater);;
}
/**
* 改行コードを検索します。
*/
public findLineSeparater() {
if (this.text.match(/\n\r/)) {
TextReader.lineSeparater = "\n\r";
return;
}
if (this.text.match(/\n/)) {
TextReader.lineSeparater = "\n";
return;
}
var r = this.text.match(/\r/);
if (r !== null) {
TextReader.lineSeparater = "\r";
return;
}
}
public getLineSeparater() {
return TextReader.lineSeparater;
}
public getTextArray() {
return this.textArray;
}
}
/**
* TextAnalyser
*/
class TextAnalyser {
private textArray: string[];
constructor(textData: string[]) {
this.textArray = textData;
}
public getMarkText(headwordList: Headword[], hIndex) {
for (var i = 0; i < this.textArray.length; i++) {
var line = this.textArray[i];
var tagmaccher = RegExp(Headword.HEADWORD_TARGET_TAG, `i`)
if (line.match(/^#+\s+.*/) === null && line.match(tagmaccher) === null) {
for (var j = 0; j < headwordList.length; j++) {
var headword = headwordList[j];
var reg = RegExp(headword.getHeadword(), 'g');
if (line.match(reg)) {
this.textArray[i] = line.replace(reg, headword.getLinkedText());
}
}
}
}
return this.textArray;
}
}
/**
* TextArea
*/
class TextArea {
private text: string;
private textArea;
constructor(textArea) {
this.textArea = textArea;
this.text = textArea.value;
}
public getText() {
return this.text;
}
public getTextArea() {
return this.textArea;
}
public setTextArea(text: string) {
this.textArea.value = text;
}
public reset() {
this.textArea.value = this.text;
}
}
function main(h: number, markedh: number) {
var active_element = document.activeElement;
var tagname = "editor";
var target = null;
if (active_element.tagName === "TEXTAREA" || active_element.tagName === "textarea") {
target = active_element;
} else {
target = document.getElementById("editor");
}
if (target === null) {
alert("変換対象が見つかりません\nテキストエリアを選択するか\nIDがeditorのテキストエリアが存在するページで実行してください");
return;
}
var textArea = new TextArea(target);
var textReader = new TextReader(textArea.getTextArea());
var textArray: string[] = textReader.getTextArray();
var outputArray: string[];
var headlineStart: number = textArray.indexOf(TextConverter.HEADLINE_START_TAG);
if (headlineStart !== -1) {
//目次終了タグを検知
var headlineEnd = textArray.indexOf(TextConverter.HEADLINE_END_TAG);
if (headlineEnd === -1) {
alert('目次の終了タグ\n\n' + TextConverter.HEADLINE_END_TAG + '\n\nが見つかりません\n\n目次終了タグを挿入してください');
return;
}
if (headlineEnd - headlineStart < 1 || headlineEnd > textArray.length) {
alert('目次の終了タグ\n\n' + TextConverter.HEADLINE_END_TAG + '\n\nの位置が不正です\n\n正しい場所に挿入してください');
return;
}
//目次とその後の空白を削除
textArray.splice(headlineStart, headlineEnd - headlineStart + 1);
while (textArray[0] === "") {
textArray.splice(0, 1);
}
//見出しのリンク元とリンク先を削除
var targetReg = RegExp("^" + Headword.HEADWORD_TARGET_TAG + ".*");
textArray = textArray.filter(function (value) { return value.match(targetReg) === null });
var headwordReg = RegExp(Headword.HEADWORD_LINKED_TAG + ".*?>(.*?)</a>", "g");
textArray = textArray.map(function (value, index, arr) {
if (value.match(headwordReg)) {
return value.replace(headwordReg, "$1");
} else {
return value;
}
})
var index = textArray.indexOf(TextConverter.TO_TOP_BUTTON);
while (index != -1) {
textArray.splice(index, 1);
if (textArray[index] === "") {
textArray.splice(index, 1);
}
if (textArray[index - 1] === "") {
textArray.splice(index - 1, 1);
}
index = textArray.indexOf(TextConverter.TO_TOP_BUTTON)
}
outputArray = textArray;
} else {
var textConverter = new TextConverter(textReader.getTextArray(), h);
var headline = textConverter.getHeadline();
var taggedText = textConverter.getTaggedText();
//目次を入れるか
if (0 < markedh && markedh < 7) {
var textAnalyser = new TextAnalyser(taggedText);
var main = textAnalyser.getMarkText(textConverter.getHeadwordList(), markedh);
outputArray = headline.concat(main);
} else {
outputArray = textConverter.gettextArrayText();
}
}
textArea.setTextArea(outputArray.join(TextReader.lineSeparater));
if (textArea.getTextArea().id === "editor") {
var doPreview = doPreview || null;
if (doPreview != null) {
doPreview();
}
}
}
main(6, 6);