style: 去除所有文件标头中的Description Tag
This commit is contained in:
parent
a2d4513e57
commit
eb94db1fe3
@ -12,7 +12,6 @@ import io.objectbox.android.Admin;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/5/4 10:37
|
||||
* @Description: 应用程序application类
|
||||
*/
|
||||
public class KchatApplication extends Application {
|
||||
private static KchatApplication instance;
|
||||
|
@ -8,7 +8,6 @@ import io.objectbox.annotation.Id;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/5/23 13:51
|
||||
* @Description: TODO
|
||||
*/
|
||||
@Entity
|
||||
public class ChatLists {
|
||||
|
@ -6,7 +6,6 @@ import io.objectbox.annotation.Id;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/5/23 13:38
|
||||
* @Description: TODO
|
||||
*/
|
||||
@Entity
|
||||
public class Messages {
|
||||
|
@ -3,7 +3,6 @@ package com.kaixed.kchat.model
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/16 13:36
|
||||
* @Description: TODO
|
||||
*/
|
||||
data class HomeItem(
|
||||
val name: String,
|
||||
|
@ -5,7 +5,6 @@ import kotlinx.serialization.Serializable
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/14 14:30
|
||||
* @Description: TODO
|
||||
*/
|
||||
|
||||
@Serializable
|
||||
|
@ -7,7 +7,6 @@ import kotlinx.serialization.Serializable
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/18 15:11
|
||||
* @Description: TODO
|
||||
*/
|
||||
@Serializable
|
||||
data class FriendRequestItem(
|
||||
|
@ -5,7 +5,6 @@ import kotlinx.serialization.Serializable
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/17 22:00
|
||||
* @Description: TODO
|
||||
*/
|
||||
|
||||
@Serializable
|
||||
|
@ -3,7 +3,6 @@ package com.kaixed.kchat.model.search
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/9/22 22:59
|
||||
* @Description: TODO
|
||||
*/
|
||||
data class SearchFriends(
|
||||
val code: String,
|
||||
|
@ -3,7 +3,6 @@ package com.kaixed.kchat.model.search
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/16 13:32
|
||||
* @Description: TODO
|
||||
*/
|
||||
data class SearchItem(
|
||||
val avatarUrl: String,
|
||||
|
@ -6,7 +6,6 @@ import android.os.Parcelable
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/9/22 22:58
|
||||
* @Description: 用户详细资料实体类
|
||||
*/
|
||||
data class User(
|
||||
val username: String,
|
||||
|
@ -3,7 +3,6 @@ package com.kaixed.kchat.model.setting
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/9 20:35
|
||||
* @Description: TODO
|
||||
*/
|
||||
data class FunctionItem(
|
||||
val itemName: String,
|
||||
|
@ -3,7 +3,6 @@ package com.kaixed.kchat.model.setting
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/9 20:33
|
||||
* @Description: TODO
|
||||
*/
|
||||
data class NormalItem(
|
||||
val name: String,
|
||||
|
@ -3,7 +3,6 @@ package com.kaixed.kchat.model.setting
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/8 13:53
|
||||
* @Description: TODO
|
||||
*/
|
||||
sealed class SettingItem {
|
||||
data class NormalItem(
|
||||
|
@ -5,7 +5,6 @@ import kotlinx.serialization.Serializable
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/16 13:35
|
||||
* @Description: TODO
|
||||
*/
|
||||
|
||||
@Serializable
|
||||
|
@ -5,7 +5,6 @@ import kotlinx.serialization.Serializable
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/16 13:33
|
||||
* @Description: TODO
|
||||
*/
|
||||
|
||||
@Serializable
|
||||
|
@ -5,7 +5,6 @@ import kotlinx.serialization.Serializable
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/16 13:34
|
||||
* @Description: TODO
|
||||
*/
|
||||
|
||||
@Serializable
|
||||
|
@ -3,7 +3,6 @@ package com.kaixed.kchat.network
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/14 13:46
|
||||
* @Description: 网络接口类
|
||||
*/
|
||||
object NetworkInterface {
|
||||
|
||||
|
@ -12,7 +12,6 @@ import okhttp3.RequestBody.Companion.toRequestBody
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/14 13:52
|
||||
* @Description: 封装okhttp进行网络请求
|
||||
*/
|
||||
|
||||
class NetworkRequest {
|
||||
|
@ -5,7 +5,6 @@ import okhttp3.OkHttpClient
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/5/27 8:58
|
||||
* @Description: 使用单例模式的okhttp实例类
|
||||
*/
|
||||
object OkhttpHelper {
|
||||
private var client: OkHttpClient? = null
|
||||
|
@ -21,7 +21,6 @@ import java.io.IOException
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/20 17:32
|
||||
* @Description: 联系人相关模块网络请求Repo类
|
||||
*/
|
||||
class ContactRepo {
|
||||
|
||||
@ -76,8 +75,7 @@ class ContactRepo {
|
||||
}
|
||||
|
||||
override fun onResponse(call: Call, response: Response) {
|
||||
if (response.isSuccessful && response.body != null) {
|
||||
val responseBody = response.body!!.string()
|
||||
response.body?.string()?.let { responseBody ->
|
||||
val contactResponse =
|
||||
Json.decodeFromString<AcceptContactRequest>(responseBody)
|
||||
acceptFriendMutableLiveData.postValue(contactResponse)
|
||||
@ -100,6 +98,11 @@ class ContactRepo {
|
||||
|
||||
NetworkRequest().postAsync(SERVER_URL + ADD_FRIEND, requestBody, object : Callback {
|
||||
override fun onResponse(call: Call, response: Response) {
|
||||
response.body?.string()?.let { responseBody ->
|
||||
val applyFriend =
|
||||
Json.decodeFromString<ApplyFriend>(responseBody)
|
||||
mutableLiveData.postValue(applyFriend)
|
||||
}
|
||||
if (response.isSuccessful && response.body != null) {
|
||||
val responseBody = response.body!!.string()
|
||||
val applyFriend =
|
||||
|
@ -16,7 +16,6 @@ import java.io.IOException
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/17 21:53
|
||||
* @Description: TODO
|
||||
*/
|
||||
class FriendListRepo {
|
||||
fun getFriendList(username: String): MutableLiveData<List<FriendItem>?> {
|
||||
|
@ -19,7 +19,6 @@ import okhttp3.Response;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/6/1 20:53
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class SearchFriendsRepository {
|
||||
public MutableLiveData<SearchFriends> searchFriends(String username) {
|
||||
|
@ -19,7 +19,6 @@ import okhttp3.Response;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/6/13 12:34
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class UserRepository {
|
||||
public MutableLiveData<UserList> getUserListByNickname(String username) {
|
||||
|
@ -7,7 +7,6 @@ import com.tencent.mmkv.MMKV;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/8/18 13:18
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class ConstantsUtil {
|
||||
public static int getKeyboardHeight() {
|
||||
|
@ -7,7 +7,6 @@ import android.graphics.drawable.GradientDrawable;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/8/14 19:22
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class DrawableUtil {
|
||||
public static GradientDrawable createDrawable(Integer color, int radius) {
|
||||
|
@ -20,7 +20,6 @@ import java.util.regex.Pattern;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/5/30 19:47
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class ImageSpanUtil {
|
||||
|
||||
|
@ -7,7 +7,6 @@ import androidx.appcompat.app.AppCompatActivity
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/21 22:32
|
||||
* @Description: TODO
|
||||
*/
|
||||
open class BaseActivity : AppCompatActivity() {
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
|
@ -41,7 +41,6 @@ import io.objectbox.Box;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/5/26 10:02
|
||||
* @Description: 应用的主活动
|
||||
*/
|
||||
public class MainActivity extends AppCompatActivity implements OnChatListItemClickListener {
|
||||
private ActivityMainBinding binding;
|
||||
|
@ -33,7 +33,6 @@ import io.objectbox.Box;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/5/4 22:48
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class ChatAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
|
||||
private final LinkedList<Messages> messages;
|
||||
|
@ -27,7 +27,6 @@ import java.util.List;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/5/20 10:13
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class ChatListAdapter extends RecyclerView.Adapter<ChatListAdapter.MyViewHolder> {
|
||||
private final List<ChatLists> chatLists;
|
||||
|
@ -18,7 +18,6 @@ import java.util.List;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/5/30 16:51
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class EmojiAdapter extends RecyclerView.Adapter<EmojiAdapter.MyViewHolder> {
|
||||
|
||||
|
@ -14,7 +14,6 @@ import com.kaixed.kchat.view.activity.ChatActivity
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/14 14:47
|
||||
* @Description: TODO
|
||||
*/
|
||||
class FriendListAdapter(private val items: MutableList<FriendItem>, private val context: Context) :
|
||||
RecyclerView.Adapter<FriendListAdapter.MyViewHolder>() {
|
||||
|
@ -13,7 +13,6 @@ import java.util.List;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/8/16 20:53
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class FunctionPanelAdapter extends BaseAdapter {
|
||||
|
||||
|
@ -17,7 +17,6 @@ import com.kaixed.kchat.view.activity.ApproveDetailActivity
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/18 15:08
|
||||
* @Description: 好友通知列表的适配器类
|
||||
*/
|
||||
class MessageListAdapter(private val items: MutableList<FriendRequestItem>, val context: Context) :
|
||||
RecyclerView.Adapter<MessageListAdapter.MyViewHolder>() {
|
||||
|
@ -17,7 +17,6 @@ import java.util.List;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/8/12 20:25
|
||||
* @Description: 搜索结果的Adapter
|
||||
*/
|
||||
public class SearchResultAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
|
||||
|
||||
|
@ -17,7 +17,6 @@ import com.kaixed.kchat.utils.Constants.MESSAGE_TYPE_TITLE
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/8 13:53
|
||||
* @Description: TODO
|
||||
*/
|
||||
class SettingListAdapter(private val items: MutableList<SettingItem>) :
|
||||
RecyclerView.Adapter<ViewHolder>() {
|
||||
|
@ -3,7 +3,6 @@ package com.kaixed.kchat.view.i;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/6/16 19:28
|
||||
* @Description: TODO
|
||||
*/
|
||||
public interface OnChatListItemClickListener {
|
||||
void onItemClick(String username);
|
||||
|
@ -17,7 +17,6 @@ import com.kaixed.kchat.view.activity.ProfileDetailActivity
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/10 22:28
|
||||
* @Description: 自定义Item控件,以便于复用以减少重复代码
|
||||
*/
|
||||
class CustomItem @JvmOverloads constructor(
|
||||
context: Context,
|
||||
|
@ -12,7 +12,6 @@ import com.kaixed.kchat.databinding.PreferenceCategoryCustomLayoutBinding
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/10 14:45
|
||||
* @Description: TODO
|
||||
*/
|
||||
class CustomPreferenceCategory @JvmOverloads constructor(
|
||||
context: Context,
|
||||
|
@ -13,7 +13,6 @@ import com.kaixed.kchat.databinding.ViewTitleBarBinding
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/10 22:13
|
||||
* @Description: 自定义标题栏控件
|
||||
*/
|
||||
class CustomTitleBar @JvmOverloads constructor(
|
||||
context: Context,
|
||||
|
@ -5,7 +5,6 @@ import androidx.lifecycle.ViewModel;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/6/1 20:52
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class AddFriendViewModel extends ViewModel {
|
||||
|
||||
|
@ -8,7 +8,6 @@ import com.kaixed.kchat.repository.ContactRepo
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/15 17:29
|
||||
* @Description: TODO
|
||||
*/
|
||||
class ApplyFriendViewModel : ViewModel() {
|
||||
private var contactRepo: ContactRepo = ContactRepo()
|
||||
|
@ -13,7 +13,6 @@ import com.kaixed.kchat.repository.SearchFriendsRepository
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/20 17:40
|
||||
* @Description: TODO
|
||||
*/
|
||||
class ContactViewModel : ViewModel() {
|
||||
private val contactRepo = ContactRepo()
|
||||
|
@ -6,7 +6,6 @@ import com.kaixed.kchat.repository.FriendListRepo
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/10/17 22:02
|
||||
* @Description: TODO
|
||||
*/
|
||||
class FriendListViewModel : ViewModel() {
|
||||
private val friendListRepo = FriendListRepo()
|
||||
|
@ -9,7 +9,6 @@ import com.kaixed.kchat.repository.LoginRepository;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/5/27 9:29
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class LoginViewModel extends ViewModel {
|
||||
private final LoginRepository loginRepository;
|
||||
|
@ -8,7 +8,6 @@ import com.kaixed.kchat.repository.SearchFriendsRepository
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/9/22 23:04
|
||||
* @Description: TODO
|
||||
*/
|
||||
class SearchFriendsViewModel : ViewModel() {
|
||||
private var searchFriendsRepo: SearchFriendsRepository = SearchFriendsRepository()
|
||||
|
@ -9,7 +9,6 @@ import com.kaixed.kchat.repository.UserRepository;
|
||||
/**
|
||||
* @Author: kaixed
|
||||
* @Date: 2024/6/13 12:49
|
||||
* @Description: TODO
|
||||
*/
|
||||
public class UserViewModel extends ViewModel {
|
||||
private final UserRepository userRepository;
|
||||
|
Loading…
Reference in New Issue
Block a user