collaboration_whiteboard.html 6.91 KB
Newer Older
藤川諒 committed
1 2
<!doctype html>
<html lang="en">
Kim Peace committed
3

藤川諒 committed
4 5 6
<head>
  <!-- Required meta tags -->
  <meta charset="utf-8">
Kim Peace committed
7 8
  <meta name="viewport"
    content="width=device-width, initial-scale=1, shrink-to-fit=no, maximum-scale=1, user-scalable=0">
藤川諒 committed
9
  <title>LiveTaskyell</title>
10
  <link rel="stylesheet" href="./css/notosansjp.css">
藤川諒 committed
11 12 13 14 15 16
  <link href="./fontawesome/css/all.css" rel="stylesheet">
  <link rel="stylesheet" href="./css/bootstrap.min.css">
  <link rel="stylesheet" href="./css/common.css">
  <link rel="stylesheet" href="./css/collaboration.css">
  <link rel="stylesheet" href="./css/footer.css">
  <link rel="stylesheet" href="./css/font-awesome.css">
Lee Munkyeong committed
17
  <link rel="stylesheet" href="./css/share.css">
藤川諒 committed
18
</head>
Kim Peace committed
19

藤川諒 committed
20 21 22 23 24 25 26 27 28
<body>
  <!-- ナビメニュー -->
  <header id="collabo_header">
    <div class="d-flex align-items-center h-100">
      <div class="collabo_nav_l text-left w-100">
      </div>
      <div class="collabo_nav_r">
        <div class="text-right d-flex align-items-center">
          <button type="button" name="button" class="btn user_btn"></button>
Lee Munkyeong committed
29
          <button type="button" name="button" class="btn add_user_btn none"></button>
30
          <button type="button" name="button" class="btn menu_btn"></button>
31
          <!-- <button type="button" name="button" class="btn exit_btn" onclick="CoviewBridge.exitCollaboration();"></button> -->
藤川諒 committed
32 33 34 35 36 37
        </div>
      </div>
    </div>
  </header><!-- header -->

  <!-- 拡大縮小機能 -->
Lee Munkyeong committed
38
  <div id="zoom"></div>
藤川諒 committed
39
  <!-- コンテンツ -->
Lee Munkyeong committed
40 41 42 43
  <main id="collabo_main" class="none white_board">
    <div class="document_wrap">
      <div class="coview_share_body coview_share_area" id="coviewShare" style="z-index: 1;">
      </div>
藤川諒 committed
44 45 46
    </div>
  </main>

Lee Munkyeong committed
47 48
  <!-- ユーザー追加オーバーレイ -->
  <div id="add_user_list"></div>
Kim Peace committed
49
  <div id="modal_add_user_confirm"></div>
藤川諒 committed
50

Lee Munkyeong committed
51 52
  <!-- オーバーレイ メニュー -->
  <div id="collaboration_picture_overlay_menu"></div>
藤川諒 committed
53 54
  <!-- オーバーレイ ユーザーリスト -->
  <div id="overlay_user_list" class="overlay noscroll">
Lee Munkyeong committed
55
    <div id="collaboration_overlay_user_list"></div>
藤川諒 committed
56 57 58
  </div>

  <!-- キャプチャ モーダル -->
Lee Munkyeong committed
59
  <div id="modal_collabo_capture"></div>
藤川諒 committed
60
  <!-- プロフィールモーダル -->
Lee Munkyeong committed
61 62
  <div id="userProfileModalInCollaboration"></div>
  <div id="modal_collabo_profile2"></div>
藤川諒 committed
63
  <!-- ホスト変更モーダル -->
Lee Munkyeong committed
64
  <div id="modal_collabo_change_host"></div>
藤川諒 committed
65
  <!-- ホストリクエストモーダル -->
Lee Munkyeong committed
66
  <div id="modal_collabo_host_request"></div>
藤川諒 committed
67 68 69 70 71 72 73 74

  <!-- フッター -->
  <footer id="collabo_footer_menu" class="active">
    <button type="button" name="button" class="footer_menu_btn"></button>
    <div class="footer_menu-wrap d-flex justify-content-around h-100">
      <div class="d-flex align-items-center h-100">
        <div class="footer_menu_item">
          <a href="#">
Lee Munkyeong committed
75
            <div class="img_wrap bg_red" id="penBtn">
藤川諒 committed
76
              <img src="icon/icon_collabo_pen_white.svg" alt="ペン">
藤川諒 committed
77 78 79
            </div>
          </a>
        </div>
Lee Munkyeong committed
80
        <div class="footer_menu_item none">
藤川諒 committed
81 82
          <a href="#">
            <div class="img_wrap bg_blue">
藤川諒 committed
83
              <img src="icon/icon_collabo_place_white.svg" alt="場所">
藤川諒 committed
84 85 86 87 88
            </div>
          </a>
        </div>
        <div class="footer_menu_item">
          <a href="#">
Lee Munkyeong committed
89
            <div class="img_wrap bg_blue" id="eraserBtn">
