Changes for page 新しい学校ページを作成
Last modified by Super Admin on 2026/03/22 00:39
From version
19.1
edited by Super Admin
on 2026/03/08 23:59
on 2026/03/08 23:59
Change comment:
There is no comment for this version
To version
33.1
edited by Super Admin
on 2026/03/18 03:55
on 2026/03/18 03:55
Change comment:
There is no comment for this version
Summary
Details
- Page properties
-
- Content
-
... ... @@ -24,9 +24,22 @@ 24 24 #if($xwiki.exists($targetPage)) 25 25 {{error}}この学校のページは既に存在します。[[既存のページを開く>>$targetPage]]{{/error}} 26 26 #else 27 - ## ページを作成して学校テンプレートを適用 28 - $response.sendRedirect($xwiki.getURL("Schools.${schoolCode}.WebHome", 'edit', 29 - "template=SeitokaiCode.SchoolTemplate&schoolCode=${schoolCode}&schoolName=${escapetool.url($schoolName)}")) 27 + ## ページをプログラム的に作成 28 + #set($newDoc = $xwiki.getDocument($targetPage)) 29 + ## SchoolTemplateのコンテンツを参照として設定(テンプレートの include) 30 + ## author="target" により、SchoolTemplateの作者(superadmin)の権限でVelocityを実行 31 + ## これがないと学校ページの作者(一般ユーザー)のscript権限が必要になりエラーになる 32 + $newDoc.setContent('{{include reference="SeitokaiCode.SchoolTemplate" author="target" /}}') 33 + $newDoc.setTitle($schoolName) 34 + $newDoc.setParent('Schools.WebHome') 35 + ## SchoolClassオブジェクトを追加して初期値を設定 36 + #set($objNum = $newDoc.createNewObject('SeitokaiCode.SchoolClass')) 37 + #set($newObj = $newDoc.getObject('SeitokaiCode.SchoolClass', $objNum)) 38 + $newObj.set('schoolCode', $schoolCode) 39 + $newObj.set('schoolName', $schoolName) 40 + $newDoc.saveWithProgrammingRights('学校ページを新規作成') 41 + ## 作成後にビューにリダイレクト 42 + $response.sendRedirect($xwiki.getURL($targetPage, 'view')) 30 30 #end 31 31 #else 32 32 ... ... @@ -66,7 +66,7 @@ 66 66 <div id="selectedSchoolInfo" class="selected-school-info"></div> 67 67 <div id="selectedSchoolCode" class="selected-school-code"></div> 68 68 </div> 69 - <button type="button" onclick="clearSelection()" class="btn-change-school"> 変更</button>82 + <button type="button" onclick="clearSelection()" class="btn-change-school">選択解除</button> 70 70 </div> 71 71 </div> 72 72 </div> ... ... @@ -95,6 +95,13 @@ 95 95 96 96 <script> 97 97 (function() { 111 + // XSSエスケープ関数 112 + function escapeHtml(s) { 113 + var div = document.createElement('div'); 114 + div.appendChild(document.createTextNode(s)); 115 + return div.innerHTML; 116 + } 117 + 98 98 // 学校マスターデータをJSON APIから取得 99 99 var schools = []; 100 100 var schoolsLoaded = false; ... ... @@ -101,7 +101,8 @@ 101 101 102 102 // schools.json をロード(XWiki添付ファイルとして配置) 103 103 // 配置先: SeitokaiCode.SchoolMasterData の添付ファイル 104 - fetch('/rest/wikis/xwiki/spaces/SeitokaiCode/pages/SchoolMasterData/attachments/schools.json') 124 + var restBase = '$request.contextPath/rest/wikis/xwiki'; 125 + fetch(restBase + '/spaces/SeitokaiCode/pages/SchoolMasterData/attachments/schools.json') 105 105 .then(function(r) { return r.json(); }) 106 106 .then(function(data) { schools = data; schoolsLoaded = true; }) 107 107 .catch(function() { ... ... @@ -138,11 +138,11 @@ 138 138 var li = document.createElement('li'); 139 139 li.className = 'search-result-item'; 140 140 li.innerHTML = 141 - '<div class="search-result-name">' + s.name + '</div>' + 162 + '<div class="search-result-name">' + escapeHtml(s.name) + '</div>' + 142 142 '<div class="search-result-info">' + 143 - s.pref + ' ' + s.city + ' ・ ' + s.type + '(' + s.est + ')' + 164 + escapeHtml(s.pref) + ' ' + escapeHtml(s.city) + ' ・ ' + escapeHtml(s.type) + '(' + escapeHtml(s.est) + ')' + 144 144 '</div>' + 145 - '<div class="search-result-code">' + s.code + '</div>'; 166 + '<div class="search-result-code">' + escapeHtml(s.code) + '</div>'; 146 146 li.onclick = function() { selectSchool(s); }; 147 147 resultsList.appendChild(li); 148 148 }); ... ... @@ -168,13 +168,13 @@ 168 168 169 169 // 重複チェック(XWikiにページが存在するか確認) 170 170 var targetPage = 'Schools.' + school.code + '.WebHome'; 171 - fetch( '/rest/wikis/xwiki/spaces/Schools/spaces/' + school.code + '/pages/WebHome')192 + fetch(restBase + '/spaces/Schools/spaces/' + school.code + '/pages/WebHome') 172 172 .then(function(r) { 173 173 if (r.ok) { 174 174 // 既存ページあり 175 175 document.getElementById('duplicateWarning').style.display = 'block'; 176 176 document.getElementById('duplicateLink').href = 177 - '/bin/ view/Schools/' + school.code + '/';198 + '$request.contextPath/bin/Schools/' + school.code + '/'; 178 178 document.getElementById('submitArea').style.display = 'none'; 179 179 } else { 180 180 // 新規作成OK ... ... @@ -229,6 +229,15 @@ 229 229 selectedIdx = -1; 230 230 } 231 231 }); 253 + 254 + // 送信時ローディング 255 + var csForm = document.getElementById('createSchoolForm'); 256 + if (csForm) { 257 + csForm.addEventListener('submit', function() { 258 + var btn = csForm.querySelector('button[type="submit"]'); 259 + if (btn) { btn.disabled = true; btn.innerHTML = '<span class="btn-spinner"></span> 作成中...'; } 260 + }); 261 + } 232 232 })(); 233 233 </script> 234 234 {{/html}}