biblesearch / templates / index.html.ep /
Newer Older
217 lines | 6.917kb
add files
Yuki Kimoto authored on 2014-03-26
1
<%
2
  my $dbi = app->dbi;
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
3

            
4
  my $books = $dbi->model('book')->select(['id', 'short_name'])->all;
5

            
add files
Yuki Kimoto authored on 2014-03-26
6
  my $op = param('op') // '';
7
  my $book_id = param('book-id');
8
  
improve design
Yuki Kimoto authored on 2014-03-27
9
  my $word_count_h = {};
10
  my $word = param('word');
11
  my $word_length = length $word;
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
12
  
13
  # 前と次の見つかった書籍
14
  my $next_book_id;
15
  my $prev_book_id;
16
  my $found_books = [];
17
  for my $book (@$books) {
18
    if (!$word_length || $word_count_h->{$book->{id}} > 0) {
19
      push @$found_books, $book;
20
    }
21
  }
22
  for (my $i = 0; $i < @$found_books; $i++) {
23
    if ($book_id eq $found_books->[$i]{id}) {
24
      $prev_book_id = $found_books->[$i - 1]{id} if $i > 0;
25
      $next_book_id = $found_books->[$i + 1]{id} if $i < @$found_books;
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
26
    }
improve design
Yuki Kimoto authored on 2014-03-27
27
  }
add files
Yuki Kimoto authored on 2014-03-26
28
%>
29

            
30

            
31
% layout 'common';
32

            
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
33
%= javascript begin
34
  $(document).ready(function () {
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
35
  
36
    var current_word;
37
    var current_book_id;
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
38
    
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
39
    var fragment = location.hash;
40
    var current_pos;
41
    if (fragment) {
42
      var ret = fragment.match(/word-(\d)/);
43
      current_pos = ret[1] - 0;
44
    }
45
    else {
46
      current_pos = 1;
47
    }
48
    $("#word-pos").text(current_pos);
49
    
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
50
    % if ($word_length) {
51
      $("#up-arrow").on('click', function () {
52
        var current_pos = $('#word-pos').text();
53
        var prev_pos = current_pos - 1;
54
        
55
        if (prev_pos < 1) {
56
          location.href = "<%= url_for('/')->query(word => $word, 'book-id' => $prev_book_id)->fragment("word-$word_count_h->{$prev_book_id}") %>";
57
        } else {
58
          location.href = '#word-' + prev_pos;
59
          $('#word-pos').text(prev_pos);
60
        }
61
      });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
62

            
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
63
      $("#down-arrow").on('click', function () {
64
        var current_pos = $('#word-pos').text();
65
        var next_pos = current_pos - 0 + 1;
66
        
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
67
        if (next_pos > 10) {
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
68
          location.href = "<%= url_for('/')->query(word => $word, 'book-id' => $next_book_id)->fragment('word-1') %>";
69
        }
70
        else {
71
          location.href = '#word-' + next_pos;
72
          $('#word-pos').text(next_pos);
73
        }
74
      });
75
    % }
76
    
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
77
    // 書をクリック
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
78
    $('.book').on('click', function () {
79
      var book_id_str = $(this).attr('id');
80
      var ret = book_id_str.match(/book-(\d+)/);
81
      var book_id = ret[1];
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
82
      
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
83
      $.get('/api/book/' + book_id + '/content', function (result) {
84

            
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
85
        if (current_word) {
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
86
          var i = 1;
87
          var replace_cb = function (all, group1) {
88
            var after = '<a style="background:#00ffff" id="word-' + i + '">' + group1 + '</a>';
89
            i = i + 1;
90
            return after;
91
          };
92
          
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
93
          var word_re = new RegExp('(' + current_word + ')', 'g');
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
94
          result.content = result.content.replace(word_re, function (all, group1) { return replace_cb(all, group1); });
95
        }
96
        
97
        $("#content").html(result.content);
98
        current_book_id = book_id;
99
      });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
100
    });
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
101
    
102
    // 検索をクリック
103
    $('#search').on('click', function () {
104
      var word = $(this).closest('div').find('[name=word]').val();
105
      
106
      if (word) {
107
        var word_count_h;
108
        $.get('/api/word-count/' + word, function (result) {
109
          var word_count_h = result.word_count;
110
          
111
          $('#books tr').each(function () {
112
            var book_id_str = $(this).attr('id');
113
            if (book_id_str) {
114
              var book_id = (book_id_str.match(/book-(\d+)/))[1];
115
              if (word_count_h[book_id] === 0) {
116
                $(this).css('display', 'none');
117
              }
118
              $(this).find('.word-count').text(word_count_h[book_id]);
119
            }
120
          });
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
121
          
122
          $('#word-count-header').text('回数');
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
123
        });
124
        
125
        current_word = word;
126
      }
127
      
128
      return false;
129
    });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
130
  });
