0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Redmineのプラグイン「view_customize」で書いたHTML、JavaScript、CSSのコードを自動整形させる

Posted at

概要

Redmineのプラグイン「view_customize」ではHTML、JavaScript、CSSを使って画面を自由にカスタマイズすることができますが、
そのview_customizeを使ってview_customizeに書いたコードの整形(フォーマット)を行います。

このように書いたコードが、

スクリーンショット 2020-02-03 22.56.32.png

このように整形された形になります。

スクリーンショット 2020-02-03 22.57.55.png

view_customize設定

Redmineの構築とview_customizeの導入は完了済みとして進めます。

メニューの管理から表示のカスタマイズを選択して新規で追加します。

パスのパターン:/view_customizes/*

挿入位置:全ページのヘッダ

種別:HTML

コード:

<script src="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.10.2/beautify.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.10.2/beautify-css.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.10.2/beautify-html.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.10.2/beautify.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.10.2/beautify-css.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.10.2/beautify-html.min.js"></script>

<script src="https://cdn.rawgit.com/beautify-web/js-beautify/v1.10.2/js/lib/beautify.js"></script>
<script src="https://cdn.rawgit.com/beautify-web/js-beautify/v1.10.2/js/lib/beautify-css.js"></script>
<script src="https://cdn.rawgit.com/beautify-web/js-beautify/v1.10.2/js/lib/beautify-html.js"></script>

<script>
    $(document).ready(function() {
        const code_text = $('#view_customize_code');
        if (code_text[0]) {
            code_text.blur(function() {
                const text = $(this).val();
                let format_text = '';
                const type = $('#view_customize_customize_type').val();
                if (type === 'javascript') {
                    $(this).val(js_beautify(text, {}));
                } else if (type === 'css') {
                    $(this).val(css_beautify(text, {}));
                } else if (type === 'html') {
                    $(this).val(html_beautify(text, {}));
                }
            });
        }
    });
</script>

こんな感じで設定を行なって保存します。

スクリーンショット 2020-02-03 23.07.02.png

これでコードの入力エリアからフォーカスが外れた時に、自動でコードの整形を行うようになります。

フォーマット処理はCDNで読み込んだjs-beautifyを使っています。
また、種別の値を確認してそれぞれの言語に合わせてフォーマットが行われるようにしています。

0
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?