Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in / Register
A
abook_check
  • Overview
    • Overview
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • abook_android
  • abook_check
  • Merge Requests
  • !186

Merged
Opened Jul 26, 2021 by onuma@onuma 2 of 2 tasks completed2/2 tasks
  • Report abuse
Report abuse

JavaScriptのインタフェース名変更に対応した。

LGTMの場合、チェックをしてください。

  • @kim-p
  • @kim_j
Edited Jul 26, 2021 by Kim Peace
  • Discussion 26
  • Commits 9
  • Changes 13
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/ChatGroupDao.java
    70 70 sql.append(" FROM m_chat_group mygroup ");
    71 71 sql.append(" LEFT JOIN m_chat_group parentgroup on mygroup.parent_group_id = parentgroup.group_id ");
    72 72 sql.append(" LEFT JOIN m_chat_group grandparentgroup on parentgroup.parent_group_id = grandparentgroup.group_id ");
    73 sql.append(" WHERE mygroup.group_id IN (select group_id from m_shop_member sm inner join r_shop_member_group rmg on sm.shop_member_id = rmg.shop_member_id where sm.self_flg = 1)");
    73 sql.append(" WHERE mygroup.group_id IN (select group_id from m_shop_member sm INNER JOIN r_shop_member_group rmg on sm.shop_member_id = rmg.shop_member_id WHERE sm.self_flg = 1)");
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] SELECT, FROM, ONも大文字でお願いします。

      [nits] `SELECT`, `FROM`, `ON`も大文字でお願いします。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#0637d5e5645829927b59309ed1c642c1f2095e8e_73_71)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/ChatGroupDao.java
    156 156 }
    157 157
    158 158 public ChatGroupDto getGroup(int groupId) {
    159 return rawQueryGetDto("select * from m_chat_group where group_id = " + groupId, null, ChatGroupDto.class);
    159 return rawQueryGetDto("SELECT * from m_chat_group WHERE group_id = " + groupId, null, ChatGroupDto.class);
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] fromも大文字でお願いします。

      [nits] `from`も大文字でお願いします。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#0637d5e5645829927b59309ed1c642c1f2095e8e_159_159)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/ChatGroupDao.java
    208 return rawQueryGetDto("SELECT * FROM m_chat_group mg WHERE (mg.parent_group_id = 0)",null, ChatGroupDto.class);
    209 209 }
    210 210
    211 211 public ChatGroupDto getParentGroup(Integer childGroupId) {
    212 return rawQueryGetDto("select parent.* from m_chat_group parent inner join m_chat_group child on child.parent_group_id = parent.group_id where child.group_id = ?", new String[]{""+ childGroupId}, ChatGroupDto.class);
    212 return rawQueryGetDto("SELECT parent.* from m_chat_group parent INNER JOIN m_chat_group child on child.parent_group_id = parent.group_id WHERE child.group_id = ?", new String[]{""+ childGroupId}, ChatGroupDto.class);
    213 213 }
    214 214
    215 215 public boolean isExistParent(int baseId) {
    216 return rawQueryGetInt("select * from m_chat_group where parent_group_id = " + baseId, null) > 0;
    216 return rawQueryGetInt("SELECT * FROM m_chat_group WHERE parent_group_id = " + baseId, null) > 0;
    217 217 }
    218 218
    219 219 public List<ChatGroupDto> getMyGroups() {
    220 return rawQueryGetDtoList("select * from m_chat_group where group_id IN (select group_id from m_shop_member sm inner join r_shop_member_group rmg on sm.shop_member_id = rmg.shop_member_id where sm.self_flg = 1) ORDER BY group_name ASC", null, ChatGroupDto.class);
    220 return rawQueryGetDtoList("SELECT * FROM m_chat_group WHERE group_id IN (SELECT group_id from m_shop_member sm INNER JOIN r_shop_member_group rmg on sm.shop_member_id = rmg.shop_member_id WHERE sm.self_flg = 1) ORDER BY group_name ASC", null, ChatGroupDto.class);
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] 真ん中のfrom、onも大文字でお願いします。

      [nits] 真ん中の`from`、`on`も大文字でお願いします。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#0637d5e5645829927b59309ed1c642c1f2095e8e_220_220)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/ChatMessageDao.java
    205 205 }
    206 206
    207 207 public boolean updateChatMessage(ChatMessageDto dto) {
    208 long count = update("update t_chat_message set chat_room_id=?, shop_member_id=?, login_id=?,message=?, message_type=?, image_name=?, download_file_name=?, save_path=?, insert_date=?, unread_count where chat_message_id=?", dto.getUpdateValues());
    208 long count = update("UPDATE t_chat_message set chat_room_id=?, shop_member_id=?, login_id=?,message=?, message_type=?, image_name=?, download_file_name=?, save_path=?, insert_date=?, unread_count WHERE chat_message_id=?", dto.getUpdateValues());
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] setも大文字でお願いします。

      [nits] `set`も大文字でお願いします。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#76db526db355a601cf2d211f0b24a8744ba84e15_208_208)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/ShopMemberDao.java
    257 253 sql.append(" m_shop_member AS sm ");
    258 254 sql.append(" INNER JOIN r_shop_member_group AS rsmg ");
    259 255 sql.append(" ON sm.shop_member_id = rsmg.shop_member_id ");
    260 sql.append("WHERE rsmg.group_id IN (select group_id from m_shop_member sm inner join r_shop_member_group rmg on sm.shop_member_id = rmg.shop_member_id where sm.self_flg = 1) ");
    256 sql.append("WHERE rsmg.group_id IN (SELECT group_id FROM m_shop_member sm INNER JOIN r_shop_member_group rmg on sm.shop_member_id = rmg.shop_member_id WHERE sm.self_flg = 1) ");
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] on

      [nits] `on`
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#4a61023828aacb667872f22fb56ab7198728afef_256_256)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/data/ChatData.java 0 → 100644
    36 public class ChatData {
    37 private Context context;
    38 public String sid;
    39 public String roomName;
    40 public String loginId;
    41 public String shopName;
    42 public Integer shopMemberId;
    43 private boolean isOnline;
    44 public String groupId;
    45 public Long roomId;
    46 public String roomType;
    47 private String strCollaborationType;
    48 private String beforeRoomType;
    49 public Integer joinMeetingId;
    50 private boolean isMobile;
    51 // 0:協業生成, 1:協業参加
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] 2もあります。DMルームの参加者ではない人が協業から招待されたら2(invite)状態になると思います。

      [nits] 2もあります。DMルームの参加者ではない人が協業から招待されたら`2`(invite)状態になると思います。
    • onuma @onuma commented Jul 26, 2021
      Master

      コメントを削除しました。

      コメントを削除しました。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#15edc12c25caa3be965dd1f1d41a665f746d88a3_51_51)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/data/ChatData.java 0 → 100644
    202 RoomListJSON resultJson = AcmsClient.getInstance(ABVEnvironment.getInstance().networkAdapter).getRoomList(sid);
    203 communicationLogic.insertChatRoomList(resultJson.roomList);
    204 }
    205
    206 /**
    207 *
    208 * @param changeRoomName
    209 * @throws NetworkDisconnectedException
    210 * @throws AcmsException
    211 */
    212 public void changeRoomName(String changeRoomName) throws NetworkDisconnectedException, AcmsException {
    213 ChangeRoomNameJSON resultJson = AcmsClient.getInstance(ABVEnvironment.getInstance().networkAdapter).changeRoomName(sid, changeRoomName, roomId.intValue());
    214 if (resultJson.status != 200) { return; }
    215
    216 communicationLogic.updateChatRoomName(changeRoomName, roomId.intValue());
    217 //joinRoom(roomId.toString(), changeRoomName);
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] コードのコメントアウトはその理由などをコメントなどに残すか、削除してください。

      [nits] コードのコメントアウトはその理由などをコメントなどに残すか、削除してください。
    • onuma @onuma commented Jul 26, 2021
      Master

      コメントアウトしたコードを削除しました。

      コメントアウトしたコードを削除しました。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#15edc12c25caa3be965dd1f1d41a665f746d88a3_217_216)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/data/ChatData.java 0 → 100644
    235 SharedPreferences.Editor editor = pref.edit();
    236 editor.putString(ABookCommConstants.KEY.ARCHIVE_UPDATED_DATE, resultJson.archiveLastUpdateDate);
    237 editor.commit();
    238 }
    239
    240 public void updateArchiveDetail(String archiveId) throws NetworkDisconnectedException, AcmsException {
    241 ArchiveDto archiveDto = communicationLogic.getArchive(Integer.parseInt(archiveId));
    242 RoomJSON resultJson = AcmsClient.getInstance(ABVEnvironment.getInstance().networkAdapter).getRoom(sid, archiveDto.roomId.toString());
    243 archiveDto.roomName = resultJson.chatRoomDto.chatRoomName;
    244 communicationLogic.updateArchiveDetial(archiveDto);
    245 }
    246
    247 public void joinCollaboration(String collaborationType, String meetingId) throws NetworkDisconnectedException, AcmsException {
    248 joinMeetingId = Integer.parseInt(meetingId);
    249 collaborationJoinFlg = ABookCommConstants.FLAG.COLLABORATION_JOIN_FLG.JOIN;
    250 AcmsClient.getInstance(ABVEnvironment.getInstance().networkAdapter).joinCollaboration(sid, roomId.intValue());
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [want] 関数型関数の実行は.の後に改行していただくと読みやすくなります。

      // not preferred
      AcmsClient.getInstance(ABVEnvironment.getInstance().networkAdapter).joinCollaboration(sid, roomId.intValue());
      // preferred
      AcmsClient
          .getInstance(ABVEnvironment.getInstance().networkAdapter)
          .joinCollaboration(sid, roomId.intValue());
      [want] 関数型関数の実行は`.`の後に改行していただくと読みやすくなります。 ```java // not preferred AcmsClient.getInstance(ABVEnvironment.getInstance().networkAdapter).joinCollaboration(sid, roomId.intValue()); // preferred AcmsClient .getInstance(ABVEnvironment.getInstance().networkAdapter) .joinCollaboration(sid, roomId.intValue()); ```
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#15edc12c25caa3be965dd1f1d41a665f746d88a3_250_248)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by Kim Peace Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/data/ChatData.java 0 → 100644
    275 private void updateFavoriteGroup() throws NetworkDisconnectedException, AcmsException {
    276 GetFavoriteGroupJSON resultJson = AcmsClient.getInstance(ABVEnvironment.getInstance().networkAdapter).getFavoriteGroup(sid);
    277 communicationLogic.updateFavoriteGroup(resultJson.favoriteGroupIds);
    278 }
    279
    280 private void updateAllGroupInfo() throws NetworkDisconnectedException, AcmsException {
    281 updateGroupInfoFromServer();
    282 }
    283
    284 public void updateFavoriteInfo() throws NetworkDisconnectedException, AcmsException {
    285 updateFavoriteUser();
    286 updateFavoriteGroup();
    287 }
    288
    289 public void updateGroupInfoFromServer() throws NetworkDisconnectedException, AcmsException {
    290 ArrayList<String> checkSumList = new ArrayList<String>();
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [must] 宣言されていますが、使われてないです。 不要なものであれば、削除をお願いします。

      [must] 宣言されていますが、使われてないです。 不要なものであれば、削除をお願いします。
    • onuma @onuma commented Jul 26, 2021
      Master

      ChatWebViewActivity にある同じメソッドを削除して ChatDataのメソッドを使用するように修正しました。

      ChatWebViewActivity にある同じメソッドを削除して ChatDataのメソッドを使用するように修正しました。
    • Kim Peace @kim-p

      changed this line in version 3 of the diff

      Jul 26, 2021

      changed this line in version 3 of the diff

      changed this line in [version 3 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6701&start_sha=76b07967cabe5c99f4b1c4cd840738b6f32f4712#15edc12c25caa3be965dd1f1d41a665f746d88a3_298_320)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/data/ChatData.java 0 → 100644
    366 jsonObj.put(ABookCommConstants.KEY.SHOP_MEMBER_ID, shopMemberId);
    367 jsonObj.put(ABookCommConstants.KEY.LANGUAGE_CODE, languageCode);
    368 return jsonObj.toString();
    369 }
    370 public String getRoomInfo() {
    371 JSONObject jsonObj = new JSONObject();
    372 jsonObj.put(ABookCommConstants.KEY.ROOM_ID_UPPERCASE_D, roomId);
    373 jsonObj.put(ABookCommConstants.KEY.ROOM_NAME, roomName);
    374 jsonObj.put(ABookCommConstants.KEY.ROOM_TYPE, roomType);
    375 return jsonObj.toString();
    376 }
    377
    378 public String getDeviceInfo() {
    379 JSONObject jsonObj = new JSONObject();
    380 jsonObj.put(ABookCommConstants.KEY.IS_MOBILE, isMobile);
    381 jsonObj.put(ABookCommConstants.KEY.PLATFORM, "android");
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [must] "android"ハードコーディングはなるべく控えていただきたいです。private final staticなどで宣言して使ってください。

      [must] `"android"`ハードコーディングはなるべく控えていただきたいです。private final staticなどで宣言して使ってください。
    • onuma @onuma commented Jul 26, 2021
      Master

      ABookCommConstantsにPLATFORM_NAME="android"を追加しました。

      ABookCommConstantsにPLATFORM_NAME="android"を追加しました。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#15edc12c25caa3be965dd1f1d41a665f746d88a3_381_391)
      Toggle commit list
    Please register or sign in to reply
  • Kim Jinsung @kim_j

    marked the task @kim_j as completed

    Jul 26, 2021

    marked the task @kim_j as completed

    marked the task **@kim_j** as completed
    Toggle commit list
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/ChatWebView.java 0 → 100644
    47 settings.setAllowFileAccessFromFileURLs(true);
    48 settings.setSaveFormData(false);
    49 settings.setAllowUniversalAccessFromFileURLs(true);
    50 if (Logger.isDebugEnabled()) {
    51 setWebContentsDebuggingEnabled(true); //デバッグモード(chromeからinspect可)
    52 }
    53 this.chatData = chatData;
    54 }
    55
    56 @JavascriptInterface
    57 public void saveVisitRoomInfo(String roomId, String roomName) {
    58 chatActivity.saveVisitRoomInfo(roomId, roomName);
    59 }
    60
    61 @JavascriptInterface
    62 public void getLoginParameter() {
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] jsでなくなったので、削除お願いします。

      [nits] jsでなくなったので、削除お願いします。
    • onuma @onuma commented Jul 26, 2021
      Master

      削除しました。

      削除しました。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#997fba8875c99811bd414b393715ace3005c4289_62_62)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/ChatWebView.java 0 → 100644
    57 public void saveVisitRoomInfo(String roomId, String roomName) {
    58 chatActivity.saveVisitRoomInfo(roomId, roomName);
    59 }
    60
    61 @JavascriptInterface
    62 public void getLoginParameter() {
    63 post(new Runnable() {
    64 @Override
    65 public void run() {
    66 chatActivity.getLogin();
    67 }
    68 });
    69 }
    70
    71 @JavascriptInterface
    72 public void getGlobalParameter() {
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] jsでなくなったので、削除お願いします。

      [nits] jsでなくなったので、削除お願いします。
    • onuma @onuma commented Jul 26, 2021
      Master

      削除しました

      削除しました
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#997fba8875c99811bd414b393715ace3005c4289_72_62)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/ChatWebView.java 0 → 100644
    77 }
    78 });
    79 }
    80
    81 @JavascriptInterface
    82 public void goHome() {
    83 post(new Runnable() {
    84 @Override
    85 public void run() {
    86 chatActivity.backToHome();
    87 }
    88 });
    89 }
    90
    91 @JavascriptInterface
    92 public void openOperationRelatedContent() {
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] jsでまだ存在するか確認お願いします。

      [nits] jsでまだ存在するか確認お願いします。
    • onuma @onuma commented Jul 26, 2021
      Master

      存在します。このまま残します。

      存在します。このまま残します。
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/ChatWebView.java 0 → 100644
    169 public void changeRoomName(String changeRoomName) throws NetworkDisconnectedException, AcmsException {
    170 chatActivity.changeRoomName(changeRoomName);
    171 }
    172
    173 @JavascriptInterface
    174 public void joinRoom(String joinRoomId, String joinRoomName) {
    175 chatActivity.joinRoom(joinRoomId, joinRoomName);
    176 }
    177
    178 @JavascriptInterface
    179 public void roomDisplayOff() {
    180 chatActivity.roomDisplayOff();
    181 }
    182
    183 @JavascriptInterface
    184 public void inviteUsers(String userIds, boolean isCollaboration) throws NetworkDisconnectedException, AcmsException {
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] jsのコードを見たら、いつもisCollaborationをfalseに送っています。確認後、削除しても良いのであれば、パラメータの削除をお願いいたします。

      [nits] jsのコードを見たら、いつも`isCollaboration`をfalseに送っています。確認後、削除しても良いのであれば、パラメータの削除をお願いいたします。
    • onuma @onuma commented Jul 26, 2021
      Master

      パラメータを削除しました。

      パラメータを削除しました。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#997fba8875c99811bd414b393715ace3005c4289_184_164)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/ChatWebView.java 0 → 100644
    425 public int createContentView() {
    426 return chatActivity.createContentView();
    427 }
    428
    429 @JavascriptInterface
    430 public void startContentView() throws InterruptedException {
    431 chatActivity.startContentView();
    432 }
    433
    434 @JavascriptInterface
    435 public void joinMeetingRoom(int newMeetingId) throws InterruptedException {
    436 chatActivity.joinMeetingRoom(newMeetingId);
    437 }
    438
    439 @JavascriptInterface
    440 public void startPipMode() {
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] startPipMode -> startPIPMode

      [nits] `startPipMode` -> `startPIPMode`
    • onuma @onuma commented Jul 26, 2021
      Master

      修正しました。

      修正しました。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#997fba8875c99811bd414b393715ace3005c4289_440_420)
      Toggle commit list
    Please register or sign in to reply
  • Kim Peace
    @kim-p started a discussion on an old version of the diff Jul 26, 2021
    Last updated by onuma Jul 26, 2021
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/ChatWebView.java 0 → 100644
    478 encodedVideo.delete();
    479 }
    480 }
    481
    482 @JavascriptInterface
    483 public void setHostRequestFlg(int hostRequestFlg) {
    484 chatData.setHostRequestFlg(hostRequestFlg);
    485 }
    486
    487 @JavascriptInterface
    488 public int getHostRequestFlg() {
    489 return chatData.getHostRequestFlg();
    490 }
    491
    492 @JavascriptInterface
    493 public void finishPip() {
    • Kim Peace @kim-p commented Jul 26, 2021
      Master

      [nits] finishPip -> finishPIP

      [nits] `finishPip` -> `finishPIP`
    • onuma @onuma commented Jul 26, 2021
      Master

      修正しました。

      修正しました。
    • onuma @onuma

      changed this line in version 2 of the diff

      Jul 26, 2021

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72#997fba8875c99811bd414b393715ace3005c4289_493_473)
      Toggle commit list
    Please register or sign in to reply
  • onuma @onuma

    assigned to @kim-p

    Jul 26, 2021

    assigned to @kim-p

    assigned to @kim-p
    Toggle commit list
  • onuma @onuma

    assigned to @onuma

    Jul 26, 2021

    assigned to @onuma

    assigned to @onuma
    Toggle commit list
  • onuma @onuma

    added 1 commit

    • 76b07967 - 削除されたJavaScript呼び出しを削除。SQL文修正。未使用のメソッド削除。

    Compare with previous version

    Jul 26, 2021

    added 1 commit

    • 76b07967 - 削除されたJavaScript呼び出しを削除。SQL文修正。未使用のメソッド削除。

    Compare with previous version

    added 1 commit * 76b07967 - 削除されたJavaScript呼び出しを削除。SQL文修正。未使用のメソッド削除。 [Compare with previous version](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6698&start_sha=0f2c5b21d939fff635799c85b0f2b6e405cfcd72)
    Toggle commit list
  • onuma @onuma

    assigned to @kim_j

    Jul 26, 2021

    assigned to @kim_j

    assigned to @kim_j
    Toggle commit list
  • onuma @onuma

    assigned to @kim-p

    Jul 26, 2021

    assigned to @kim-p

    assigned to @kim-p
    Toggle commit list
  • Kim Peace @kim-p

    marked the task @kim-p as completed

    Jul 26, 2021

    marked the task @kim-p as completed

    marked the task **@kim-p** as completed
    Toggle commit list
  • Kim Peace @kim-p

    assigned to @onuma

    Jul 26, 2021

    assigned to @onuma

    assigned to @onuma
    Toggle commit list
  • Kim Peace @kim-p

    added 2 commits

    • e673a50a - Rearranged communication code
    • 702306a7 - Merge branch 'communication/#43526-refactoring-offer' into 'communication/develop_43526_onuma'

    Compare with previous version

    Jul 26, 2021

    added 2 commits

    • e673a50a - Rearranged communication code
    • 702306a7 - Merge branch 'communication/#43526-refactoring-offer' into 'communication/develop_43526_onuma'

    Compare with previous version

    added 2 commits * e673a50a - Rearranged communication code * 702306a7 - Merge branch &#x27;communication&#x2F;#43526-refactoring-offer&#x27; into &#x27;communication&#x2F;develop_43526_onuma&#x27; [Compare with previous version](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/186/diffs?diff_id=6701&start_sha=76b07967cabe5c99f4b1c4cd840738b6f32f4712)
    Toggle commit list
  • Kim Peace @kim-p

    merged

    Jul 26, 2021

    merged

    merged
    Toggle commit list
  • Kim Peace @kim-p

    mentioned in commit 9534665c

    Jul 26, 2021

    mentioned in commit 9534665c

    mentioned in commit 9534665cb35ed319b3df16085a7f6498546d8878
    Toggle commit list
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment
onuma
Assignee
onuma @onuma
Assign to
None
Milestone
None
Assign milestone
Time tracking
3
3 participants
Reference: abook_android/abook_check!186
×

Revert this merge request

Switch branch
Cancel
A new branch will be created in your fork and a new merge request will be started.
×

Cherry-pick this merge request

Switch branch
Cancel
A new branch will be created in your fork and a new merge request will be started.