001/*
002 * Copyright (c) 2009 The openGion Project.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
013 * either express or implied. See the License for the specific language
014 * governing permissions and limitations under the License.
015 */
016package org.opengion.plugin.column;
017
018import org.opengion.fukurou.util.StringUtil;
019import org.opengion.fukurou.util.TagBuffer;
020import org.opengion.hayabusa.common.HybsSystem;
021import org.opengion.hayabusa.db.AbstractRenderer;
022import org.opengion.hayabusa.db.CellRenderer;
023import org.opengion.hayabusa.db.DBColumn;
024
025/**
026 * IMAGE レンデラは、value で指定したファイルをimgタグで表示する場合に
027 * 使用するクラスです。
028 * imgのサイズはレンデラーパラメータに、設定したい属性を記述します。
029 * 例えば、width='600px' height='450px' などです。
030 * src属性はvalueを設定し、<del>name属性はカラム名(複数行の場合は、行番号付きの名前)</del>
031 * alt属性は、そのままvalueを設定しておきます。
032 * img の親には、div要素と class=&quot;Renderer_IMAGE&quot; を付与しておきます。
033 *
034 * &lt;div class=&quot;Renderer_IMAGE&quot;&gt;
035 *     &lt;img src=&quot;valueの値&quot; alt=&quot;カラム名&quot; レンデラーパラメータ &gt;
036 * &lt;/div&gt;
037 *
038 * カラムの表示に必要な属性は、DBColumn オブジェクト より取り出します。
039 * このクラスは、DBColumn オブジェクト毎に1つ作成されます。
040 *
041 * @og.rev 7.4.2.0 (2021/04/30) 新規作成
042 * @og.group データ表示
043 *
044 * @version     7.4
045 * @author      Kazuhiko Hasegawa
046 * @since       JDK11.0,
047 */
048public class Renderer_IMAGE extends AbstractRenderer {
049        /** このプログラムのVERSION文字列を設定します。 {@value} */
050        private static final String VERSION = "8.5.3.0 (2023/09/08)" ;
051
052        private static final String DIV_ST = "<div class=\"Renderer_IMAGE\">";
053        private static final String DIV_ED = "</div>";
054
055        private String  name;
056        private String  param;
057
058        /**
059         * デフォルトコンストラクター。
060         * このコンストラクターで、基本オブジェクトを作成します。
061         *
062         */
063        public Renderer_IMAGE() { super(); }            // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。
064
065        /**
066         * DBColumnオブジェクトを指定したprivateコンストラクター。
067         *
068         * @og.rev 7.4.2.0 (2021/04/30) 新規作成
069         * @og.rev 8.5.3.0 (2023/09/08) DynamicAttributes対応
070         *
071         * @param       clm     DBColumnオブジェクト
072         */
073        private Renderer_IMAGE( final DBColumn clm ) {
074                // 6.4.1.1 (2016/01/16) PMD refactoring. It is a good practice to call super() in a constructor
075                super();
076
077                name  = clm.getName();
078
079//              param = StringUtil.nval( clm.getRendererParam(), null );        // 空文字列はあえてnullにする。
080//              param = StringUtil.nvalAdd( clm.getRendererParam() ,
081//                                                                      clm.getRendererAttributes().get( "optionAttributes" ) );
082                // 8.5.3.0 (2023/09/08) optionAttributesの使い方が分からない為、元に戻す
083                param = StringUtil.nval( clm.getRendererParam(), null );        // 空文字列はあえてnullにする。
084        }
085
086        /**
087         * 各オブジェクトから自分のインスタンスを返します。
088         * 自分自身をキャッシュするのか、新たに作成するのかは、各サブクラスの実装に
089         * まかされます。
090         *
091         * @param       clm     DBColumnオブジェクト
092         * @return      CellEditorオブジェクト
093         * @og.rtnNotNull
094         */
095        public CellRenderer newInstance( final DBColumn clm ) {
096                return new Renderer_IMAGE( clm );
097        }
098
099        /**
100         * データの表示用文字列を返します。
101         *
102         * @og.rev 7.4.2.0 (2021/04/30) 新規作成
103         *
104         * @param       value   入力値
105         * @return      データの表示用文字列
106         * @og.rtnNotNull
107         */
108        @Override
109        public String getValue( final String value ) {
110                return makeImae( name, value );
111        }
112
113        /**
114         * データの表示用文字列を返します。
115         *
116         * @og.rev 7.4.2.0 (2021/04/30) 新規作成
117         *
118         * @param       row             行番号
119         * @param       value   入力値
120         * @return      データ表示用の文字列
121         * @og.rtnNotNull
122         */
123        @Override
124        public String getValue( final int row,final String value ) {
125                final String newName = name + HybsSystem.JOINT_STRING + row;
126                return makeImae( newName, value );
127        }
128
129        /**
130         * データ出力用の文字列を作成します。
131         * ファイル等に出力する形式を想定しますので、HTMLタグを含まない
132         * データを返します。
133         * 基本は、#getValue( String ) をそのまま返します。
134         *
135         * @og.rev 7.4.2.0 (2021/04/30) 新規作成
136         *
137         * @param       value   入力値
138         * @return      データ出力用の文字列
139         * @og.rtnNotNull
140         * @see         #getValue( String )
141         */
142        @Override
143        public String getWriteValue( final String value ) {
144                return value == null ? "" : value;
145        }
146
147        /**
148         * データの表示用文字列を返します。
149         *
150         * @og.rev 7.4.2.0 (2021/04/30) 新規作成
151         * @og.rev 8.5.3.0 (2023/09/08) HTML5廃止対応
152         *
153         * @param       name    カラム名
154         * @param       value   入力値 表示するファイルのアドレス
155         * @return      データ表示用の文字列
156         * @og.rtnNotNull
157         */
158        private String makeImae( final String name,final String value ) {
159                return DIV_ST
160                        +       new TagBuffer( "img" )
161//                                      .add( "name"    , name  )                               // 8.5.3.0 (2023/09/08) Delete
162                                        .add( "src"             , value )
163//                                      .add( "alt"             , value )
164                                        .add( "alt"             , name  )                               // 8.5.3.0 (2023/09/08) Modify
165                                        .addOptions( param              )                               // タグの属性として追加。nullの場合は、何もしない。
166                                        .makeTag()
167                        +       DIV_ED;
168        }
169}