biblesearch / templates / index.html.ep /
Newer Older
235 lines | 7.331kb
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-27
18
    
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
19
    $("#word-pos").text('-');
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
20
    
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
21
    $("#up-arrow").on('click', function () {
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
22
      if (current_pos) {
23
        var prev_pos = current_pos - 1;
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
24
        
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
25
        if (prev_pos < 1) {
26
          var prev_book_id;
27
          for (var i = 0; i < found_book_ids.length; i++) {
28
            if (found_book_ids[i] === current_book_id) {
29
              prev_book_id = found_book_ids[i - 1];
30
            }
31
          }
32
          if (prev_book_id) {
33
            current_pos = current_word_count_h[prev_book_id];
34
            $('#books tr[id=book-' + prev_book_id + ']').find('.book').trigger('click');
35
          }
36
        } else {
37
          location.href = '#word-' + prev_pos;
スクロールの位置を調整
Yuki Kimoto authored on 2014-03-29
38
          scroll_little_up ();
次へと前へが正しく動くようにした。
Yuki Kimoto authored on 2014-03-29
39
          current_pos--;
40
          $('#word-pos').text(prev_pos);
41
        }
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
42
      }
43
    });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
44

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

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

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

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

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

            
170
  <div id="boxA">
171
    <h1>口語訳聖書オンライン語句検索</h1>
172
  </div>
173

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

            
221
  <div id="boxC">
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
222
    <div id="content" style="height:500px;overflow:auto">
improve design
Yuki Kimoto authored on 2014-03-27
223
    </div>
add files
Yuki Kimoto authored on 2014-03-26
224
  </div>
225

            
226

            
227
  <div id="boxD">
improve design
Yuki Kimoto authored on 2014-03-27
228
    <div style="border-top:1px solid #AAAAAA;padding-top:10px;">
229
      This site is create by
230
      <a href="http://d.hatena.ne.jp/perlcodesample">Perl</a> +
231
      <a href="http://d.hatena.ne.jp/perlcodesample/20140319/1395203665">Mojolicious</a>.
232
      Auther is <a href="https://twitter.com/yukikimoto2">Yuki kimoto</a>.
233
    </div>
add files
Yuki Kimoto authored on 2014-03-26
234
  </div>
235
</div>