藤川諒 committed
90
              <img src="icon/icon_collabo_delete_white.svg" alt="削除">
藤川諒 committed
91 92 93 94
            </div>
          </a>
        </div>
      </div>
Lee Munkyeong committed
95
      <div class="d-flex align-items-center h-100 none">
藤川諒 committed
96
        <div class="footer_menu_item">
Lee Munkyeong committed
97 98
          <a href="#">
            <div class="img_wrap bg_gray">
藤川諒 committed
99
              <img src="icon/icon_collabo_rewind_white.svg" alt="戻る">
Lee Munkyeong committed
100 101
            </div>
          </a>
藤川諒 committed
102 103
        </div>
        <div class="footer_menu_item">
Lee Munkyeong committed
104 105
          <a href="#">
            <div class="img_wrap bg_gray">
藤川諒 committed
106
              <img src="icon/icon_collabo_forward_white.svg" alt="進む">
Lee Munkyeong committed
107 108
            </div>
          </a>
藤川諒 committed
109 110 111 112 113
        </div>
      </div>
    </div>
  </footer>
  <!-- フッター -->
Lee Munkyeong committed
114
  <div id="footer_collabo"></div>
藤川諒 committed
115

116 117 118 119 120 121 122 123 124 125
  <!-- Library -->
  <script src="./js/libs/jquery-3.3.1.min.js"></script>
  <script src="./js/libs/moment.js"></script>
  <script src="./js/libs/locale/ko.js" charset="UTF-8"></script>
  <script src="./js/libs/locale/ja.js" charset="UTF-8"></script>
  <script src="./js/libs/mustache.min.js"></script>
  <script src="./js/libs/bootstrap.min.js"></script>
  <script src="./js/libs/jquery.mark.min.js"></script>
  <script src="./js/libs/socket.io.js"></script>
  <!-- Language -->
126 127 128 129
  <script src="./js/languages/language.js"></script>
  <script src="./js/languages/language_ko.js" charset="UTF-8"></script>
  <script src="./js/languages/language_ja.js" charset="UTF-8"></script>
  <script src="./js/languages/language_en.js" charset="UTF-8"></script>
130
  <!-- Common -->
131
  <script src="./js/common/constant.js"></script>
132 133
  <script src="./js/common/native-bridge-delegate.js"></script>
  <script src="./js/common/native-bridge-datasource.js"></script>
134
  <script src="./js/common/common.js"></script>
Kim Peace committed
135
  <script src="./js/utils/chat-util.js"></script>
Kim Peace committed
136 137 138 139
  <!-- Models -->
  <script src="./js/Models/deviceinfo.js"></script>
  <script src="./js/Models/serverinfo.js"></script>
  <script src="./js/Models/userinfo.js"></script>
140 141
  <script src="./js/Models/roominfo.js"></script>
  <script src="./js/Models/socket-joininfo.js"></script>
142
  <!-- Socket -->
143 144
  <script src="./js/sockets/chat-websocket.js"></script>
  <script src="./js/sockets/chat-websocket-message.js"></script>
Kim Peace committed
145
  <!-- View -->
146 147
  <script src="./js/views/chats/management/chat-management-common.js"></script>
  <script src="./js/views/collaboration/collaboration.js"></script>
Kim Peace committed
148
  <script src="./js/views/collaboration/collaboration-add-user.js"></script>
Lee Munkyeong committed
149
  <script src="https://biztaskyell.abookcloud.com/coview_api.js"></script>
150
  <script src="./js/views/collaboration/share.js"></script>
Kim Peace committed
151 152
  <script src="./js/views/collaboration/fermi-web-socket-message-handler.js"></script>
  <script src="./js/views/collaboration/fermi-web-socket-bridge.js"></script>
Kim Peace committed
153 154
  <script src="./js/views/collaboration/share-bind-button-action.js"></script>
  <script src="./js/views/collaboration/share-event-listener.js"></script>
155
  <script src="./js/views/contact/namecard.js"></script>
156

Lee Munkyeong committed
157 158 159 160 161 162 163 164 165 166
  <script>
    $("#footer_collabo").load("./footer_collabo.html");
    $("#modal_collabo_host_request").load("./modal_collabo_host_request.html");
    $("#modal_collabo_change_host").load("./modal_collabo_change_host.html");
    $("#modal_collabo_capture").load("./modal_collabo_capture.html");
    $("#modal_collabo_profile2").load("./modal_collabo_profile2.html");
    $("#collaboration_picture_overlay_menu").load("./collaboration_picture_overlay_menu.html");
    $("#add_user_list").load("./modal_add_user_list.html");
    $("#zoom").load("./zoom.html");

167 168
    globalUserInfo.collaborationType = COLLABORATION_TYPE.BOARD;
    if (globalUserInfo.joinType != COLLABORATION_JOIN_TYPE.INVITED) {
169 170
      CHAT_SOCKET.initialJoin();
    }
Lee Munkyeong committed
171
  </script>
藤川諒 committed
172
</body>
Kim Peace committed
173 174

</html>