biblesearch / templates / index.html.ep /
Newer Older
240 lines | 7.425kb
add files
Yuki Kimoto authored on 2014-03-26
1
<%
2
  my $dbi = app->dbi;
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
3
  my $books = $dbi->model('book')->select(['id', 'short_name'])->all;
add files
Yuki Kimoto authored on 2014-03-26
4
%>
5

            
6

            
7
% layout 'common';
8

            
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
9
%= javascript begin
10
  $(document).ready(function () {
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
11
  
12
    var current_word;
13
    var current_book_id;
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
14
    var found_book_ids = [];
単語の位置が1になるバグを修正
Yuki Kimoto authored on 2014-03-29
15
    var max_search_pos;
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
16
    var current_word_count_h;
17
    var current_pos;
こまかなバグを修正
Yuki Kimoto authored on 2014-03-29
18
    var keep_current_pos = false;
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
19
    
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
20
    $("#word-pos").text('-');
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
21
    
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
22
    $("#up-arrow").on('click', function () {
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
23
      if (current_pos) {
24
        var prev_pos = current_pos - 1;
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
25
        
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
26
        if (prev_pos < 1) {
27
          var prev_book_id;
28
          for (var i = 0; i < found_book_ids.length; i++) {
29
            if (found_book_ids[i] === current_book_id) {
30
              prev_book_id = found_book_ids[i - 1];
31
            }
32
          }
33
          if (prev_book_id) {
34
            current_pos = current_word_count_h[prev_book_id];
こまかなバグを修正
Yuki Kimoto authored on 2014-03-29
35
            keep_current_pos = true;
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
36
            $('#books tr[id=book-' + prev_book_id + ']').find('.book').trigger('click');
37
          }
38
        } else {
39
          location.href = '#word-' + prev_pos;
スクロールの位置を調整
Yuki Kimoto authored on 2014-03-29
40
          scroll_little_up ();
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
41
          current_pos--;
42
          $('#word-pos').text(prev_pos);
43
        }
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
44
      }
45
    });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
46

            
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
47
    $("#down-arrow").on('click', function () {
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
48
      if (current_pos) {
49
        var next_pos = current_pos - 0 + 1;
50
        
51
        if (next_pos > max_search_pos) {
52
          var next_book_id;
53
          for (var i = 0; i < found_book_ids.length; i++) {
54
            if (found_book_ids[i] === current_book_id) {
55
              next_book_id = found_book_ids[i + 1];
56
            }
57
          }
58
          if (next_book_id) {
59
            current_pos = 1;
こまかなバグを修正
Yuki Kimoto authored on 2014-03-29
60
            keep_current_pos = true;
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
61
            $('#books tr[id=book-' + next_book_id + ']').find('.book').trigger('click');
単語の位置が1になるバグを修正
Yuki Kimoto authored on 2014-03-29
62
          }
63
        }
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
64
        else {
65
          location.href = '#word-' + next_pos;
スクロールの位置を調整
Yuki Kimoto authored on 2014-03-29
66
          scroll_little_up();
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
67
          current_pos++;
68
          $('#word-pos').text(next_pos);
単語の位置が1になるバグを修正
Yuki Kimoto authored on 2014-03-29
69
        }
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
70
      }
71
    });
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
72
    
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
73
    // 書をクリック
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
74
    $('.book').on('click', function () {
75
      var book_id_str = $(this).attr('id');
76
      var ret = book_id_str.match(/book-(\d+)/);
77
      var book_id = ret[1];
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
78
      
聖書の部分は静的に配信できるようにした。
Yuki Kimoto authored on 2014-03-29
79
      $.get('/api/book/' + book_id + '/content.json', function (result) {
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
80

            
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
81
        if (current_word) {
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
82
          var i = 1;
83
          var replace_cb = function (all, group1) {
84
            var after = '<a style="background:#00ffff" id="word-' + i + '">' + group1 + '</a>';
85
            i = i + 1;
86
            return after;
87
          };
単語の位置が1になるバグを修正
Yuki Kimoto authored on 2014-03-29
88

            
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
89
          var word_re = new RegExp('(' + current_word + ')', 'g');
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
90
          result.content = result.content.replace(word_re, function (all, group1) { return replace_cb(all, group1); });
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
91
          max_search_pos = i - 1;
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
92
        }
93
        
94
        $("#content").html(result.content);
95
        current_book_id = book_id;
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
96
        
97
        $('#books tr').each(function () {
98
          var book_id_str = $(this).attr('id');
99
          if (book_id_str) {
100
            var book_id = (book_id_str.match(/book-(\d+)/))[1];
101
            if (book_id === current_book_id) {
102
              $(this).find('.book-short-name').css('background', '#DDDDDD');
103
            }
104
            else {
105
              $(this).find('.book-short-name').css('background', '#FFFFFF');
106
            }
107
          }
108
        });
こまかなバグを修正
Yuki Kimoto authored on 2014-03-29
109
        
110
        if (current_word) {
111
          if (!keep_current_pos || !current_pos) {
112
            current_pos = 1;
113
          }
114
          $('#word-pos').text(current_pos);
115
          location.href = '#word-' + current_pos;
デザインの調整
Yuki Kimoto authored on 2014-03-29
116
          scroll_little_up();
こまかなバグを修正
Yuki Kimoto authored on 2014-03-29
117
        }
118
        keep_current_pos = false;
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
119
      });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
120
    });
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
121
    
122
    // 検索をクリック
123
    $('#search').on('click', function () {
124
      var word = $(this).closest('div').find('[name=word]').val();
125
      
126
      if (word) {
127
        var word_count_h;
128
        $.get('/api/word-count/' + word, function (result) {
129
          var word_count_h = result.word_count;
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
130
          current_word_count_h = word_count_h;
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
131

            
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
132
          $('#books tr').each(function () {
133
            var book_id_str = $(this).attr('id');
134
            if (book_id_str) {
135
              var book_id = (book_id_str.match(/book-(\d+)/))[1];
136
              if (word_count_h[book_id] === 0) {
137
                $(this).css('display', 'none');
138
              }
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
139
              else {
140
                found_book_ids.push(book_id);
複数回検索できないバグを修正
Yuki Kimoto authored on 2014-03-29
141
                $(this).css('display', '');
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
142
              }
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
143
              $(this).find('.word-count').text(word_count_h[book_id]);
144
            }
145
          });
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
146
          $('#word-count-header').text('回数');
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
147
          
148
          current_word = word;
単語の位置が1になるバグを修正
Yuki Kimoto authored on 2014-03-29
149
          
150
          $('#up-down').css('display', 'inline');
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
151
        });
152
        
153
      }
154
      
155
      return false;
156
    });
Enterで検索できるようにした。
Yuki Kimoto authored on 2014-03-29
157
    
158
    // Enterで検索
159
    $('[name=word]').bind('keypress', function (e) {
160
      if (e.keyCode === 13) {
161
        $('#search').trigger('click');
162
      }
163
    });
スクロールの位置を調整
Yuki Kimoto authored on 2014-03-29
164
    
165
    // 少し上へスクロール
166
    function scroll_little_up () {
167
      var current_scroll_top = $('#content').scrollTop();
デザインの調整
Yuki Kimoto authored on 2014-03-29
168
      $('#content').scrollTop(current_scroll_top - 70);
スクロールの位置を調整
Yuki Kimoto authored on 2014-03-29
169
    }
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
170
  });
