biblesearch / templates / index.html.ep /
Newer Older
223 lines | 7.086kb
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];
82
      var word;
83
      % if ($word_length) {
84
        % my $word_quote = $word;
85
        % $word_quote =~ s/'/\'/g;
86
        word = '<%= $word %>';
87
      % }
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
88
      
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
89
      $.get('/api/book/' + book_id + '/content', function (result) {
90

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

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

            
141
  <div id="boxA">
142
    <h1>口語訳聖書オンライン語句検索</h1>
143
  </div>
144

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

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

            
214

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