biblesearch / templates / index.html.ep /
Newer Older
216 lines | 6.975kb
add files
Yuki Kimoto authored on 2014-03-26
1
<%
2
  my $dbi = app->dbi;
3
  my $op = param('op') // '';
4
  my $book_id = param('book-id');
5
  
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
6
  my $current_book_id;
7
  
improve design
Yuki Kimoto authored on 2014-03-27
8
  my $show_word_count;
9
  my $word_count_h = {};
10
  my $word = param('word');
11
  my $word_length = length $word;
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
12
  my $word_q = quotemeta($word) if defined $word;
improve design
Yuki Kimoto authored on 2014-03-27
13
  if ($word_length) {
14
    $show_word_count = 1;
15
    for (my $i = 0; $i < 66; $i++) {
16
      my $num = sprintf "%02d", $i + 1;
17
      
18
      my $content = $dbi->select(
19
        'content_no_tag',
20
        table => 'book',
21
        where => {id => $num}
22
      )->value;
23
      my $content_length = length $content;
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
24
      $content =~ s/$word_q//g;
improve design
Yuki Kimoto authored on 2014-03-27
25
      my $content_length_no_word = length $content;
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
26
      
27
      # 文字の個数
improve design
Yuki Kimoto authored on 2014-03-27
28
      my $word_count = ($content_length - $content_length_no_word) / $word_length;
29
      $word_count_h->{$num} = $word_count;
30
    }
31
  }
32
  
improve design
Yuki Kimoto authored on 2014-03-27
33
  my $books = $dbi->model('book')->select(['id', 'short_name'])->all;
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
34
  my $max_search_pos = $word_count_h->{$book_id} // 0;
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
35
  
36
  # 前と次の見つかった書籍
37
  my $next_book_id;
38
  my $prev_book_id;
39
  my $found_books = [];
40
  for my $book (@$books) {
41
    if (!$word_length || $word_count_h->{$book->{id}} > 0) {
42
      push @$found_books, $book;
43
    }
44
  }
45
  for (my $i = 0; $i < @$found_books; $i++) {
46
    if ($book_id eq $found_books->[$i]{id}) {
47
      $prev_book_id = $found_books->[$i - 1]{id} if $i > 0;
48
      $next_book_id = $found_books->[$i + 1]{id} if $i < @$found_books;
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
49
    }
improve design
Yuki Kimoto authored on 2014-03-27
50
  }
add files
Yuki Kimoto authored on 2014-03-26
51
%>
52

            
53

            
54
% layout 'common';
55

            
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
56
%= javascript begin
57
  $(document).ready(function () {
58
    
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
59
    var fragment = location.hash;
60
    var current_pos;
61
    if (fragment) {
62
      var ret = fragment.match(/word-(\d)/);
63
      current_pos = ret[1] - 0;
64
    }
65
    else {
66
      current_pos = 1;
67
    }
68
    $("#word-pos").text(current_pos);
69
    
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
70
    % if ($word_length) {
71
      $("#up-arrow").on('click', function () {
72
        var current_pos = $('#word-pos').text();
73
        var prev_pos = current_pos - 1;
74
        
75
        if (prev_pos < 1) {
76
          location.href = "<%= url_for('/')->query(word => $word, 'book-id' => $prev_book_id)->fragment("word-$word_count_h->{$prev_book_id}") %>";
77
        } else {
78
          location.href = '#word-' + prev_pos;
79
          $('#word-pos').text(prev_pos);
80
        }
81
      });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
82

            
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
83
      $("#down-arrow").on('click', function () {
84
        var current_pos = $('#word-pos').text();
85
        var next_pos = current_pos - 0 + 1;
86
        
87
        if (next_pos > <%= $max_search_pos %>) {
88
          location.href = "<%= url_for('/')->query(word => $word, 'book-id' => $next_book_id)->fragment('word-1') %>";
89
        }
90
        else {
91
          location.href = '#word-' + next_pos;
92
          $('#word-pos').text(next_pos);
93
        }
94
      });
95
    % }
96
    
97
    $('.book').on('click', function () {
98
      var book_id_str = $(this).attr('id');
99
      var ret = book_id_str.match(/book-(\d+)/);
100
      var book_id = ret[1];
101
      var word;
102
      % if ($word_length) {
103
        % my $word_quote = $word;
104
        % $word_quote =~ s/'/\'/g;
105
        word = '<%= $word %>';
106
      % }
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
107
      
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
108
      $.get('/api/book/' + book_id + '/content', function (result) {
109

            
110
        if (word) {
111
          var i = 1;
112
          var replace_cb = function (all, group1) {
113
            var after = '<a style="background:#00ffff" id="word-' + i + '">' + group1 + '</a>';
114
            i = i + 1;
115
            return after;
116
          };
117
          // var word_regex_quote = word.replace(/([^0-9A-Za-z_])/g, '\\$1');
118
          //alert(word_regex_quote);
119
          
120
          var word_re = new RegExp('(' + word + ')', 'g');
121
          result.content = result.content.replace(word_re, function (all, group1) { return replace_cb(all, group1); });
122
        }
123
        
124
        $("#content").html(result.content);
125
        current_book_id = book_id;
126
      });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
127
    });
128
  });
129
% end
130

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

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

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

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

            
207

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