見える文字数カウンター
ページの右下にうっすら見える文字数カウンターを置いてみるよ!
https://gyazo.com/737ce46a6c5d4e004bb62e0a1b281d99
カウンターは、
縦スクロールがあるときも常に右下にいて、
カーソルを乗せると色が濃くなって、文字数・単語数・行数をポップアップするよ!
この文字数やら単語数やらは、記法用の記号もお構いなしに数え上げることに注意してね。
記法で修飾するとそのぶん文字数が増えるってことなので、純粋に字数だけカウントしたいときは記法は不使用で。
記法抜きで、見た目のテキストを数えるようにした! 2017-12-07
words (語数) は「空白で区切られた語」として数えるよ。
ハイフンとかスラッシュで繋がった単語でも「1語」です。
たとえばURLは、どんなに長くても空白なしで繋がってるので1語。
chars (字数) は空白は無視して1字ずつ数えるよ。
https://gyazo.com/fb6b8f07f725402a87e9e35bf3da946e
文字数カウンターは元々shokaiさん/shokai/shokai.iconの /shokai/文字カウント があったので、参考にさせていただきました。 Chrome系のブラウザで動作確認したよ。
code:インポート例.css
@import "/api/code/scrasobox/見える文字数カウンター/style.css";
code:インポート例.js
import "/api/code/scrasobox/見える文字数カウンター/script.js";
code:style.css
/* カウンターのスタイル */
cursor: pointer; font: 88%/1 monospace;
opacity: .35; /* ←マウスを乗せてないときの濃さ 35% */
transition: opacity .2s ease-out }
#__charCounter__ { z-index: 30; position: sticky; bottom: 0; text-align: right } /* ポップアップのスタイル */
z-index: 30; position: absolute; bottom: 2em; right: -1em;
border-radius: .25em; border: 1px solid #ddd; box-shadow: 0 0 8px 1px rgba(8,8,8,.1); padding: .8em; background-color: azure; color: #5F9EA0; font: 13.5px/1.4 monospace; transition: opacity .3s ease-out }
/* プレゼンモードのときは非表示にする */
code:script.js
const __appliedProject__ = scrapbox.Project.name
const __charCounterSetup__ = setInterval(function() {
// ページが準備できるのを待ちたいので、スクリプトがロードされてから3秒くらいしたら処理開始↓↓
if (document.getElementById('editor') && scrapbox.Page.lines)
clearInterval(__charCounterSetup__)
else
return // ページの準備ができてないときはまた3秒待つ
// 下準備
const $id = id => document.getElementById(id)
const $query = q => document.querySelector(q)
const fmt = n => new Intl.NumberFormat('en-US').format(n).padStart(6)
// 文字数カウンター表示用のエレメントを作ってく
const linesText = $query('.lines').innerText.trim()
const chars = linesText.split(/\s+/).join('').length
var counterWrapper = document.createElement('div')
counterWrapper.id = '__charCounter__'
counterWrapper.innerHTML = <span>${fmt(chars)} chars</span> +
'<pre id="__charCounterPopup__" style="opacity:0"></pre>'
$id('editor').appendChild(counterWrapper)
const counter = $query('#__charCounter__ span')
const popup = $id('__charCounterPopup__')
// 文字数カウンターにマウスカーソルを乗せたときに詳細をポップアップする
counter.addEventListener('mouseover',
function() {
const linesText = $query('.lines').innerText.trim()
const chars = linesText.split(/\s+/).join('').length
const words = linesText.split(/\s+/).length
popup.innerHTML = ${fmt(chars)} chars\n +
${fmt(words)} words\n +
${fmt(scrapbox.Page.lines.length)} lines
popup.style.opacity = 1
})
// 文字数カウンターからマウスカーソルが離れたら詳細ポップアップを見えなくする
counter.addEventListener('mouseout', function() { popup.style.opacity = 0 })
// 文字数のみを数え直す関数
const updateCounter = function() {
if ($query('.presentation')
|| scrapbox.Project.name !== __appliedProject__) {
// プレゼンモードになってたり、よそのプロジェクトを表示してたら文字数カウンターを非表示にする
counterWrapper.style.display = 'none'
} else if (scrapbox.Page.lines) {
// ここで数え直ししてます
const linesText = $query('.lines').innerText.trim()
const chars = linesText.split(/\s+/).join('').length
counter.innerText = ${fmt(chars)} chars
counterWrapper.style.display = 'block'
}
}
// 数え直すタイミングは、テキスト入力時とペースト時
$id('text-input').addEventListener('input', updateCounter)
$id('text-input').addEventListener('paste', updateCounter)
// 何もしなくても3秒ごとに数え直す
setInterval(updateCounter, 3000)
}, 3000)
2017-11-30 カウンターを設置していないプロジェクトの閲覧中は、カウンターが非表示になるようにした
2017-12-07 カウンターが表示されないことがあったのを修正 & 記法抜きのテキストを数えるようにした
2017-12-08 カウンターの表示判定を修正 & プレゼンモードのときはカウンターが非表示になるようにした
2017-12-27 Scrapboxのアップデート後、文字数カウンターのポップアップ位置が変わってしまってたのを直した
2018-04-18 カウンターが通信ステータスよりも上に表示されてたのを修正
2018-05-16 プレゼンモード回避用のCSSを修正
2018-07-11 空の行を1語として数えてしまってたのを直した