ソースを参照

Organize structure of project

Sergey 2 年 前
コミット
87b4ec593b

+ 29 - 5
Chat.xcodeproj/project.pbxproj

@@ -100,10 +100,8 @@
 			isa = PBXGroup;
 			children = (
 				2F604598288D7E00008F005E /* ChatView.swift */,
-				2FB65BD928F9EE9300007021 /* ChatMessageListView.swift */,
-				2F6E936B28F8D74600FAF0E5 /* MessageTextField.swift */,
 				2FCB75EC28A42B1E0097BD1D /* ChatStore.swift */,
-				2F60459B288D8000008F005E /* MessageView.swift */,
+				2FCC05D728FB77E9004BED2A /* Helpers */,
 			);
 			path = Chat;
 			sourceTree = "<group>";
@@ -112,8 +110,8 @@
 			isa = PBXGroup;
 			children = (
 				2FCB75E628A425580097BD1D /* RoomsListView.swift */,
-				2FB65BD728F9D2C000007021 /* RoomsListCellView.swift */,
 				2FCB75E928A425900097BD1D /* RoomsListStore.swift */,
+				2FCC05D828FB781B004BED2A /* Cell */,
 			);
 			path = Rooms;
 			sourceTree = "<group>";
@@ -159,8 +157,8 @@
 			isa = PBXGroup;
 			children = (
 				2F60459E288D869B008F005E /* ChatListView.swift */,
-				2F6E936928F8D63600FAF0E5 /* ChatListCellView.swift */,
 				2F6045AF288E9D3E008F005E /* ChatListStore.swift */,
+				2FCC05D628FB77B4004BED2A /* Cell */,
 			);
 			path = ChatList;
 			sourceTree = "<group>";
@@ -174,6 +172,32 @@
 			path = Auth;
 			sourceTree = "<group>";
 		};
+		2FCC05D628FB77B4004BED2A /* Cell */ = {
+			isa = PBXGroup;
+			children = (
+				2F6E936928F8D63600FAF0E5 /* ChatListCellView.swift */,
+			);
+			path = Cell;
+			sourceTree = "<group>";
+		};
+		2FCC05D728FB77E9004BED2A /* Helpers */ = {
+			isa = PBXGroup;
+			children = (
+				2FB65BD928F9EE9300007021 /* ChatMessageListView.swift */,
+				2F6E936B28F8D74600FAF0E5 /* MessageTextField.swift */,
+				2F60459B288D8000008F005E /* MessageView.swift */,
+			);
+			path = Helpers;
+			sourceTree = "<group>";
+		};
+		2FCC05D828FB781B004BED2A /* Cell */ = {
+			isa = PBXGroup;
+			children = (
+				2FB65BD728F9D2C000007021 /* RoomsListCellView.swift */,
+			);
+			path = Cell;
+			sourceTree = "<group>";
+		};
 /* End PBXGroup section */
 
 /* Begin PBXNativeTarget section */

+ 0 - 0
Chat/UI/Chat/ChatMessageListView.swift → Chat/UI/Chat/Helpers/ChatMessageListView.swift


+ 0 - 0
Chat/UI/Chat/MessageTextField.swift → Chat/UI/Chat/Helpers/MessageTextField.swift


+ 0 - 0
Chat/UI/Chat/MessageView.swift → Chat/UI/Chat/Helpers/MessageView.swift


+ 0 - 0
Chat/UI/ChatList/ChatListCellView.swift → Chat/UI/ChatList/Cell/ChatListCellView.swift


+ 0 - 0
Chat/UI/Rooms/RoomsListCellView.swift → Chat/UI/Rooms/Cell/RoomsListCellView.swift