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.hayabusa.common.HybsSystem;
019// import org.opengion.hayabusa.db.AbstractEditor;
020import org.opengion.hayabusa.db.CellEditor;
021import org.opengion.hayabusa.db.DBColumn;
022// import org.opengion.fukurou.util.XHTMLTag;
023// import org.opengion.fukurou.util.TagBuffer;
024// import org.opengion.fukurou.util.StringUtil;                                                                 // 8.0.2.0 (2021/11/30) Add
025
026// import static org.opengion.fukurou.util.StringUtil.isNull;                                   // 8.5.4.2 (2024/01/12) import static … を個別に記述;
027
028/**
029 * YMD エディターは、カラムのデータを日付(年/月/日)編集する場合に使用するクラスです。
030 * YMD2はカレンダーのポップアップボタンが付属するタイプです。
031 *
032 * このエディタはeventColumnに対応していません。
033 *
034 * カラムの表示に必要な属性は、DBColumn オブジェクト より取り出します。
035 * このクラスは、DBColumn オブジェクト毎に1つ作成されます。
036 *
037 * 8.0.2.0 (2021/11/30)
038 * カラムのパラメータの情報より、日付送り戻しの機能が使えます。
039 * 例:D-1,D0,D+1 or D-1,D0,D+1,true
040 *
041 * 第一引数は、日付戻しを指定します。
042 * 第二引数は、初期化します。
043 * 第三引数は、日付送りを指定します。
044 * 第四引数は、検索ボタンを押すか押さないか[true/false]を指定します。 (初期値:false)
045 *
046 * 日付についての加減算処理を行うためのコマンドを指定します。
047 *  ・SYXX :年の最初の日付を指定の分だけ進めます。(SY-1なら先年の1月1日、SY1なら翌年の1月1日)
048 *  ・SDXX :月の最初の日付を指定の分だけ進めます。(SD-1なら先月の1日、SD1なら翌月の1日)
049 *  ・SWXX :週初め(月曜日)を指定の分だけ進めます。(SW-1なら先週の月曜日、SW1なら翌週の月曜日)
050 *  ・EYXX :年の最後の日付を指定の分だけ進めます。(EY-1なら先年の年末、EY1なら翌年の年末)
051 *  ・EDXX :月の最後の日付を指定の分だけ進めます。(ED-1なら先月の月末、ED1なら翌月の月末)
052 *  ・EWXX :週末(日曜日)を指定の分だけ進めます。(EW-1なら先週の日曜日、EW1なら翌週の日曜日)
053 *  ・YXX  :年を指定の分だけ進めます。(Y-1なら1年前、Y1なら1年後)
054 *  ・MXX  :月を指定の分だけ進めます。(M-1なら1月前、M1なら1月後)
055 *  ・DXX  :日を指定の分だけ進めます。(D-1なら1日前、D1なら1日後)
056 *  ※ 数字がゼロのコマンドは初期化します。
057 *  ※ 数字がないコマンドはサーバー上のシステム日付をセットします。
058 *
059 * @og.rev 3.5.6.2 (2004/07/05) 新規作成
060 * @og.rev 5.4.3.6 (2012/01/19) コメント修正
061 * @og.rev 5.6.5.2 (2013/06/21) ポップアップ変更
062 * @og.rev 5.9.4.0 (2016/01/08) type=button追加,背景色transparent
063 * @og.rev 5.9.4.3 (2016/01/15) buttonのpadding:0
064 * @og.rev 7.3.2.3 (2021/04/09) システム定数のICON_DIRやIMAGE_DIRを使用します。
065 * @og.rev 8.0.2.0 (2021/11/30) 日付送り戻し対応
066 * @og.rev 8.1.2.3 (2022/05/20) 日付送り戻し不具合対応(useDateFeed 属性追加)
067 * @og.rev 8.5.6.1 (2024/03/29) Editor_YMD を継承します。
068 *
069 * @og.group データ編集
070 *
071 * @version  4.0
072 * @author   Kazuhiko Hasegawa
073 * @since    JDK5.0,
074 */
075// public class Editor_YMD2 extends AbstractEditor {
076public class Editor_YMD2 extends Editor_YMD {
077        /** このプログラムのVERSION文字列を設定します。 {@value} */
078        private static final String VERSION = "8.5.6.1 (2024/03/29)" ;
079
080        // 5.6.5.2 (2013/06/21) htmlからjspに変更
081        // 6.0.2.5 (2014/10/31) height,width に、"px"を追加
082        // 5.9.4.0 (2016/01/09) type=button追加
083        // 6.5.0.1 (2016/10/21) サイズ変更 '250px','265px' → '265px','260px'
084        // 4.3.6.7 (2009/05/22) FireFox対応
085        // 5.9.4.0 背景色transparent 5.9.4.3 padding
086        // 6.4.2.0 (2016/01/29) alt属性にtitle属性を追記。
087
088//      8.5.6.1 (2024/03/29) 継承元と同じなので削除
089//      // 8.0.2.0 (2021/11/30) 日付送り戻し対応
090//      private static final int CNT_ARY                = 3;
091//      private static final String JSP_ICON    = HybsSystem.sys( "JSP_ICON" ) ;
092//      private static final String FR_STR              = "<a href=\"#\" onclick=\"dateFeedRtn('%1$s','%2$s','%3$s','%4$s','%5$s');\" style=\"margin:0 5px 0 3px\" >";
093//      private static final String FR_END              = "<img src=\"" + JSP_ICON + "/%6$s\" alt=\"%4$s\" title=\"%4$s\" /></a>";
094//      private static final String[] FR_IMG    = { "FR_PREV.png", "FR_CIRCLE.png", "FR_NEXT.png" };
095
096        /** 7.3.2.3 (2021/04/09) システム定数のICON_DIRやIMAGE_DIRを使用します。 */
097        private static final String JSP      =  HybsSystem.sys( "JSP" ) ;
098        private static final String JSP_ICON    = HybsSystem.sys( "JSP_ICON" ) ;
099
100//      private static final String CAL1 = "<button type=\"button\" onclick=\"ogPopup('../common/calendar.jsp','265px','260px',null,this,new Array('" ;
101        private static final String CAL1 = "<button type=\"button\" onclick=\"ogPopup('" + JSP + "/common/calendar.jsp','265px','260px',null,this,new Array('" ;
102
103        // 6.8.5.0 (2018/01/09)
104//      private static final String CAL3 = "<button type=\"button\" onclick=\"ogPopup('../common/calendar_3month.jsp','320px','770px',null,this,new Array('" ;
105        private static final String CAL3 = "<button type=\"button\" onclick=\"ogPopup('" + JSP + "/common/calendar_3month.jsp','320px','770px',null,this,new Array('" ;
106
107        // 6.8.5.0 (2018/01/09) とりあえず、CAL1 と CAL3 しかないので、決め打ち
108        // 6.9.8.0 (2018/05/28) キーワード変更(CAL_ST → CAL_STR)
109        private static final String CAL_STR = "CAL1".equals( HybsSystem.sys( "CALENDAR_POPUP_TYPE" ) ) ? CAL1 : CAL3 ;
110
111//      // 6.8.5.0 (2018/01/09) キーワード変更(CAL2 → CAL_END)
112//      private static final String CAL_END = "'),event); return false;\" style=\"background-color:transparent;border:0px;padding:0;\">"
113//                                                                                              + "<img src=\"../image/calendar.gif\" alt=\"Calendar\" title=\"Calendar\"/></button>";
114        // 5.9.32.3command,p_appendの対応
115        // 7.0.1.0 (2018/10/15) XHTML → HTML5 対応(空要素の、"/>" 止めを、">" に変更します)。
116        // 7.4.2.2 (2021/05/28) タブレット用にボタンを大きくしたので、元に戻します。
117//      private static final String CAL_END = "'),'NEW',false,event); return false;\" style=\"background-color:transparent;border:0px;padding:0;\">"
118        private static final String CAL_END = "'),'NEW',false,event); return false;\" style=\"background-color:transparent;border:0px;padding:0;min-width:0;margin:0;\">"
119//                                                                                              + "<img src=\"../image/calendar.gif\" alt=\"Calendar\"/></button>";
120//                                                                                              + "<img src=\"../image/calendar.gif\" alt=\"Calendar\"></button>";
121                                                                                                + "<img src=\"" + JSP_ICON + "/calendar.gif\" alt=\"Calendar\"></button>";
122
123//      8.5.6.1 (2024/03/29) 継承元と同じなので削除
124//      // 8.5.4.2 (2024/01/12) PMD 7.0.0 LinguisticNaming
125////    private String isSubm                                   = "false";                                                      // 検索ボタンを押すか押さないか
126//      private String onSubm                                   = "false";                                                      // 検索ボタンを押すか押さないか
127//      private String errMsg;                                                                                                          // エラーメッセージ
128//      private String[] prmAry;                                                                                                        // 編集パラメータ
129//
130//      // 6.9.8.0 (2018/05/28) disabled 時に、日付ピッカーを出さない対応
131//      private final boolean hidden;                                                                                           // 8.0.2.0 (2021/11/30) Modify disabled ⇒ hidden
132//      private final boolean useDateFeed;                                                                                      // 日付送り戻し機能の有効/無効 8.1.2.3 (2022/05/20)
133
134        /**
135         * デフォルトコンストラクター。
136         * このコンストラクターで、基本オブジェクトを作成します。
137         *
138         * @og.rev 6.9.8.0 (2018/05/28) disabled 時に、日付ピッカーを出さない対応
139         * @og.rev 8.0.2.0 (2021/11/30) 日付送り戻し対応
140         * @og.rev 8.1.2.3 (2022/05/20) 日付送り戻し不具合対応(useDateFeed 属性追加)
141         * @og.rev 8.5.6.1 (2024/03/29) 継承元と同じなので削除
142         */
143//      public Editor_YMD2() { super(); }               // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。
144        public Editor_YMD2() {
145                super();
146////            isSubm          = "false";                                                                                              // 8.0.2.0 (2021/11/30) Add
147//              onSubm          = "false";                                                                                                      // 8.0.2.0 (2021/11/30) Add     // 8.5.4.2 (2024/01/12) PMD 7.0.0 LinguisticNaming
148//              errMsg          = null;                                                                                                         // 8.0.2.0 (2021/11/30) Add
149//              prmAry          = null;                                                                                                         // 8.0.2.0 (2021/11/30) Add
150//              hidden          = true;                                                                                                         // 8.0.2.0 (2021/11/30) Modify disabled ⇒ hidden
151//              useDateFeed     = true;                                                                                                         // 8.1.2.3 (2022/05/20)
152        }
153
154        /**
155         * DBColumnオブジェクトを指定したprivateコンストラクター。
156         *
157         * @og.rev 6.9.8.0 (2018/05/28) disabled 時に、日付ピッカーを出さない対応
158         * @og.rev 8.0.2.0 (2021/11/30) 日付送り戻し対応
159         * @og.rev 8.1.2.3 (2022/05/20) 日付送り戻し不具合対応(useDateFeed 属性追加)
160         * @og.rev 8.5.6.1 (2024/03/29) 継承元と同じなので削除
161         *
162         * @param       clm     DBColumnオブジェクト
163         */
164        private Editor_YMD2( final DBColumn clm ) {
165                super( clm );
166//              tagBuffer.add( XHTMLTag.inputAttri( attributes ) );
167//
168//              final boolean disabled = "disabled".equalsIgnoreCase( attributes.get( "disabled" ) );   // 6.9.8.0 (2018/05/28)
169//              final boolean readonly = "readonly".equalsIgnoreCase( attributes.get( "readonly" ) );   // 8.0.2.0 (2021/11/30)
170//              useDateFeed = clm.isDateFeed();                                                                                                                 // 8.1.2.3 (2022/05/20)
171//
172//              // 8.0.2.0 (2021/11/30) Add 日付送り戻し対応
173//              hidden = disabled || readonly;
174////            if( !hidden ) {                                                                                                                 // 8.1.2.3 (2022/05/20) Modify
175//              if( !hidden && useDateFeed ) {
176//                      // 例:D-1,D0,D+1 or D-1,D0,D+1,true
177//                      final String prmStr = clm.getEditorParam();
178//                      if( prmStr != null ) {
179//                              prmAry = StringUtil.csv2Array( prmStr );
180//                              // パラメータの第四引数がある場合
181//                              if( prmAry.length > CNT_ARY ) {
182////                                    isSubm = prmAry[CNT_ARY];
183//                                      onSubm = prmAry[CNT_ARY];                                                                       // 8.5.4.2 (2024/01/12) PMD 7.0.0 LinguisticNaming
184//                              } else if( prmAry.length < CNT_ARY ) {
185//                                      errMsg = "editorParam の設定が不足です。"
186//                                                                              + " name="  + name
187//                                                                              + " label=" + clm.getLabel()
188//                                                                              + " editorParam=" + clm.getEditorParam();
189//                                      System.out.println( errMsg );
190//                              }
191//                      }
192//              }
193        }
194
195        /**
196         * 各オブジェクトから自分のインスタンスを返します。
197         * 自分自身をキャッシュするのか、新たに作成するのかは、各サブクラスの実装に
198         * まかされます。
199         *
200         * @param       clm     DBColumnオブジェクト
201         *
202         * @return      CellEditorオブジェクト
203         * @og.rtnNotNull
204         */
205        public CellEditor newInstance( final DBColumn clm ) {
206                return new Editor_YMD2( clm );
207        }
208
209//      /**
210//       * データの編集用文字列を返します。
211//       *
212//       * @og.rev 4.3.7.2 (2009/06/15) 属性でidが出力される場合は、idを出力しない
213//       * @og.rev 6.8.5.0 (2018/01/09) カレンダポップアップで、3ヶ月ピッカー対応
214//       * @og.rev 6.9.8.0 (2018/05/28) disabled 時に、日付ピッカーを出さない対応
215//       * @og.rev 8.0.2.0 (2021/11/30) 日付送り戻し対応
216//       * @og.rev 8.0.3.0 (2021/12/17) イメージにname属性を付けるため、spanタグで囲います。
217//       * @og.rev 8.1.2.3 (2022/05/20) 日付送り戻し不具合対応(useDateFeed 属性追加)
218//       * @og.rev 8.5.4.1 (2023/12/22) HTML5廃止対応(8.0.3.0 (2021/12/17)の対応が無くても正常に動作するので削除)
219//       * @og.rev 8.5.6.1 (2024/03/29) 継承元と同じなので削除
220//       *
221//       * @param       value   入力値
222//       *
223//       * @return      データの編集用文字列
224//       * @og.rtnNotNull
225//       */
226//      @Override
227//      public String getValue( final String value ) {
228//              // 8.0.2.0 (2021/11/30) Add
229//              if( prmAry != null && prmAry.length < CNT_ARY ) {
230//                      return "<span class=\"error\">" + errMsg + "</span>";
231//              }
232//
233//              // 6.1.1.0 (2015/01/17) TagBufferの連結記述
234//              final String tag = new TagBuffer( "input" )
235//                                              .add( "name"    , name )
236//                                              // 8.5.4.2 (2024/01/12) import static … を個別に記述
237//                                              .add( "id"              , name , StringUtil.isNull( attributes.get( "id" ) ) )          // 4.3.7.2 (2009/06/15)
238//                                              .add( "value"   , value )
239//                                              .add( "size"    , size1 )
240//                                              .add( tagBuffer.makeTag() )
241//                                              .makeTag();
242//
243////            return tag + CAL_ST + name + CAL_END ;
244////            return disabled ? tag                                                                   // 6.9.8.0 (2018/05/28) disabled 時に、日付ピッカーを出さない対応
245////                                            : tag + CAL_STR + name + CAL_END ;              // 6.9.8.0 (2018/05/28) 変数名を、CAL_ST → CAL_STR に変更。
246//              // 8.0.2.0 (2021/11/30) Modify
247//              if( hidden ) {
248//                      return tag;
249//              } else {
250//                      final StringBuilder buf = new StringBuilder(BUFFER_MIDDLE)
251//                              .append( tag )
252////                            .append( "<span name=\"img" ).append( name ).append( "\">" )    // 8.0.3.0 (2021/12/17) 8.5.4.1 (2023/12/22) Delete
253//                              .append( CAL_STR )
254//                              .append( name )
255//                              .append( CAL_END );
256//
257//                      // 8.0.2.0 (2021/11/30) 日付送り戻し対応
258////                    if( prmAry != null && prmAry.length > 0 ) {                                                     // 8.1.2.3 (2022/05/20) Modify
259//                      if( useDateFeed && prmAry != null && prmAry.length > 0 ) {
260//                              // 8.5.4.2 (2024/01/12) import static … を個別に記述
261//                              final String nmid = StringUtil.isNull( attributes.get( "id" ) ) ? name : attributes.get( "id" );
262//                              // 第一回目の処理は、日付戻しを指定します。
263//                              // 第二回目の処理は、初期化します。
264//                              // 第三回目の処理は、日付送りを指定します。
265//                              for( int i=0; i<CNT_ARY; i++ ) {
266//                                      // 8.5.4.2 (2024/01/12) PMD 7.0.0 LinguisticNaming
267////                                    buf.append( String.format( FR_STR + FR_END, "YMD", nmid, value, prmAry[i], isSubm, FR_IMG[i] ) );
268//                                      buf.append( String.format( FR_STR + FR_END, "YMD", nmid, value, prmAry[i], onSubm, FR_IMG[i] ) );
269//                              }
270//                      }
271////                    buf.append( "</span>" );        // 8.0.3.0 (2021/12/17) 8.5.4.1 (2023/12/22) Delete
272//                      return buf.toString();
273//              }
274//      }
275
276//      /**
277//       * name属性を変えた、データ表示/編集用のHTML文字列を作成します。
278//       * テーブル上の name に 行番号を付加して、名前_行番号 で登録するキーを作成し、
279//       * リクエスト情報を1つ毎のフィールドで処理できます。
280//       *
281//       * @og.rev 4.3.7.2 (2009/06/15) 属性でidが出力される場合は、idを出力しない
282//       * @og.rev 6.8.5.0 (2018/01/09) カレンダポップアップで、3ヶ月ピッカー対応
283//       * @og.rev 6.9.8.0 (2018/05/28) disabled 時に、日付ピッカーを出さない対応
284//       * @og.rev 8.0.2.0 (2021/11/30) 日付送り戻し対応
285//       * @og.rev 8.0.3.0 (2021/12/17) イメージにname属性を付けるため、spanタグで囲います。
286//       * @og.rev 8.1.2.3 (2022/05/20) 日付送り戻し不具合対応(useDateFeed 属性追加)
287//       * @og.rev 8.5.4.1 (2023/12/22) HTML5廃止対応(8.0.3.0 (2021/12/17)の対応が無くても正常に動作するので削除)
288//       * @og.rev 8.5.6.1 (2024/03/29) 継承元と同じなので削除
289//       *
290//       * @param       row             行番号
291//       * @param       value   入力値
292//       *
293//       * @return      データ表示/編集用の文字列
294//       * @og.rtnNotNull
295//       */
296//      @Override
297//      public String getValue( final int row,final String value ) {
298//              // 8.0.2.0 (2021/11/30) Add
299//              if( prmAry != null && prmAry.length < CNT_ARY ) {
300//                      return "<span class=\"error\">" + errMsg + " row=" + row + "</span>";
301//              }
302//
303//              final String name2 = name + HybsSystem.JOINT_STRING + row;
304//
305//              // 6.1.1.0 (2015/01/17) TagBufferの連結記述
306//              final String tag = new TagBuffer( "input" )
307//                                              .add( "name"    , name2 )
308//                                              // 8.5.4.2 (2024/01/12) import static … を個別に記述
309//                                              .add( "id"              , name2 , StringUtil.isNull( attributes.get( "id" ) ) )         // 4.3.7.2 (2009/06/15)
310//                                              .add( "value"   , value )
311//                                              .add( "size"    , size2 )
312//                                              .add( tagBuffer.makeTag() )
313//                                              .makeTag( row,value );
314//
315////            return tag + CAL_ST + name2 + CAL_END ;
316////            return disabled ? tag                                                                   // 6.9.8.0 (2018/05/28) disabled 時に、日付ピッカーを出さない対応
317////                                            : tag + CAL_STR + name2 + CAL_END ;             // 6.9.8.0 (2018/05/28) 変数名を、CAL_ST → CAL_STR に変更。
318//              // 8.0.2.0 (2021/11/30) Modify
319//              if( hidden ) {
320//                      return tag;
321//              } else {
322//                      final StringBuilder buf = new StringBuilder(BUFFER_MIDDLE)
323//                              .append( tag )
324////                            .append( "<span name=\"img" ).append( name2 ).append( "\">" )   // 8.0.3.0 (2021/12/17) 8.5.4.1 (2023/12/22) Delete
325//                              .append( CAL_STR )
326//                              .append( name2 )
327//                              .append( CAL_END );
328//
329//                      // 8.0.2.0 (2021/11/30) 日付送り戻し対応
330////                    if( prmAry != null && prmAry.length > 0 ) {                                                     // 8.1.2.3 (2022/05/20) Modify
331//                      if( useDateFeed && prmAry != null && prmAry.length > 0 ) {
332//                              // 8.5.4.2 (2024/01/12) import static … を個別に記述
333//                              final String nmid = StringUtil.isNull( attributes.get( "id" ) ) ? name2 : attributes.get( "id" );
334//                              // 第一回目の処理は、日付戻しを指定します。
335//                              // 第二回目の処理は、初期化します。
336//                              // 第三回目の処理は、日付送りを指定します。
337//                              for( int i=0; i<CNT_ARY; i++ ) {
338//                                      // 8.5.4.2 (2024/01/12) PMD 7.0.0 LinguisticNaming
339////                                    buf.append( String.format( FR_STR + FR_END, "YMD", nmid, value, prmAry[i], isSubm, FR_IMG[i] ) );
340//                                      buf.append( String.format( FR_STR + FR_END, "YMD", nmid, value, prmAry[i], onSubm, FR_IMG[i] ) );
341//                              }
342//                      }
343////                    buf.append( "</span>" );        // 8.0.3.0 (2021/12/17) 8.5.4.1 (2023/12/22) Delete
344//                      return buf.toString();
345//              }
346//      }
347
348        /**
349         * name属性を指定してポップアップ用のボタンタグを生成します。
350         * これは、継承元(Editor_YMD)では、空文字列を返し、継承先で使用します。
351         *
352         * @og.rev 8.5.6.1 (2024/03/29) 継承で使えるように、一部修正します。
353         *
354         * @param       name    名前
355         *
356         * @return      Popup用のボタンのタグ
357         * @og.rtnNotNull
358         */
359        @Override
360        protected String getPopupButton( final String name ) {
361                return CAL_STR + name + CAL_END;
362        }
363}