171
% end
172

            
add files
Yuki Kimoto authored on 2014-03-26
173
<div id="container">
174

            
複数回検索できないバグを修正
Yuki Kimoto authored on 2014-03-29
175
  <div id="header">
add files
Yuki Kimoto authored on 2014-03-26
176
    <h1>口語訳聖書オンライン語句検索</h1>
177
  </div>
178

            
複数回検索できないバグを修正
Yuki Kimoto authored on 2014-03-29
179
  <div id="side">
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
180
      <div style="margin-bottom:5px">
こまかなバグを修正
Yuki Kimoto authored on 2014-03-29
181
        <input type="text" name="word", style = "width:160px" value="アブラハム">
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
182
        <button id="search" style="width:50px;padding:2px;">検索</button>
183
      </div>
add files
Yuki Kimoto authored on 2014-03-26
184
      <div style="margin-bottom:10px;">
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
185
        <table style="border-collapse: collapse;width:100%;color:#333333">
186
          <tr>
単語の位置が1になるバグを修正
Yuki Kimoto authored on 2014-03-29
187
            <td style="width:90px;height:25px;">
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
188
              <a href="<%= url_for('/') %>" style="color:blue">聖書</a>
189
            </td>
190
            <td>
単語の位置が1になるバグを修正
Yuki Kimoto authored on 2014-03-29
191
              <span id="up-down" style="display:none">