131
% end
132

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

            
135
  <div id="boxA">
136
    <h1>口語訳聖書オンライン語句検索</h1>
137
  </div>
138

            
139
  <div id="boxB">
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
140
      <div style="margin-bottom:5px">
141
        <%= text_field 'word' , style => "width:160px" %>
142
        <button id="search" style="width:50px;padding:2px;">検索</button>
143
      </div>
add files
Yuki Kimoto authored on 2014-03-26
144
      <div style="margin-bottom:10px;">
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
145
        <table style="border-collapse: collapse;width:100%;color:#333333">
146
          <tr>
147
            <td style="width:90px">
148
              <a href="<%= url_for('/') %>" style="color:blue">聖書</a>
149
            </td>
150
            <td>
151
              % if ($word_length) {
152
                <span>
153
                  <a id="up-arrow" href="javascript:void()">▲</a>
154
                  <div id="word-pos" style="display:inline-block;border:1px solid #DDDDDD;padding:2px 5px;width:35px;text-align:center">
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
155
                    <%= $book_id ? ' ' : '-' %>
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
156
                  </div>
157
                  <a id="down-arrow" href="javascript:void()">▼</a>
158
                </span>
159
              % }
160
            </td>
161
          </tr>
162
        </table>
add files
Yuki Kimoto authored on 2014-03-26
163
      </div>
164
      <div style="border:1px solid gray;width:218px;height:400px;overflow:auto;padding:5px">
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
165
        <table id="books" style="border-collapse: collapse;width:100%;color:#333333">
improve design
Yuki Kimoto authored on 2014-03-27
166
            <tr style="border-bottom:1px solid #EEEEEE">
167
              <td>
168
169
              </td>
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
170
              <td id="word-count-header" style="text-align:right">
improve design
Yuki Kimoto authored on 2014-03-27
171
                % if ($word_length) {
172
                  回数
173
                % }
174
              </td>
175
            </tr>
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
176
          % my $prev_book_id;
add files
Yuki Kimoto authored on 2014-03-26
177
          % for my $book (@$books) {
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
178
            <tr id="<%= "book-$book->{id}" %>">
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
179
              % if (!$word_length || $word_count_h->{$book->{id}} > 0) {
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
180
                <td style="<%= ($book_id // '') eq $book->{id} ? 'background:#DDDDDD' : '' %>">
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
181
                  % my $book_url_query = {'book-id' => $book->{id}};
182
                  % $book_url_query->{word} = $word if $word_length;
183
                  % my $book_url = url_for->query($book_url_query);
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
184
                  % $book_url->fragment('word-1') if $word_length;
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
185
                  <a class="book" id="<%= "book-$book->{id}" %>" href="javascript:void(0)">
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
186
                    <%= $book->{short_name} %>
187
                  </a>
188
                </td>
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
189
                <td class="word-count" style="text-align:right">
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
190
                </td>
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
191
                
192
                % if ($prev_book_id && $book_id) {
193
                  $next_book_list->{$prev_book_id} = $book_id;
194
                  $prev_book_list->{$book_id} = $prev_book_id;
195
                % }
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
196
              % }
improve design
Yuki Kimoto authored on 2014-03-27
197
            </tr>
add files
Yuki Kimoto authored on 2014-03-26
198
          % }
improve design
Yuki Kimoto authored on 2014-03-27
199
        </table>
add files
Yuki Kimoto authored on 2014-03-26
200
      </div>
201
  </div>
202

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

            
208

            
209
  <div id="boxD">
improve design
Yuki Kimoto authored on 2014-03-27
210
    <div style="border-top:1px solid #AAAAAA;padding-top:10px;">
211
      This site is create by
212
      <a href="http://d.hatena.ne.jp/perlcodesample">Perl</a> +
213
      <a href="http://d.hatena.ne.jp/perlcodesample/20140319/1395203665">Mojolicious</a>.
214
      Auther is <a href="https://twitter.com/yukikimoto2">Yuki kimoto</a>.
215
    </div>
add files
Yuki Kimoto authored on 2014-03-26
216
  </div>
217
</div>