biblesearch / templates / index.html.ep /
Newer Older
191 lines | 5.705kb
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 = [];
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
15
    
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
16
    var fragment = location.hash;
17
    var current_pos;
18
    if (fragment) {
19
      var ret = fragment.match(/word-(\d)/);
20
      current_pos = ret[1] - 0;
21
    }
22
    else {
23
      current_pos = 1;
24
    }
25
    $("#word-pos").text(current_pos);
26
    
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
27
    $("#up-arrow").on('click', function () {
28
      var current_pos = $('#word-pos').text();
29
      var prev_pos = current_pos - 1;
30
      
31
      if (prev_pos < 1) {
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
32
        
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
33
      } else {
34
        location.href = '#word-' + prev_pos;
35
        $('#word-pos').text(prev_pos);
36
      }
37
    });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
38

            
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
39
    $("#down-arrow").on('click', function () {
40
      var current_pos = $('#word-pos').text();
41
      var next_pos = current_pos - 0 + 1;
42
      
43
      if (next_pos > 10) {
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
44
        
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
45
      }
46
      else {
47
        location.href = '#word-' + next_pos;
48
        $('#word-pos').text(next_pos);
49
      }
50
    });
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
51
    
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
52
    // 書をクリック
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
53
    $('.book').on('click', function () {
54
      var book_id_str = $(this).attr('id');
55
      var ret = book_id_str.match(/book-(\d+)/);
56
      var book_id = ret[1];
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
57
      
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
58
      $.get('/api/book/' + book_id + '/content', function (result) {
59

            
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
60
        if (current_word) {
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
61
          var i = 1;
62
          var replace_cb = function (all, group1) {
63
            var after = '<a style="background:#00ffff" id="word-' + i + '">' + group1 + '</a>';
64
            i = i + 1;
65
            return after;
66
          };
67
          
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
68
          var word_re = new RegExp('(' + current_word + ')', 'g');
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
69
          result.content = result.content.replace(word_re, function (all, group1) { return replace_cb(all, group1); });
70
        }
71
        
72
        $("#content").html(result.content);
73
        current_book_id = book_id;
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
74
        
75
        $('#books tr').each(function () {
76
          var book_id_str = $(this).attr('id');
77
          if (book_id_str) {
78
            var book_id = (book_id_str.match(/book-(\d+)/))[1];
79
            if (book_id === current_book_id) {
80
              $(this).find('.book-short-name').css('background', '#DDDDDD');
81
            }
82
            else {
83
              $(this).find('.book-short-name').css('background', '#FFFFFF');
84
            }
85
          }
86
        });
文字列の置換をjavascript側で行うようにした。
Yuki Kimoto authored on 2014-03-29
87
      });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
88
    });
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
89
    
90
    // 検索をクリック
91
    $('#search').on('click', function () {
92
      var word = $(this).closest('div').find('[name=word]').val();
93
      
94
      if (word) {
95
        var word_count_h;
96
        $.get('/api/word-count/' + word, function (result) {
97
          var word_count_h = result.word_count;
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
98

            
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
99
          $('#books tr').each(function () {
100
            var book_id_str = $(this).attr('id');
101
            if (book_id_str) {
102
              var book_id = (book_id_str.match(/book-(\d+)/))[1];
103
              if (word_count_h[book_id] === 0) {
104
                $(this).css('display', 'none');
105
              }
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
106
              else {
107
                found_book_ids.push(book_id);
108
              }
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
109
              $(this).find('.word-count').text(word_count_h[book_id]);
110
            }
111
          });
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
112
          $('#word-count-header').text('回数');
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
113
          
114
          current_word = word;
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
115
        });
116
        
117
      }
118
      
119
      return false;
120
    });
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
121
  });
122
% end
123

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

            
126
  <div id="boxA">
127
    <h1>口語訳聖書オンライン語句検索</h1>
128
  </div>
129

            
130
  <div id="boxB">
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
131
      <div style="margin-bottom:5px">
132
        <%= text_field 'word' , style => "width:160px" %>
133
        <button id="search" style="width:50px;padding:2px;">検索</button>
134
      </div>
add files
Yuki Kimoto authored on 2014-03-26
135
      <div style="margin-bottom:10px;">
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
136
        <table style="border-collapse: collapse;width:100%;color:#333333">
137
          <tr>
138
            <td style="width:90px">
139
              <a href="<%= url_for('/') %>" style="color:blue">聖書</a>
140
            </td>
141
            <td>
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
142
              <span id="up-down">
143
                <a id="up-arrow" href="javascript:void()">▲</a>
144
                <div id="word-pos" style="display:inline-block;border:1px solid #DDDDDD;padding:2px 5px;width:35px;text-align:center">
145
                </div>
146
                <a id="down-arrow" href="javascript:void()">▼</a>
147
              </span>
アンカーを移動できるようにした。
Yuki Kimoto authored on 2014-03-27
148
            </td>
149
          </tr>
150
        </table>
add files
Yuki Kimoto authored on 2014-03-26
151
      </div>
152
      <div style="border:1px solid gray;width:218px;height:400px;overflow:auto;padding:5px">
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
153
        <table id="books" style="border-collapse: collapse;width:100%;color:#333333">
improve design
Yuki Kimoto authored on 2014-03-27
154
            <tr style="border-bottom:1px solid #EEEEEE">
155
              <td>
156
157
              </td>
小さなバグを修正
Yuki Kimoto authored on 2014-03-29
158
              <td id="word-count-header" style="text-align:right">
improve design
Yuki Kimoto authored on 2014-03-27
159
              </td>
160
            </tr>
検索の送りを作成
Yuki Kimoto authored on 2014-03-28
161
          % my $prev_book_id;
add files
Yuki Kimoto authored on 2014-03-26
162
          % for my $book (@$books) {
件数取得をajaxにした
Yuki Kimoto authored on 2014-03-29
163
            <tr id="<%= "book-$book->{id}" %>">
書を選択したら色がつくようにした
Yuki Kimoto authored on 2014-03-29
164
              <td class="book-short-name">
165
                <a class="book" id="<%= "book-$book->{id}" %>" href="javascript:void(0)">
166
                  <%= $book->{short_name} %>
167
                </a>
168
              </td>
169
              <td class="word-count" style="text-align:right">
170
              </td>
improve design
Yuki Kimoto authored on 2014-03-27
171
            </tr>
add files
Yuki Kimoto authored on 2014-03-26
172
          % }
improve design
Yuki Kimoto authored on 2014-03-27
173
        </table>
add files
Yuki Kimoto authored on 2014-03-26
174
      </div>
175
  </div>
176

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

            
182

            
183
  <div id="boxD">
improve design
Yuki Kimoto authored on 2014-03-27
184
    <div style="border-top:1px solid #AAAAAA;padding-top:10px;">
185
      This site is create by
186
      <a href="http://d.hatena.ne.jp/perlcodesample">Perl</a> +
187
      <a href="http://d.hatena.ne.jp/perlcodesample/20140319/1395203665">Mojolicious</a>.
188
      Auther is <a href="https://twitter.com/yukikimoto2">Yuki kimoto</a>.
189
    </div>
add files
Yuki Kimoto authored on 2014-03-26
190
  </div>
191
</div>