javascriptのエラーを修正
Yuki Kimoto authored on 2014-03-29
192
                <a id="up-arrow" href="javascript:void(0)">▲</a>
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
193
                <div id="word-pos" style="display:inline-block;border:1px solid #DDDDDD;padding:2px 5px;width:35px;text-align:center">
194
                </div>
javascriptのエラーを修正
Yuki Kimoto authored on 2014-03-29
195
                <a id="down-arrow" href="javascript:void(0)">▼</a>
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
196
              </span>
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
197
            </td>
198
          </tr>
199
        </table>
add files
Yuki Kimoto authored on 2014-03-26
200
      </div>
複数回検索できないバグを修正
Yuki Kimoto authored on 2014-03-29
201
      <div style="border:1px solid gray;width:218px;height:300px;overflow:auto;padding:5px">
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
202
        <table id="books" style="border-collapse: collapse;width:100%;color:#333333">
improve design
Yuki Kimoto authored on 2014-03-27
203
            <tr style="border-bottom:1px solid #EEEEEE">
204
              <td>
205
206
              </td>
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
207
              <td id="word-count-header" style="text-align:right">
improve design
Yuki Kimoto authored on 2014-03-27
208
              </td>
209
            </tr>
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
210
          % my $prev_book_id;
add files
Yuki Kimoto authored on 2014-03-26
211
          % for my $book (@$books) {
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
212
            <tr id="<%= "book-$book->{id}" %>">
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
213
              <td class="book-short-name">
214
                <a class="book" id="<%= "book-$book->{id}" %>" href="javascript:void(0)">
215
                  <%= $book->{short_name} %>
216
                </a>
217
              </td>
218
              <td class="word-count" style="text-align:right">
219
              </td>
improve design
Yuki Kimoto authored on 2014-03-27
220
            </tr>
add files
Yuki Kimoto authored on 2014-03-26
221
          % }
improve design
Yuki Kimoto authored on 2014-03-27
222
        </table>
add files
Yuki Kimoto authored on 2014-03-26
223
      </div>
224
  </div>
225

            
複数回検索できないバグを修正
Yuki Kimoto authored on 2014-03-29
226
  <div id="main">
227
    <div id="content">
improve design
Yuki Kimoto authored on 2014-03-27
228
    </div>
add files
Yuki Kimoto authored on 2014-03-26
229
  </div>
230

            
231

            
複数回検索できないバグを修正
Yuki Kimoto authored on 2014-03-29
232
  <div id="footer">
デザインの調整
Yuki Kimoto authored on 2014-03-29
233
    <div id="footer-content">
improve design
Yuki Kimoto authored on 2014-03-27
234
      This site is create by
235
      <a href="http://d.hatena.ne.jp/perlcodesample">Perl</a> +
236
      <a href="http://d.hatena.ne.jp/perlcodesample/20140319/1395203665">Mojolicious</a>.
237
      Auther is <a href="https://twitter.com/yukikimoto2">Yuki kimoto</a>.
238
    </div>
add files
Yuki Kimoto authored on 2014-03-26
239
  </div>
240
</div>