Compare commits
27 Commits
home_page
...
revert-48-
| Author | SHA1 | Date | |
|---|---|---|---|
| 721b7aa9ab | |||
| f16be90cc3 | |||
| 0bbfd9b739 | |||
| 13593212df | |||
| 56f225702e | |||
| 0a5b81cc5c | |||
| 10fc40373d | |||
| f18ee9e360 | |||
| 9262288bc9 | |||
| 3273b17d15 | |||
| 4ef5a94d46 | |||
| 4a684886fa | |||
| d7f87c7c55 | |||
| 00933dadb8 | |||
| d5cc186e27 | |||
| 90156745ad | |||
| 7095832722 | |||
| 658b337d22 | |||
| f6a760371a | |||
| 13ed16078b | |||
| 2a5174cbb6 | |||
| ea26cb40a0 | |||
| eb8119b775 | |||
| 66da741eda | |||
| 18dd52e193 | |||
| f839a793a3 | |||
| 54df6c088b |
32
.idea/gradle.xml
generated
@@ -1,20 +1,20 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="GradleMigrationSettings" migrationVersion="1" />
|
<component name="GradleMigrationSettings" migrationVersion="1" />
|
||||||
<component name="GradleSettings">
|
<component name="GradleSettings">
|
||||||
<option name="linkedExternalProjectsSettings">
|
<option name="linkedExternalProjectsSettings">
|
||||||
<GradleProjectSettings>
|
<GradleProjectSettings>
|
||||||
<option name="testRunner" value="CHOOSE_PER_TEST" />
|
<option name="testRunner" value="CHOOSE_PER_TEST" />
|
||||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||||
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
|
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
|
||||||
<option name="modules">
|
<option name="modules">
|
||||||
<set>
|
<set>
|
||||||
<option value="$PROJECT_DIR$" />
|
<option value="$PROJECT_DIR$" />
|
||||||
<option value="$PROJECT_DIR$/app" />
|
<option value="$PROJECT_DIR$/app" />
|
||||||
</set>
|
</set>
|
||||||
|
</option>
|
||||||
|
<option name="resolveExternalAnnotations" value="false" />
|
||||||
|
</GradleProjectSettings>
|
||||||
</option>
|
</option>
|
||||||
<option name="resolveExternalAnnotations" value="false" />
|
</component>
|
||||||
</GradleProjectSettings>
|
|
||||||
</option>
|
|
||||||
</component>
|
|
||||||
</project>
|
</project>
|
||||||
BIN
app/src/main/assets/login.lottie
Normal file
BIN
app/src/main/assets/login_light.lottie
Normal file
@@ -46,6 +46,7 @@ object AppState {
|
|||||||
var enableGoogleLogin: Boolean = false
|
var enableGoogleLogin: Boolean = false
|
||||||
var enableChat = false
|
var enableChat = false
|
||||||
var agentCreatedSuccess by mutableStateOf(false)
|
var agentCreatedSuccess by mutableStateOf(false)
|
||||||
|
var chatBackgroundUrl by mutableStateOf<String?>(null)
|
||||||
suspend fun initWithAccount(scope: CoroutineScope, context: Context) {
|
suspend fun initWithAccount(scope: CoroutineScope, context: Context) {
|
||||||
// 如果是游客模式,使用简化的初始化流程
|
// 如果是游客模式,使用简化的初始化流程
|
||||||
if (AppStore.isGuest) {
|
if (AppStore.isGuest) {
|
||||||
|
|||||||
@@ -32,6 +32,21 @@ data class Moment(
|
|||||||
val time: String,
|
val time: String,
|
||||||
@SerializedName("isFollowed")
|
@SerializedName("isFollowed")
|
||||||
val isFollowed: Boolean,
|
val isFollowed: Boolean,
|
||||||
|
// 新闻相关字段
|
||||||
|
@SerializedName("isNews")
|
||||||
|
val isNews: Boolean = false,
|
||||||
|
@SerializedName("newsTitle")
|
||||||
|
val newsTitle: String? = null,
|
||||||
|
@SerializedName("newsUrl")
|
||||||
|
val newsUrl: String? = null,
|
||||||
|
@SerializedName("newsSource")
|
||||||
|
val newsSource: String? = null,
|
||||||
|
@SerializedName("newsCategory")
|
||||||
|
val newsCategory: String? = null,
|
||||||
|
@SerializedName("newsLanguage")
|
||||||
|
val newsLanguage: String? = null,
|
||||||
|
@SerializedName("newsContent")
|
||||||
|
val newsContent: String? = null,
|
||||||
) {
|
) {
|
||||||
fun toMomentItem(): MomentEntity {
|
fun toMomentItem(): MomentEntity {
|
||||||
return MomentEntity(
|
return MomentEntity(
|
||||||
@@ -60,6 +75,14 @@ data class Moment(
|
|||||||
authorId = user.id.toInt(),
|
authorId = user.id.toInt(),
|
||||||
liked = isLiked,
|
liked = isLiked,
|
||||||
isFavorite = isFavorite,
|
isFavorite = isFavorite,
|
||||||
|
// 新闻相关字段
|
||||||
|
isNews = isNews,
|
||||||
|
newsTitle = newsTitle ?: "",
|
||||||
|
newsUrl = newsUrl ?: "",
|
||||||
|
newsSource = newsSource ?: "",
|
||||||
|
newsCategory = newsCategory ?: "",
|
||||||
|
newsLanguage = newsLanguage ?: "",
|
||||||
|
newsContent = newsContent ?: ""
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -81,7 +81,9 @@ data class CreateGroupChatRequestBody(
|
|||||||
|
|
||||||
data class JoinGroupChatRequestBody(
|
data class JoinGroupChatRequestBody(
|
||||||
@SerializedName("trtcId")
|
@SerializedName("trtcId")
|
||||||
val trtcId: String,
|
val trtcId: String? = null,
|
||||||
|
@SerializedName("roomId")
|
||||||
|
val roomId: Int? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
data class LoginUserRequestBody(
|
data class LoginUserRequestBody(
|
||||||
@@ -271,6 +273,127 @@ data class RemoveAccountRequestBody(
|
|||||||
val password: String,
|
val password: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// API 错误响应(用于加入房间等接口的错误处理)
|
||||||
|
data class ApiErrorResponse(
|
||||||
|
@SerializedName("err")
|
||||||
|
val error: String,
|
||||||
|
@SerializedName("success")
|
||||||
|
val success: Boolean
|
||||||
|
)
|
||||||
|
|
||||||
|
// 群聊中的用户信息
|
||||||
|
data class GroupChatUser(
|
||||||
|
@SerializedName("ID")
|
||||||
|
val id: Int,
|
||||||
|
@SerializedName("CreatedAt")
|
||||||
|
val createdAt: String,
|
||||||
|
@SerializedName("UpdatedAt")
|
||||||
|
val updatedAt: String,
|
||||||
|
@SerializedName("DeletedAt")
|
||||||
|
val deletedAt: String?,
|
||||||
|
@SerializedName("userSessionId")
|
||||||
|
val userSessionId: String,
|
||||||
|
@SerializedName("sessions")
|
||||||
|
val sessions: Any?, // 根据实际需要可以定义具体类型
|
||||||
|
@SerializedName("prompts")
|
||||||
|
val prompts: Any?, // 根据实际需要可以定义具体类型
|
||||||
|
@SerializedName("isAgent")
|
||||||
|
val isAgent: Boolean
|
||||||
|
)
|
||||||
|
|
||||||
|
// 智能体角色信息
|
||||||
|
data class GroupChatPrompt(
|
||||||
|
@SerializedName("ID")
|
||||||
|
val id: Int,
|
||||||
|
@SerializedName("CreatedAt")
|
||||||
|
val createdAt: String,
|
||||||
|
@SerializedName("UpdatedAt")
|
||||||
|
val updatedAt: String,
|
||||||
|
@SerializedName("DeletedAt")
|
||||||
|
val deletedAt: String?,
|
||||||
|
@SerializedName("Title")
|
||||||
|
val title: String,
|
||||||
|
@SerializedName("Desc")
|
||||||
|
val desc: String,
|
||||||
|
@SerializedName("Value")
|
||||||
|
val value: String,
|
||||||
|
@SerializedName("Enable")
|
||||||
|
val enable: Boolean,
|
||||||
|
@SerializedName("UserSessions")
|
||||||
|
val userSessions: Any?, // 根据实际需要可以定义具体类型
|
||||||
|
@SerializedName("Avatar")
|
||||||
|
val avatar: String,
|
||||||
|
@SerializedName("AuthorId")
|
||||||
|
val authorId: Int?,
|
||||||
|
@SerializedName("Author")
|
||||||
|
val author: Any?, // 根据实际需要可以定义具体类型
|
||||||
|
@SerializedName("TokenCount")
|
||||||
|
val tokenCount: Int,
|
||||||
|
@SerializedName("OpenId")
|
||||||
|
val openId: String,
|
||||||
|
@SerializedName("Public")
|
||||||
|
val public: Boolean,
|
||||||
|
@SerializedName("BreakMode")
|
||||||
|
val breakMode: Boolean,
|
||||||
|
@SerializedName("DocNamespace")
|
||||||
|
val docNamespace: String,
|
||||||
|
@SerializedName("UseRag")
|
||||||
|
val useRag: Boolean,
|
||||||
|
@SerializedName("RagThreshold")
|
||||||
|
val ragThreshold: Double,
|
||||||
|
@SerializedName("WorkflowId")
|
||||||
|
val workflowId: Int?,
|
||||||
|
@SerializedName("Workflow")
|
||||||
|
val workflow: Any?, // 根据实际需要可以定义具体类型
|
||||||
|
@SerializedName("WorkflowInputs")
|
||||||
|
val workflowInputs: Any?, // 根据实际需要可以定义具体类型
|
||||||
|
@SerializedName("Source")
|
||||||
|
val source: String,
|
||||||
|
@SerializedName("categories")
|
||||||
|
val categories: Any? // 根据实际需要可以定义具体类型
|
||||||
|
)
|
||||||
|
|
||||||
|
// 群聊详细信息响应
|
||||||
|
data class GroupChatResponse(
|
||||||
|
@SerializedName("ID")
|
||||||
|
val id: Int,
|
||||||
|
@SerializedName("CreatedAt")
|
||||||
|
val createdAt: String,
|
||||||
|
@SerializedName("UpdatedAt")
|
||||||
|
val updatedAt: String,
|
||||||
|
@SerializedName("DeletedAt")
|
||||||
|
val deletedAt: String?,
|
||||||
|
@SerializedName("name")
|
||||||
|
val name: String,
|
||||||
|
@SerializedName("description")
|
||||||
|
val description: String,
|
||||||
|
@SerializedName("creatorId")
|
||||||
|
val creatorId: Int,
|
||||||
|
@SerializedName("creator")
|
||||||
|
val creator: Any?, // 根据实际需要可以定义具体类型
|
||||||
|
@SerializedName("trtcRoomId")
|
||||||
|
val trtcRoomId: String,
|
||||||
|
@SerializedName("trtcType")
|
||||||
|
val trtcType: String,
|
||||||
|
@SerializedName("cover")
|
||||||
|
val cover: String,
|
||||||
|
@SerializedName("avatar")
|
||||||
|
val avatar: String,
|
||||||
|
@SerializedName("recommendBanner")
|
||||||
|
val recommendBanner: String,
|
||||||
|
@SerializedName("isRecommended")
|
||||||
|
val isRecommended: Boolean,
|
||||||
|
@SerializedName("allowInHot")
|
||||||
|
val allowInHot: Boolean,
|
||||||
|
@SerializedName("users")
|
||||||
|
val users: List<GroupChatUser>,
|
||||||
|
@SerializedName("prompts")
|
||||||
|
val prompts: List<GroupChatPrompt>,
|
||||||
|
@SerializedName("source")
|
||||||
|
val source: String
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
data class CategoryTranslation(
|
data class CategoryTranslation(
|
||||||
@SerializedName("name")
|
@SerializedName("name")
|
||||||
val name: String?,
|
val name: String?,
|
||||||
@@ -366,6 +489,134 @@ data class CategoryListResponse(
|
|||||||
val list: List<CategoryTemplate>
|
val list: List<CategoryTemplate>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// ========== Prompt Rule 相关数据类 ==========
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建规则请求体
|
||||||
|
* @param rule 规则内容,不能为空
|
||||||
|
* @param promptId 智能体ID,与 openId 二选一,promptId 优先
|
||||||
|
* @param openId 智能体的 OpenID(UUID格式),与 promptId 二选一
|
||||||
|
*/
|
||||||
|
data class CreatePromptRuleRequestBody(
|
||||||
|
@SerializedName("rule")
|
||||||
|
val rule: String,
|
||||||
|
@SerializedName("promptId")
|
||||||
|
val promptId: Int? = null,
|
||||||
|
@SerializedName("openId")
|
||||||
|
val openId: String? = null
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改规则请求体
|
||||||
|
* @param id 规则ID,必填
|
||||||
|
* @param rule 新的规则内容,不能为空
|
||||||
|
* @param promptId 要更改关联的智能体ID(可选)
|
||||||
|
* @param openId 要更改关联的智能体 OpenID(可选)
|
||||||
|
*/
|
||||||
|
data class UpdatePromptRuleRequestBody(
|
||||||
|
@SerializedName("id")
|
||||||
|
val id: Int,
|
||||||
|
@SerializedName("rule")
|
||||||
|
val rule: String,
|
||||||
|
@SerializedName("promptId")
|
||||||
|
val promptId: Int? = null,
|
||||||
|
@SerializedName("openId")
|
||||||
|
val openId: String? = null
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 规则关联的智能体信息
|
||||||
|
* @param id 智能体ID
|
||||||
|
* @param title 智能体标题
|
||||||
|
* @param avatar 智能体头像URL
|
||||||
|
*/
|
||||||
|
data class PromptRuleAgent(
|
||||||
|
@SerializedName("id")
|
||||||
|
val id: Int,
|
||||||
|
@SerializedName("title")
|
||||||
|
val title: String,
|
||||||
|
@SerializedName("avatar")
|
||||||
|
val avatar: String
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 规则详情
|
||||||
|
* @param id 规则ID
|
||||||
|
* @param rule 规则内容
|
||||||
|
* @param creator 创建者名称
|
||||||
|
* @param creatorType 创建者类型(如 "user")
|
||||||
|
* @param scope 作用域(如 "personal")
|
||||||
|
* @param prompt 关联的智能体信息
|
||||||
|
* @param createdAt 创建时间(ISO 8601 格式)
|
||||||
|
* @param updatedAt 更新时间(ISO 8601 格式)
|
||||||
|
*/
|
||||||
|
data class PromptRule(
|
||||||
|
@SerializedName("id")
|
||||||
|
val id: Int,
|
||||||
|
@SerializedName("rule")
|
||||||
|
val rule: String,
|
||||||
|
@SerializedName("creator")
|
||||||
|
val creator: String,
|
||||||
|
@SerializedName("creator_type")
|
||||||
|
val creatorType: String,
|
||||||
|
@SerializedName("scope")
|
||||||
|
val scope: String,
|
||||||
|
@SerializedName("prompt")
|
||||||
|
val prompt: PromptRuleAgent,
|
||||||
|
@SerializedName("created_at")
|
||||||
|
val createdAt: String,
|
||||||
|
@SerializedName("updated_at")
|
||||||
|
val updatedAt: String
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 规则列表响应
|
||||||
|
* @param page 当前页码
|
||||||
|
* @param pageSize 每页数量
|
||||||
|
* @param total 总记录数
|
||||||
|
* @param list 规则列表
|
||||||
|
*/
|
||||||
|
data class PromptRuleListResponse(
|
||||||
|
@SerializedName("page")
|
||||||
|
val page: Int,
|
||||||
|
@SerializedName("pageSize")
|
||||||
|
val pageSize: Int,
|
||||||
|
@SerializedName("total")
|
||||||
|
val total: Int,
|
||||||
|
@SerializedName("list")
|
||||||
|
val list: List<PromptRule>
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 规则配额信息
|
||||||
|
* @param promptId 智能体ID
|
||||||
|
* @param promptTitle 智能体标题
|
||||||
|
* @param baseMaxCount 基础条数限制(免费配额)
|
||||||
|
* @param purchasedCount 用户购买的额外条数
|
||||||
|
* @param totalMaxCount 总可用条数(基础+购买)
|
||||||
|
* @param currentCount 当前已创建的规则条数
|
||||||
|
* @param remainingCount 剩余可用条数
|
||||||
|
* @param usagePercent 使用百分比(0-100)
|
||||||
|
*/
|
||||||
|
data class PromptRuleQuota(
|
||||||
|
@SerializedName("promptId")
|
||||||
|
val promptId: Int,
|
||||||
|
@SerializedName("promptTitle")
|
||||||
|
val promptTitle: String,
|
||||||
|
@SerializedName("baseMaxCount")
|
||||||
|
val baseMaxCount: Int,
|
||||||
|
@SerializedName("purchasedCount")
|
||||||
|
val purchasedCount: Int,
|
||||||
|
@SerializedName("totalMaxCount")
|
||||||
|
val totalMaxCount: Int,
|
||||||
|
@SerializedName("currentCount")
|
||||||
|
val currentCount: Int,
|
||||||
|
@SerializedName("remainingCount")
|
||||||
|
val remainingCount: Int,
|
||||||
|
@SerializedName("usagePercent")
|
||||||
|
val usagePercent: Double
|
||||||
|
)
|
||||||
|
|
||||||
interface RaveNowAPI {
|
interface RaveNowAPI {
|
||||||
@GET("membership/config")
|
@GET("membership/config")
|
||||||
@retrofit2.http.Headers("X-Requires-Auth: true")
|
@retrofit2.http.Headers("X-Requires-Auth: true")
|
||||||
@@ -404,6 +655,7 @@ interface RaveNowAPI {
|
|||||||
@Query("trend") trend: String? = null,
|
@Query("trend") trend: String? = null,
|
||||||
@Query("favouriteUserId") favouriteUserId: Int? = null,
|
@Query("favouriteUserId") favouriteUserId: Int? = null,
|
||||||
@Query("explore") explore: String? = null,
|
@Query("explore") explore: String? = null,
|
||||||
|
@Query("newsFilter") newsFilter: String? = null,
|
||||||
): Response<ListContainer<Moment>>
|
): Response<ListContainer<Moment>>
|
||||||
|
|
||||||
@Multipart
|
@Multipart
|
||||||
@@ -677,7 +929,10 @@ interface RaveNowAPI {
|
|||||||
suspend fun agentMoment(@Body body: AgentMomentRequestBody): Response<DataContainer<String>>
|
suspend fun agentMoment(@Body body: AgentMomentRequestBody): Response<DataContainer<String>>
|
||||||
|
|
||||||
@GET("outside/rooms/open")
|
@GET("outside/rooms/open")
|
||||||
suspend fun createGroupChatAi(@Query("trtcGroupId") trtcGroupId: String): Response<DataContainer<Unit>>
|
suspend fun createGroupChatAi(
|
||||||
|
@Query("trtcGroupId") trtcGroupId: String? = null,
|
||||||
|
@Query("roomId") roomId: Int? = null
|
||||||
|
): Response<DataContainer<GroupChatResponse>>
|
||||||
|
|
||||||
@POST("outside/rooms/create-single-chat")
|
@POST("outside/rooms/create-single-chat")
|
||||||
suspend fun createSingleChat(@Body body: SingleChatRequestBody): Response<DataContainer<Unit>>
|
suspend fun createSingleChat(@Body body: SingleChatRequestBody): Response<DataContainer<Unit>>
|
||||||
@@ -692,6 +947,7 @@ interface RaveNowAPI {
|
|||||||
suspend fun getRooms(@Query("page") page: Int = 1,
|
suspend fun getRooms(@Query("page") page: Int = 1,
|
||||||
@Query("pageSize") pageSize: Int = 20,
|
@Query("pageSize") pageSize: Int = 20,
|
||||||
@Query("isRecommended") isRecommended: Int = 1,
|
@Query("isRecommended") isRecommended: Int = 1,
|
||||||
|
@Query("random") random: Int? = null,
|
||||||
): Response<ListContainer<Room>>
|
): Response<ListContainer<Room>>
|
||||||
|
|
||||||
@GET("outside/rooms/detail")
|
@GET("outside/rooms/detail")
|
||||||
@@ -736,5 +992,206 @@ interface RaveNowAPI {
|
|||||||
@Query("pageSize") pageSize: Int? = null
|
@Query("pageSize") pageSize: Int? = null
|
||||||
): Response<ListContainer<Agent>>
|
): Response<ListContainer<Agent>>
|
||||||
|
|
||||||
|
// ========== Prompt Rule API ==========
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建智能体规则
|
||||||
|
*
|
||||||
|
* 功能说明:
|
||||||
|
* - 为指定的智能体创建一条新规则
|
||||||
|
* - 规则必须关联到存在的智能体(通过 promptId 或 openId 指定)
|
||||||
|
* - 创建前会自动检查配额限制,如果超出会尝试自动扩容
|
||||||
|
* - 只有创建者可以修改和删除该规则
|
||||||
|
*
|
||||||
|
* @param body 创建规则请求体
|
||||||
|
* - rule: 规则内容,不能为空
|
||||||
|
* - promptId: 智能体ID(与 openId 二选一,promptId 优先)
|
||||||
|
* - openId: 智能体的 OpenID(UUID格式,与 promptId 二选一)
|
||||||
|
*
|
||||||
|
* @return 成功时返回空 Unit,失败时返回错误信息
|
||||||
|
*
|
||||||
|
* 示例:
|
||||||
|
* ```kotlin
|
||||||
|
* val request = CreatePromptRuleRequestBody(
|
||||||
|
* rule = "禁止讨论政治话题",
|
||||||
|
* promptId = 123
|
||||||
|
* )
|
||||||
|
* val response = api.createPromptRule(request)
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
@POST("outside/prompt/rule")
|
||||||
|
suspend fun createPromptRule(
|
||||||
|
@Body body: CreatePromptRuleRequestBody
|
||||||
|
): Response<Unit>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改智能体规则
|
||||||
|
*
|
||||||
|
* 功能说明:
|
||||||
|
* - 修改已存在的规则内容或关联的智能体
|
||||||
|
* - 只有规则的创建者可以修改
|
||||||
|
* - 可以同时修改规则内容和关联的智能体
|
||||||
|
* - 修改关联智能体时会重新验证配额限制
|
||||||
|
*
|
||||||
|
* @param body 修改规则请求体
|
||||||
|
* - id: 规则ID,必填
|
||||||
|
* - rule: 新的规则内容,不能为空
|
||||||
|
* - promptId: 要更改关联的智能体ID(可选)
|
||||||
|
* - openId: 要更改关联的智能体 OpenID(可选)
|
||||||
|
*
|
||||||
|
* @return 成功时返回空 Unit,失败时返回错误信息
|
||||||
|
*
|
||||||
|
* 权限要求:
|
||||||
|
* - 必须是规则的创建者(creator_type 为 "user" 且 create_id 匹配)
|
||||||
|
*
|
||||||
|
* 示例:
|
||||||
|
* ```kotlin
|
||||||
|
* val request = UpdatePromptRuleRequestBody(
|
||||||
|
* id = 456,
|
||||||
|
* rule = "禁止讨论政治和敏感话题"
|
||||||
|
* )
|
||||||
|
* val response = api.updatePromptRule(request)
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
@retrofit2.http.PUT("outside/prompt/rule")
|
||||||
|
suspend fun updatePromptRule(
|
||||||
|
@Body body: UpdatePromptRuleRequestBody
|
||||||
|
): Response<Unit>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除智能体规则
|
||||||
|
*
|
||||||
|
* 功能说明:
|
||||||
|
* - 删除指定的规则
|
||||||
|
* - 只有规则的创建者可以删除
|
||||||
|
* - 删除操作不可恢复,请谨慎操作
|
||||||
|
*
|
||||||
|
* @param id 规则ID
|
||||||
|
*
|
||||||
|
* @return 成功时返回空 Unit,失败时返回错误信息
|
||||||
|
*
|
||||||
|
* 权限要求:
|
||||||
|
* - 必须是规则的创建者(creator_type 为 "user" 且 create_id 匹配)
|
||||||
|
*
|
||||||
|
* 示例:
|
||||||
|
* ```kotlin
|
||||||
|
* val response = api.deletePromptRule(456)
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
@DELETE("outside/prompt/rule/{id}")
|
||||||
|
suspend fun deletePromptRule(
|
||||||
|
@Path("id") id: Int
|
||||||
|
): Response<Unit>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询智能体规则列表
|
||||||
|
*
|
||||||
|
* 功能说明:
|
||||||
|
* - 查询指定智能体下当前用户创建的规则列表
|
||||||
|
* - 支持分页和关键词模糊搜索
|
||||||
|
* - 只返回当前用户创建的规则,不会返回其他用户的规则
|
||||||
|
*
|
||||||
|
* @param promptId 智能体ID,支持数字ID或UUID格式的 openId
|
||||||
|
* @param rule 规则内容关键词(模糊搜索),可选
|
||||||
|
* @param page 页码,默认 1
|
||||||
|
* @param pageSize 每页数量,默认 10
|
||||||
|
*
|
||||||
|
* @return 返回分页的规则列表,包含规则详情和关联的智能体信息
|
||||||
|
*
|
||||||
|
* 响应数据说明:
|
||||||
|
* - page: 当前页码
|
||||||
|
* - pageSize: 每页数量
|
||||||
|
* - total: 总记录数
|
||||||
|
* - list: 规则列表
|
||||||
|
* - id: 规则ID
|
||||||
|
* - rule: 规则内容
|
||||||
|
* - creator: 创建者名称
|
||||||
|
* - creator_type: 创建者类型
|
||||||
|
* - scope: 作用域
|
||||||
|
* - prompt: 关联的智能体信息(id, title, avatar)
|
||||||
|
* - created_at: 创建时间
|
||||||
|
* - updated_at: 更新时间
|
||||||
|
*
|
||||||
|
* 示例:
|
||||||
|
* ```kotlin
|
||||||
|
* // 使用数字ID查询
|
||||||
|
* val response1 = api.getPromptRuleList("123", page = 1, pageSize = 10)
|
||||||
|
*
|
||||||
|
* // 使用 OpenID 查询
|
||||||
|
* val response2 = api.getPromptRuleList(
|
||||||
|
* "550e8400-e29b-41d4-a716-446655440000",
|
||||||
|
* page = 1,
|
||||||
|
* pageSize = 10
|
||||||
|
* )
|
||||||
|
*
|
||||||
|
* // 带关键词搜索
|
||||||
|
* val response3 = api.getPromptRuleList(
|
||||||
|
* "123",
|
||||||
|
* rule = "政治",
|
||||||
|
* page = 1,
|
||||||
|
* pageSize = 10
|
||||||
|
* )
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
@GET("outside/prompt/{promptId}/rule/list")
|
||||||
|
suspend fun getPromptRuleList(
|
||||||
|
@Path("promptId") promptId: String,
|
||||||
|
@Query("rule") rule: String? = null,
|
||||||
|
@Query("page") page: Int = 1,
|
||||||
|
@Query("pageSize") pageSize: Int = 10
|
||||||
|
): Response<DataContainer<PromptRuleListResponse>>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询智能体规则配额信息
|
||||||
|
*
|
||||||
|
* 功能说明:
|
||||||
|
* - 查询指定智能体的规则条数使用情况
|
||||||
|
* - 包括基础配额、已购买配额、已使用数量等完整信息
|
||||||
|
* - 用于判断是否还能创建新规则
|
||||||
|
*
|
||||||
|
* @param promptId 智能体ID,支持数字ID或UUID格式的 openId
|
||||||
|
*
|
||||||
|
* @return 返回配额详细信息
|
||||||
|
*
|
||||||
|
* 响应数据说明:
|
||||||
|
* - promptId: 智能体ID
|
||||||
|
* - promptTitle: 智能体标题
|
||||||
|
* - baseMaxCount: 基础条数限制(免费配额,由智能体等级决定)
|
||||||
|
* - purchasedCount: 用户购买的额外条数
|
||||||
|
* - totalMaxCount: 总可用条数(baseMaxCount + purchasedCount)
|
||||||
|
* - currentCount: 当前已创建的规则条数(只统计当前用户创建的)
|
||||||
|
* - remainingCount: 剩余可用条数(totalMaxCount - currentCount)
|
||||||
|
* - usagePercent: 使用百分比,0-100(currentCount / totalMaxCount * 100)
|
||||||
|
*
|
||||||
|
* 使用场景:
|
||||||
|
* 1. 创建规则前检查是否有足够配额
|
||||||
|
* 2. 展示规则使用情况统计
|
||||||
|
* 3. 提示用户购买额外配额
|
||||||
|
*
|
||||||
|
* 示例:
|
||||||
|
* ```kotlin
|
||||||
|
* // 使用数字ID查询
|
||||||
|
* val response1 = api.getPromptRuleQuota("123")
|
||||||
|
*
|
||||||
|
* // 使用 OpenID 查询
|
||||||
|
* val response2 = api.getPromptRuleQuota("550e8400-e29b-41d4-a716-446655440000")
|
||||||
|
*
|
||||||
|
* // 处理响应
|
||||||
|
* response1.body()?.data?.let { quota ->
|
||||||
|
* if (quota.remainingCount > 0) {
|
||||||
|
* // 可以创建新规则
|
||||||
|
* println("还可以创建 ${quota.remainingCount} 条规则")
|
||||||
|
* } else {
|
||||||
|
* // 配额已用完
|
||||||
|
* println("规则配额已用完,已使用 ${quota.currentCount}/${quota.totalMaxCount}")
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
@GET("outside/prompt/{promptId}/rule/count")
|
||||||
|
suspend fun getPromptRuleQuota(
|
||||||
|
@Path("promptId") promptId: String
|
||||||
|
): Response<DataContainer<PromptRuleQuota>>
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -299,12 +299,21 @@ data class MomentEntity(
|
|||||||
// 关联动态
|
// 关联动态
|
||||||
var relMoment: MomentEntity? = null,
|
var relMoment: MomentEntity? = null,
|
||||||
// 是否收藏
|
// 是否收藏
|
||||||
var isFavorite: Boolean = false
|
var isFavorite: Boolean = false,
|
||||||
|
// 新闻相关字段
|
||||||
|
val isNews: Boolean = false,
|
||||||
|
val newsTitle: String = "",
|
||||||
|
val newsUrl: String = "",
|
||||||
|
val newsSource: String = "",
|
||||||
|
val newsCategory: String = "",
|
||||||
|
val newsLanguage: String = "",
|
||||||
|
val newsContent: String = ""
|
||||||
)
|
)
|
||||||
class MomentLoaderExtraArgs(
|
class MomentLoaderExtraArgs(
|
||||||
val explore: Boolean? = false,
|
val explore: Boolean? = false,
|
||||||
val timelineId: Int? = null,
|
val timelineId: Int? = null,
|
||||||
val authorId : Int? = null
|
val authorId : Int? = null,
|
||||||
|
val newsOnly: Boolean? = null
|
||||||
)
|
)
|
||||||
class MomentLoader : DataLoader<MomentEntity,MomentLoaderExtraArgs>() {
|
class MomentLoader : DataLoader<MomentEntity,MomentLoaderExtraArgs>() {
|
||||||
override suspend fun fetchData(
|
override suspend fun fetchData(
|
||||||
@@ -317,7 +326,8 @@ class MomentLoader : DataLoader<MomentEntity,MomentLoaderExtraArgs>() {
|
|||||||
pageSize = pageSize,
|
pageSize = pageSize,
|
||||||
explore = if (extra.explore == true) "true" else "",
|
explore = if (extra.explore == true) "true" else "",
|
||||||
timelineId = extra.timelineId,
|
timelineId = extra.timelineId,
|
||||||
authorId = extra.authorId
|
authorId = extra.authorId,
|
||||||
|
newsFilter = if (extra.newsOnly == true) "news_only" else ""
|
||||||
)
|
)
|
||||||
val data = result.body()?.let {
|
val data = result.body()?.let {
|
||||||
ListContainer(
|
ListContainer(
|
||||||
@@ -355,6 +365,18 @@ class MomentLoader : DataLoader<MomentEntity,MomentLoaderExtraArgs>() {
|
|||||||
onListChanged?.invoke(this.list)
|
onListChanged?.invoke(this.list)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun updateCommentCount(id: Int, delta: Int) {
|
||||||
|
this.list = this.list.map { momentItem ->
|
||||||
|
if (momentItem.id == id) {
|
||||||
|
val newCount = (momentItem.commentCount + delta).coerceAtLeast(0)
|
||||||
|
momentItem.copy(commentCount = newCount)
|
||||||
|
} else {
|
||||||
|
momentItem
|
||||||
|
}
|
||||||
|
}.toMutableList()
|
||||||
|
onListChanged?.invoke(this.list)
|
||||||
|
}
|
||||||
|
|
||||||
fun removeMoment(id: Int) {
|
fun removeMoment(id: Int) {
|
||||||
this.list = this.list.filter { it.id != id }.toMutableList()
|
this.list = this.list.filter { it.id != id }.toMutableList()
|
||||||
onListChanged?.invoke(this.list)
|
onListChanged?.invoke(this.list)
|
||||||
|
|||||||
@@ -29,6 +29,12 @@ object AppStore {
|
|||||||
AppState.darkMode = true
|
AppState.darkMode = true
|
||||||
AppState.appTheme = DarkThemeColors()
|
AppState.appTheme = DarkThemeColors()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// load chat background
|
||||||
|
val savedBgUrl = sharedPreferences.getString("chatBackgroundUrl", null)
|
||||||
|
if (savedBgUrl != null) {
|
||||||
|
AppState.chatBackgroundUrl = savedBgUrl
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -54,5 +60,15 @@ object AppStore {
|
|||||||
}.apply()
|
}.apply()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun saveChatBackgroundUrl(url: String?) {
|
||||||
|
sharedPreferences.edit().apply {
|
||||||
|
if (url != null) {
|
||||||
|
putString("chatBackgroundUrl", url)
|
||||||
|
} else {
|
||||||
|
remove("chatBackgroundUrl")
|
||||||
|
}
|
||||||
|
}.apply()
|
||||||
|
AppState.chatBackgroundUrl = url
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -41,6 +41,7 @@ import com.aiosman.ravenow.ui.agent.AddAgentScreen
|
|||||||
import com.aiosman.ravenow.ui.agent.AgentImageCropScreen
|
import com.aiosman.ravenow.ui.agent.AgentImageCropScreen
|
||||||
import com.aiosman.ravenow.ui.group.CreateGroupChatScreen
|
import com.aiosman.ravenow.ui.group.CreateGroupChatScreen
|
||||||
import com.aiosman.ravenow.ui.chat.ChatAiScreen
|
import com.aiosman.ravenow.ui.chat.ChatAiScreen
|
||||||
|
import com.aiosman.ravenow.ui.chat.ChatSettingScreen
|
||||||
import com.aiosman.ravenow.ui.chat.ChatScreen
|
import com.aiosman.ravenow.ui.chat.ChatScreen
|
||||||
import com.aiosman.ravenow.ui.chat.GroupChatScreen
|
import com.aiosman.ravenow.ui.chat.GroupChatScreen
|
||||||
import com.aiosman.ravenow.ui.comment.CommentsScreen
|
import com.aiosman.ravenow.ui.comment.CommentsScreen
|
||||||
@@ -106,6 +107,7 @@ sealed class NavigationRoute(
|
|||||||
data object FavouriteList : NavigationRoute("FavouriteList")
|
data object FavouriteList : NavigationRoute("FavouriteList")
|
||||||
data object Chat : NavigationRoute("Chat/{id}")
|
data object Chat : NavigationRoute("Chat/{id}")
|
||||||
data object ChatAi : NavigationRoute("ChatAi/{id}")
|
data object ChatAi : NavigationRoute("ChatAi/{id}")
|
||||||
|
data object ChatSetting : NavigationRoute("ChatSetting")
|
||||||
data object ChatGroup : NavigationRoute("ChatGroup/{id}/{name}/{avatar}")
|
data object ChatGroup : NavigationRoute("ChatGroup/{id}/{name}/{avatar}")
|
||||||
data object CommentNoticeScreen : NavigationRoute("CommentNoticeScreen")
|
data object CommentNoticeScreen : NavigationRoute("CommentNoticeScreen")
|
||||||
data object ImageCrop : NavigationRoute("ImageCrop")
|
data object ImageCrop : NavigationRoute("ImageCrop")
|
||||||
@@ -491,6 +493,14 @@ fun NavigationController(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
composable(route = NavigationRoute.ChatSetting.route) {
|
||||||
|
CompositionLocalProvider(
|
||||||
|
LocalAnimatedContentScope provides this,
|
||||||
|
) {
|
||||||
|
ChatSettingScreen()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
composable(
|
composable(
|
||||||
route = NavigationRoute.ChatGroup.route,
|
route = NavigationRoute.ChatGroup.route,
|
||||||
arguments = listOf(navArgument("id") { type = NavType.StringType },
|
arguments = listOf(navArgument("id") { type = NavType.StringType },
|
||||||
|
|||||||
@@ -79,11 +79,12 @@ import com.aiosman.ravenow.R
|
|||||||
import com.aiosman.ravenow.entity.ChatItem
|
import com.aiosman.ravenow.entity.ChatItem
|
||||||
import com.aiosman.ravenow.exp.formatChatTime
|
import com.aiosman.ravenow.exp.formatChatTime
|
||||||
import com.aiosman.ravenow.ui.composables.CustomAsyncImage
|
import com.aiosman.ravenow.ui.composables.CustomAsyncImage
|
||||||
import com.aiosman.ravenow.ui.composables.DropdownMenu
|
|
||||||
import com.aiosman.ravenow.ui.composables.MenuItem
|
|
||||||
import com.aiosman.ravenow.ui.composables.StatusBarSpacer
|
import com.aiosman.ravenow.ui.composables.StatusBarSpacer
|
||||||
import com.aiosman.ravenow.ui.modifiers.noRippleClickable
|
import com.aiosman.ravenow.ui.modifiers.noRippleClickable
|
||||||
import com.aiosman.ravenow.utils.NetworkUtils
|
import com.aiosman.ravenow.utils.NetworkUtils
|
||||||
|
import com.aiosman.ravenow.ui.NavigationRoute
|
||||||
|
import com.aiosman.ravenow.AppState
|
||||||
|
import androidx.compose.ui.layout.ContentScale
|
||||||
import io.openim.android.sdk.enums.MessageType
|
import io.openim.android.sdk.enums.MessageType
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import java.util.UUID
|
import java.util.UUID
|
||||||
@@ -91,10 +92,10 @@ import java.util.UUID
|
|||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun ChatAiScreen(userId: String) {
|
fun ChatAiScreen(userId: String) {
|
||||||
var isMenuExpanded by remember { mutableStateOf(false) }
|
|
||||||
val navController = LocalNavController.current
|
val navController = LocalNavController.current
|
||||||
val context = LocalNavController.current.context
|
val context = LocalNavController.current.context
|
||||||
val AppColors = LocalAppTheme.current
|
val AppColors = LocalAppTheme.current
|
||||||
|
val chatBackgroundUrl = AppState.chatBackgroundUrl
|
||||||
var goToNewCount by remember { mutableStateOf(0) }
|
var goToNewCount by remember { mutableStateOf(0) }
|
||||||
val viewModel = viewModel<ChatAiViewModel>(
|
val viewModel = viewModel<ChatAiViewModel>(
|
||||||
key = "ChatAiViewModel_$userId",
|
key = "ChatAiViewModel_$userId",
|
||||||
@@ -158,14 +159,25 @@ fun ChatAiScreen(userId: String) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Scaffold(
|
Box(modifier = Modifier.fillMaxSize()) {
|
||||||
modifier = Modifier
|
if (chatBackgroundUrl != null && chatBackgroundUrl.isNotEmpty()) {
|
||||||
.fillMaxSize(),
|
CustomAsyncImage(
|
||||||
topBar = {
|
imageUrl = chatBackgroundUrl,
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
contentDescription = "chat_background",
|
||||||
|
contentScale = ContentScale.Crop
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
Scaffold(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxSize(),
|
||||||
|
backgroundColor = Color.Transparent,
|
||||||
|
topBar = {
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.background(AppColors.background)
|
.background(Color.Transparent)
|
||||||
) {
|
) {
|
||||||
StatusBarSpacer()
|
StatusBarSpacer()
|
||||||
Row(
|
Row(
|
||||||
@@ -213,56 +225,32 @@ fun ChatAiScreen(userId: String) {
|
|||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.size(28.dp)
|
.size(28.dp)
|
||||||
.noRippleClickable {
|
.noRippleClickable {
|
||||||
isMenuExpanded = true
|
navController.navigate(NavigationRoute.ChatSetting.route)
|
||||||
},
|
},
|
||||||
contentDescription = null,
|
contentDescription = null,
|
||||||
colorFilter = ColorFilter.tint(
|
colorFilter = ColorFilter.tint(
|
||||||
AppColors.text)
|
AppColors.text)
|
||||||
)
|
)
|
||||||
DropdownMenu(
|
|
||||||
expanded = isMenuExpanded,
|
|
||||||
onDismissRequest = {
|
|
||||||
isMenuExpanded = false
|
|
||||||
},
|
|
||||||
menuItems = listOf(
|
|
||||||
MenuItem(
|
|
||||||
title = if (viewModel.notificationStrategy == "mute") "Unmute" else "Mute",
|
|
||||||
icon = if (viewModel.notificationStrategy == "mute") R.drawable.rider_pro_notice_mute else R.drawable.rider_pro_notice_active,
|
|
||||||
) {
|
|
||||||
|
|
||||||
isMenuExpanded = false
|
|
||||||
if (NetworkUtils.isNetworkAvailable(context)) {
|
|
||||||
viewModel.viewModelScope.launch {
|
|
||||||
if (viewModel.notificationStrategy == "mute") {
|
|
||||||
viewModel.updateNotificationStrategy("active")
|
|
||||||
} else {
|
|
||||||
viewModel.updateNotificationStrategy("mute")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
android.widget.Toast.makeText(context, "网络连接异常,请检查网络设置", android.widget.Toast.LENGTH_SHORT).show()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
),
|
|
||||||
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
bottomBar = {
|
bottomBar = {
|
||||||
|
val hasChatBackground = AppState.chatBackgroundUrl != null && AppState.chatBackgroundUrl!!.isNotEmpty()
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.imePadding()
|
.imePadding()
|
||||||
) {
|
) {
|
||||||
Box(
|
if (!hasChatBackground) {
|
||||||
modifier = Modifier
|
Box(
|
||||||
.fillMaxWidth()
|
modifier = Modifier
|
||||||
.height(1.dp)
|
.fillMaxWidth()
|
||||||
.background(
|
.height(1.dp)
|
||||||
AppColors.decentBackground)
|
.background(
|
||||||
)
|
AppColors.decentBackground)
|
||||||
|
)
|
||||||
|
}
|
||||||
Spacer(modifier = Modifier.height(8.dp))
|
Spacer(modifier = Modifier.height(8.dp))
|
||||||
ChatAiInput(
|
ChatAiInput(
|
||||||
onSendImage = {
|
onSendImage = {
|
||||||
@@ -283,7 +271,7 @@ fun ChatAiScreen(userId: String) {
|
|||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxSize()
|
.fillMaxSize()
|
||||||
.background(Color.White)
|
.background(Color.Transparent)
|
||||||
.padding(paddingValues)
|
.padding(paddingValues)
|
||||||
) {
|
) {
|
||||||
LazyColumn(
|
LazyColumn(
|
||||||
@@ -346,8 +334,7 @@ fun ChatAiScreen(userId: String) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -571,7 +558,8 @@ fun ChatAiInput(
|
|||||||
}
|
}
|
||||||
Box( modifier = Modifier
|
Box( modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(start = 16.dp, end = 16.dp, bottom = 12.dp),){
|
.background(Color.Transparent)
|
||||||
|
.padding(start = 16.dp, end = 16.dp, bottom = 45.dp),){
|
||||||
|
|
||||||
Row(
|
Row(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ import androidx.compose.ui.platform.LocalFocusManager
|
|||||||
import androidx.compose.ui.platform.LocalSoftwareKeyboardController
|
import androidx.compose.ui.platform.LocalSoftwareKeyboardController
|
||||||
import androidx.compose.ui.platform.SoftwareKeyboardController
|
import androidx.compose.ui.platform.SoftwareKeyboardController
|
||||||
import androidx.compose.ui.res.painterResource
|
import androidx.compose.ui.res.painterResource
|
||||||
|
import androidx.compose.ui.layout.ContentScale
|
||||||
import androidx.compose.ui.text.TextStyle
|
import androidx.compose.ui.text.TextStyle
|
||||||
import androidx.compose.ui.text.input.ImeAction
|
import androidx.compose.ui.text.input.ImeAction
|
||||||
import androidx.compose.ui.text.style.TextAlign
|
import androidx.compose.ui.text.style.TextAlign
|
||||||
@@ -74,10 +75,12 @@ import androidx.lifecycle.ViewModelProvider
|
|||||||
import androidx.lifecycle.viewModelScope
|
import androidx.lifecycle.viewModelScope
|
||||||
import androidx.lifecycle.viewmodel.compose.viewModel
|
import androidx.lifecycle.viewmodel.compose.viewModel
|
||||||
import com.aiosman.ravenow.LocalAppTheme
|
import com.aiosman.ravenow.LocalAppTheme
|
||||||
|
import com.aiosman.ravenow.AppState
|
||||||
import com.aiosman.ravenow.LocalNavController
|
import com.aiosman.ravenow.LocalNavController
|
||||||
import com.aiosman.ravenow.R
|
import com.aiosman.ravenow.R
|
||||||
import com.aiosman.ravenow.entity.ChatItem
|
import com.aiosman.ravenow.entity.ChatItem
|
||||||
import com.aiosman.ravenow.exp.formatChatTime
|
import com.aiosman.ravenow.exp.formatChatTime
|
||||||
|
import com.aiosman.ravenow.ui.NavigationRoute
|
||||||
import com.aiosman.ravenow.ui.composables.CustomAsyncImage
|
import com.aiosman.ravenow.ui.composables.CustomAsyncImage
|
||||||
import com.aiosman.ravenow.ui.composables.DropdownMenu
|
import com.aiosman.ravenow.ui.composables.DropdownMenu
|
||||||
import com.aiosman.ravenow.ui.composables.MenuItem
|
import com.aiosman.ravenow.ui.composables.MenuItem
|
||||||
@@ -91,7 +94,6 @@ import java.util.UUID
|
|||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun ChatScreen(userId: String) {
|
fun ChatScreen(userId: String) {
|
||||||
var isMenuExpanded by remember { mutableStateOf(false) }
|
|
||||||
val navController = LocalNavController.current
|
val navController = LocalNavController.current
|
||||||
val context = LocalNavController.current.context
|
val context = LocalNavController.current.context
|
||||||
val AppColors = LocalAppTheme.current
|
val AppColors = LocalAppTheme.current
|
||||||
@@ -158,14 +160,37 @@ fun ChatScreen(userId: String) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Scaffold(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxSize(),
|
.fillMaxSize()
|
||||||
|
) {
|
||||||
|
// 背景图层
|
||||||
|
val bgUrl = AppState.chatBackgroundUrl
|
||||||
|
if (bgUrl != null) {
|
||||||
|
CustomAsyncImage(
|
||||||
|
imageUrl = bgUrl,
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
contentDescription = "chat_background",
|
||||||
|
contentScale = ContentScale.Crop
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
// 无背景时使用主题背景色
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
.background(AppColors.background)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
Scaffold(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxSize(),
|
||||||
|
backgroundColor = Color.Transparent,
|
||||||
topBar = {
|
topBar = {
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.background(AppColors.background)
|
.background(Color.Transparent)
|
||||||
) {
|
) {
|
||||||
StatusBarSpacer()
|
StatusBarSpacer()
|
||||||
Row(
|
Row(
|
||||||
@@ -214,39 +239,12 @@ fun ChatScreen(userId: String) {
|
|||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.size(28.dp)
|
.size(28.dp)
|
||||||
.noRippleClickable {
|
.noRippleClickable {
|
||||||
isMenuExpanded = true
|
navController.navigate(NavigationRoute.ChatSetting.route)
|
||||||
},
|
},
|
||||||
contentDescription = null,
|
contentDescription = null,
|
||||||
colorFilter = ColorFilter.tint(
|
colorFilter = ColorFilter.tint(
|
||||||
AppColors.text)
|
AppColors.text)
|
||||||
)
|
)
|
||||||
DropdownMenu(
|
|
||||||
expanded = isMenuExpanded,
|
|
||||||
onDismissRequest = {
|
|
||||||
isMenuExpanded = false
|
|
||||||
},
|
|
||||||
menuItems = listOf(
|
|
||||||
MenuItem(
|
|
||||||
title = if (viewModel.notificationStrategy == "mute") "取消静音" else "静音",
|
|
||||||
icon = if (viewModel.notificationStrategy == "mute") R.drawable.rider_pro_notice_mute else R.drawable.rider_pro_notice_active,
|
|
||||||
) {
|
|
||||||
|
|
||||||
isMenuExpanded = false
|
|
||||||
if (NetworkUtils.isNetworkAvailable(context)) {
|
|
||||||
viewModel.viewModelScope.launch {
|
|
||||||
if (viewModel.notificationStrategy == "mute") {
|
|
||||||
viewModel.updateNotificationStrategy("active")
|
|
||||||
} else {
|
|
||||||
viewModel.updateNotificationStrategy("mute")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
android.widget.Toast.makeText(context, "网络连接异常,请检查网络设置", android.widget.Toast.LENGTH_SHORT).show()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
),
|
|
||||||
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -279,11 +277,11 @@ fun ChatScreen(userId: String) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
) { paddingValues ->
|
) { paddingValues ->
|
||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxSize()
|
.fillMaxSize()
|
||||||
.background(AppColors.background)
|
.background(Color.Transparent)
|
||||||
.padding(paddingValues)
|
.padding(paddingValues)
|
||||||
) {
|
) {
|
||||||
LazyColumn(
|
LazyColumn(
|
||||||
@@ -347,6 +345,7 @@ fun ChatScreen(userId: String) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -572,7 +571,7 @@ fun ChatInput(
|
|||||||
}
|
}
|
||||||
Box( modifier = Modifier
|
Box( modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(start = 16.dp, end = 16.dp, bottom = 12.dp),){
|
.padding(start = 16.dp, end = 16.dp, bottom = 45.dp),){
|
||||||
|
|
||||||
Row(
|
Row(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
|
|||||||
@@ -0,0 +1,362 @@
|
|||||||
|
package com.aiosman.ravenow.ui.chat
|
||||||
|
|
||||||
|
import androidx.compose.foundation.background
|
||||||
|
import androidx.compose.foundation.clickable
|
||||||
|
import androidx.compose.foundation.layout.Box
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.FlowRow
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.Spacer
|
||||||
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.size
|
||||||
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.ModalBottomSheet
|
||||||
|
import androidx.compose.material3.SheetState
|
||||||
|
import androidx.compose.material3.rememberModalBottomSheetState
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.ui.Alignment
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.draw.clip
|
||||||
|
import androidx.compose.ui.graphics.Color
|
||||||
|
import androidx.compose.ui.res.painterResource
|
||||||
|
import androidx.compose.ui.res.stringResource
|
||||||
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
import androidx.compose.ui.unit.sp
|
||||||
|
import com.aiosman.ravenow.LocalAppTheme
|
||||||
|
import com.aiosman.ravenow.LocalNavController
|
||||||
|
import com.aiosman.ravenow.R
|
||||||
|
import com.aiosman.ravenow.ui.composables.StatusBarSpacer
|
||||||
|
import com.aiosman.ravenow.ui.comment.NoticeScreenHeader
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
|
import androidx.compose.foundation.lazy.grid.GridCells
|
||||||
|
import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
|
||||||
|
import androidx.compose.foundation.lazy.grid.items
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.aspectRatio
|
||||||
|
import androidx.compose.foundation.shape.CircleShape
|
||||||
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||||
|
import androidx.compose.material3.IconButton
|
||||||
|
import androidx.compose.ui.graphics.Brush
|
||||||
|
import androidx.compose.ui.layout.ContentScale
|
||||||
|
import androidx.compose.ui.platform.LocalConfiguration
|
||||||
|
import androidx.compose.ui.text.style.TextAlign
|
||||||
|
import com.aiosman.ravenow.ui.composables.CustomAsyncImage
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun ChatSettingScreen() {
|
||||||
|
val appColors = LocalAppTheme.current
|
||||||
|
val navController = LocalNavController.current
|
||||||
|
var showThemeSheet by remember { mutableStateOf(false) }
|
||||||
|
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
.background(appColors.secondaryBackground)
|
||||||
|
) {
|
||||||
|
StatusBarSpacer()
|
||||||
|
Box(modifier = Modifier.padding(horizontal = 24.dp, vertical = 16.dp)) {
|
||||||
|
NoticeScreenHeader(title = stringResource(R.string.chat_settings), moreIcon = false)
|
||||||
|
}
|
||||||
|
|
||||||
|
Column(modifier = Modifier.padding(horizontal = 16.dp)) {
|
||||||
|
SettingCard(
|
||||||
|
title = stringResource(R.string.chat_theme_settings),
|
||||||
|
onClick = { showThemeSheet = true }
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.height(12.dp))
|
||||||
|
SettingCard(
|
||||||
|
title = stringResource(R.string.report),
|
||||||
|
onClick = { /* TODO: 跳转举报 */ }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (showThemeSheet) {
|
||||||
|
ThemePickerSheet(onClose = { showThemeSheet = false })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun SettingCard(title: String, onClick: () -> Unit) {
|
||||||
|
val appColors = LocalAppTheme.current
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.clip(RoundedCornerShape(12.dp))
|
||||||
|
.background(appColors.background)
|
||||||
|
.clickable { onClick() }
|
||||||
|
.padding(horizontal = 12.dp, vertical = 14.dp)
|
||||||
|
) {
|
||||||
|
Row(verticalAlignment = Alignment.CenterVertically, modifier = Modifier.fillMaxWidth()) {
|
||||||
|
Text(
|
||||||
|
text = title,
|
||||||
|
color = appColors.text,
|
||||||
|
fontSize = 16.sp,
|
||||||
|
fontWeight = FontWeight.W500,
|
||||||
|
modifier = Modifier.weight(1f)
|
||||||
|
)
|
||||||
|
Icon(
|
||||||
|
painter = painterResource(id = R.drawable.rave_now_nav_right),
|
||||||
|
contentDescription = null,
|
||||||
|
tint = appColors.text,
|
||||||
|
modifier = Modifier.size(20.dp)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@OptIn(ExperimentalMaterial3Api::class)
|
||||||
|
@Composable
|
||||||
|
private fun ThemePickerSheet(onClose: () -> Unit) {
|
||||||
|
val appColors = LocalAppTheme.current
|
||||||
|
val sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = true)
|
||||||
|
val configuration = LocalConfiguration.current
|
||||||
|
val screenHeight = configuration.screenHeightDp.dp
|
||||||
|
val sheetHeight = screenHeight * 0.9f
|
||||||
|
var previewUrl by remember { mutableStateOf<String?>(null) }
|
||||||
|
ModalBottomSheet(
|
||||||
|
onDismissRequest = onClose,
|
||||||
|
sheetState = sheetState,
|
||||||
|
containerColor = appColors.secondaryBackground,
|
||||||
|
dragHandle = null,
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.height(sheetHeight),
|
||||||
|
) {
|
||||||
|
Column(modifier = Modifier.padding(horizontal = 16.dp)) {
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(top = 4.dp, bottom = 8.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
Spacer(modifier = Modifier.size(24.dp))
|
||||||
|
Text(
|
||||||
|
text = stringResource(R.string.custom_background),
|
||||||
|
color = appColors.text,
|
||||||
|
fontSize = 16.sp,
|
||||||
|
fontWeight = FontWeight.W600,
|
||||||
|
modifier = Modifier.weight(1f).padding(start = 90.dp),
|
||||||
|
)
|
||||||
|
IconButton(onClick = onClose) {
|
||||||
|
Icon(
|
||||||
|
painter = painterResource(id = R.drawable.rider_pro_close),
|
||||||
|
contentDescription = "close",
|
||||||
|
tint = appColors.text
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 从相册选择
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.clip(RoundedCornerShape(12.dp))
|
||||||
|
.background(appColors.background)
|
||||||
|
.clickable { /* TODO: 打开相册选择 */ }
|
||||||
|
.padding(horizontal = 16.dp, vertical = 14.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
Text(text = stringResource(R.string.select_from_gallery), color = appColors.text, fontSize = 15.sp, modifier = Modifier.weight(1f))
|
||||||
|
Icon(
|
||||||
|
painter = painterResource(id = R.drawable.group_info_edit),
|
||||||
|
contentDescription = null,
|
||||||
|
tint = appColors.text,
|
||||||
|
modifier = Modifier.size(20.dp)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(12.dp))
|
||||||
|
Text(text = stringResource(R.string.featured_backgrounds), color = appColors.text, fontSize = 12.sp)
|
||||||
|
Spacer(modifier = Modifier.height(8.dp))
|
||||||
|
|
||||||
|
val presets = remember {
|
||||||
|
listOf(
|
||||||
|
"https://picsum.photos/seed/ai1/400/600",
|
||||||
|
"https://picsum.photos/seed/ai2/400/600",
|
||||||
|
"https://picsum.photos/seed/ai3/400/600",
|
||||||
|
"https://picsum.photos/seed/ai4/400/600",
|
||||||
|
"https://picsum.photos/seed/ai5/400/600",
|
||||||
|
"https://picsum.photos/seed/ai6/400/600",
|
||||||
|
"https://picsum.photos/seed/ai7/400/600",
|
||||||
|
"https://picsum.photos/seed/ai8/400/600",
|
||||||
|
"https://picsum.photos/seed/ai9/400/600",
|
||||||
|
"https://picsum.photos/seed/ai10/400/600",
|
||||||
|
"https://picsum.photos/seed/ai11/400/600",
|
||||||
|
"https://picsum.photos/seed/ai12/400/600",
|
||||||
|
"https://picsum.photos/seed/ai13/400/600",
|
||||||
|
"https://picsum.photos/seed/ai14/400/600",
|
||||||
|
"https://picsum.photos/seed/ai15/400/600",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
LazyVerticalGrid(
|
||||||
|
columns = GridCells.Fixed(3),
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(12.dp),
|
||||||
|
verticalArrangement = Arrangement.spacedBy(12.dp),
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
) {
|
||||||
|
items(presets) { url ->
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.clickable { previewUrl = url }
|
||||||
|
) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.clip(RoundedCornerShape(12.dp))
|
||||||
|
.background(appColors.decentBackground)
|
||||||
|
) {
|
||||||
|
CustomAsyncImage(
|
||||||
|
imageUrl = url,
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.aspectRatio(3f / 4f),
|
||||||
|
contentDescription = "preset",
|
||||||
|
contentScale = ContentScale.Crop
|
||||||
|
)
|
||||||
|
}
|
||||||
|
Spacer(modifier = Modifier.height(6.dp))
|
||||||
|
Text(
|
||||||
|
text = "Heart Drive",
|
||||||
|
color = appColors.text,
|
||||||
|
fontSize = 12.sp
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 预览自定义背景弹窗
|
||||||
|
if (previewUrl != null) {
|
||||||
|
ModalBottomSheet(
|
||||||
|
onDismissRequest = { previewUrl = null },
|
||||||
|
sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = true),
|
||||||
|
containerColor = appColors.secondaryBackground,
|
||||||
|
dragHandle = null,
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.height(sheetHeight)
|
||||||
|
) {
|
||||||
|
Box(modifier = Modifier.fillMaxSize()) {
|
||||||
|
CustomAsyncImage(
|
||||||
|
imageUrl = previewUrl!!,
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
contentDescription = "preview_bg",
|
||||||
|
contentScale = ContentScale.Crop
|
||||||
|
)
|
||||||
|
|
||||||
|
Column(modifier = Modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
.padding(horizontal = 16.dp, vertical = 8.dp)) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.align(Alignment.CenterHorizontally)
|
||||||
|
.padding(horizontal = 12.dp, vertical = 16.dp)
|
||||||
|
) {
|
||||||
|
Text(text = stringResource(R.string.previewing_custom_background), color = Color.White, fontSize = 15.sp)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Column(modifier = Modifier.padding(8.dp)) {
|
||||||
|
Row {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.clip(RoundedCornerShape(24.dp))
|
||||||
|
.background(Color.White)
|
||||||
|
.padding(horizontal = 14.dp, vertical = 8.dp)
|
||||||
|
) {
|
||||||
|
Text(text = stringResource(R.string.each_theme_unique_experience), color = Color.Black, fontSize = 12.sp)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Spacer(modifier = Modifier.height(12.dp))
|
||||||
|
Row {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.clip(RoundedCornerShape(24.dp))
|
||||||
|
.background(Color.White)
|
||||||
|
.padding(horizontal = 14.dp, vertical = 8.dp)
|
||||||
|
) {
|
||||||
|
Text(text = stringResource(R.string.select_apply_to_use_theme), color = Color.Black, fontSize = 12.sp)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Spacer(modifier = Modifier.height(12.dp))
|
||||||
|
Row {
|
||||||
|
Spacer(modifier = Modifier.weight(1f))
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.clip(RoundedCornerShape(20.dp))
|
||||||
|
.background(Color(0xFF7C4DFF))
|
||||||
|
.padding(horizontal = 16.dp, vertical = 8.dp)
|
||||||
|
) {
|
||||||
|
Text(text = stringResource(R.string.tap_cancel_to_preview_other_themes), color = Color.White, fontSize = 12.sp)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.weight(1f))
|
||||||
|
|
||||||
|
// 底部按钮
|
||||||
|
Row(
|
||||||
|
modifier = Modifier.fillMaxWidth()
|
||||||
|
.padding(bottom = 60.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.weight(1f)
|
||||||
|
.clip(RoundedCornerShape(12.dp))
|
||||||
|
.background(Color.White)
|
||||||
|
.clickable { previewUrl = null }
|
||||||
|
.padding(vertical = 12.dp),
|
||||||
|
contentAlignment = Alignment.Center
|
||||||
|
) {
|
||||||
|
Text(text = stringResource(R.string.cancel), color = Color.Black, fontSize = 14.sp)
|
||||||
|
}
|
||||||
|
Spacer(modifier = Modifier.size(12.dp))
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.weight(1f)
|
||||||
|
.clip(RoundedCornerShape(12.dp))
|
||||||
|
.background(
|
||||||
|
brush = Brush.horizontalGradient(
|
||||||
|
colors = listOf(
|
||||||
|
Color(0xFFEE2A33),
|
||||||
|
Color(0xFFD80264),
|
||||||
|
Color(0xFF664C92)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.clickable {
|
||||||
|
previewUrl?.let { url ->
|
||||||
|
com.aiosman.ravenow.AppStore.saveChatBackgroundUrl(url)
|
||||||
|
previewUrl = null
|
||||||
|
onClose()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.padding(vertical = 12.dp),
|
||||||
|
contentAlignment = Alignment.Center
|
||||||
|
) {
|
||||||
|
Text(text = stringResource(R.string.moment_ai_apply), color = Color.White, fontSize = 14.sp)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -17,6 +17,7 @@ import androidx.compose.runtime.getValue
|
|||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.draw.clip
|
import androidx.compose.ui.draw.clip
|
||||||
|
import androidx.compose.ui.graphics.Brush
|
||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.text.font.FontWeight
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
import androidx.compose.ui.text.style.TextAlign
|
import androidx.compose.ui.text.style.TextAlign
|
||||||
@@ -32,6 +33,7 @@ fun ActionButton(
|
|||||||
text: String,
|
text: String,
|
||||||
color: Color? = null,
|
color: Color? = null,
|
||||||
backgroundColor: Color? = null,
|
backgroundColor: Color? = null,
|
||||||
|
backgroundBrush: Brush? = null,
|
||||||
leading: @Composable (() -> Unit)? = null,
|
leading: @Composable (() -> Unit)? = null,
|
||||||
expandText: Boolean = false,
|
expandText: Boolean = false,
|
||||||
contentPadding: PaddingValues = PaddingValues(vertical = 16.dp),
|
contentPadding: PaddingValues = PaddingValues(vertical = 16.dp),
|
||||||
@@ -65,7 +67,11 @@ fun ActionButton(
|
|||||||
Box(
|
Box(
|
||||||
modifier = modifier
|
modifier = modifier
|
||||||
.clip(RoundedCornerShape(roundCorner.dp))
|
.clip(RoundedCornerShape(roundCorner.dp))
|
||||||
.background(animatedBackgroundColor)
|
.background(
|
||||||
|
brush = backgroundBrush ?: Brush.linearGradient(
|
||||||
|
colors = listOf(animatedBackgroundColor, animatedBackgroundColor)
|
||||||
|
)
|
||||||
|
)
|
||||||
.noRippleClickable {
|
.noRippleClickable {
|
||||||
if (enabled && !isLoading) {
|
if (enabled && !isLoading) {
|
||||||
click()
|
click()
|
||||||
|
|||||||
@@ -56,15 +56,14 @@ fun AnimatedFavouriteIcon(
|
|||||||
}) {
|
}) {
|
||||||
Image(
|
Image(
|
||||||
painter = if (isFavourite) {
|
painter = if (isFavourite) {
|
||||||
painterResource(id = R.drawable.rider_pro_favourited)
|
painterResource(id = R.mipmap.icon_variant_2)
|
||||||
} else {
|
} else {
|
||||||
painterResource(id = R.drawable.rider_pro_favourite)
|
painterResource(id = R.mipmap.icon_collect)
|
||||||
},
|
},
|
||||||
contentDescription = "Favourite",
|
contentDescription = "Favourite",
|
||||||
modifier = modifier.graphicsLayer {
|
modifier = modifier.graphicsLayer {
|
||||||
rotationZ = animatableRotation.value
|
rotationZ = animatableRotation.value
|
||||||
},
|
},
|
||||||
colorFilter = ColorFilter.tint(AppColors.text)
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -51,7 +51,8 @@ import com.aiosman.ravenow.ui.modifiers.noRippleClickable
|
|||||||
@Composable
|
@Composable
|
||||||
fun EditCommentBottomModal(
|
fun EditCommentBottomModal(
|
||||||
replyComment: CommentEntity? = null,
|
replyComment: CommentEntity? = null,
|
||||||
onSend: (String) -> Unit = {}
|
autoFocus: Boolean = false,
|
||||||
|
onSend: (String) -> Unit = {},
|
||||||
) {
|
) {
|
||||||
val AppColors = LocalAppTheme.current
|
val AppColors = LocalAppTheme.current
|
||||||
var text by remember { mutableStateOf("") }
|
var text by remember { mutableStateOf("") }
|
||||||
@@ -59,8 +60,10 @@ fun EditCommentBottomModal(
|
|||||||
val focusRequester = remember { FocusRequester() }
|
val focusRequester = remember { FocusRequester() }
|
||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
|
|
||||||
LaunchedEffect(Unit) {
|
LaunchedEffect(autoFocus) {
|
||||||
focusRequester.requestFocus()
|
if (autoFocus) {
|
||||||
|
focusRequester.requestFocus()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Column(
|
Column(
|
||||||
|
|||||||
@@ -364,16 +364,6 @@ fun MomentContentGroup(
|
|||||||
onPageChange: (Int) -> Unit = {}
|
onPageChange: (Int) -> Unit = {}
|
||||||
) {
|
) {
|
||||||
val AppColors = LocalAppTheme.current
|
val AppColors = LocalAppTheme.current
|
||||||
if (momentEntity.momentTextContent.isNotEmpty()) {
|
|
||||||
Text(
|
|
||||||
text = momentEntity.momentTextContent,
|
|
||||||
modifier = Modifier
|
|
||||||
.fillMaxWidth()
|
|
||||||
.padding(start = 16.dp, end = 16.dp, bottom = 8.dp),
|
|
||||||
fontSize = 16.sp,
|
|
||||||
color = AppColors.text
|
|
||||||
)
|
|
||||||
}
|
|
||||||
if (momentEntity.relMoment != null) {
|
if (momentEntity.relMoment != null) {
|
||||||
RelPostCard(
|
RelPostCard(
|
||||||
momentEntity = momentEntity.relMoment!!,
|
momentEntity = momentEntity.relMoment!!,
|
||||||
@@ -389,6 +379,17 @@ fun MomentContentGroup(
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (momentEntity.momentTextContent.isNotEmpty()) {
|
||||||
|
Text(
|
||||||
|
text = momentEntity.momentTextContent,
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(start = 16.dp, end = 16.dp, top = 8.dp),
|
||||||
|
fontSize = 16.sp,
|
||||||
|
color = AppColors.text
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -401,14 +402,15 @@ fun MomentOperateBtn(@DrawableRes icon: Int, count: String) {
|
|||||||
.size(width = 24.dp, height = 24.dp),
|
.size(width = 24.dp, height = 24.dp),
|
||||||
painter = painterResource(id = icon),
|
painter = painterResource(id = icon),
|
||||||
contentDescription = "",
|
contentDescription = "",
|
||||||
colorFilter = ColorFilter.tint(AppColors.text)
|
|
||||||
)
|
|
||||||
Text(
|
|
||||||
text = count,
|
|
||||||
modifier = Modifier.padding(start = 7.dp),
|
|
||||||
fontSize = 14.sp,
|
|
||||||
color = AppColors.text
|
|
||||||
)
|
)
|
||||||
|
if (count.isNotEmpty()) {
|
||||||
|
Text(
|
||||||
|
text = count,
|
||||||
|
modifier = Modifier.padding(start = 7.dp),
|
||||||
|
fontSize = 14.sp,
|
||||||
|
color = AppColors.text
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -510,49 +512,11 @@ fun MomentBottomOperateRowGroup(
|
|||||||
.weight(1f),
|
.weight(1f),
|
||||||
verticalAlignment = Alignment.CenterVertically
|
verticalAlignment = Alignment.CenterVertically
|
||||||
) {
|
) {
|
||||||
Box(
|
Row(
|
||||||
modifier = Modifier
|
modifier = Modifier.weight(1f).fillMaxHeight(),
|
||||||
.weight(1f)
|
verticalAlignment = Alignment.CenterVertically
|
||||||
.fillMaxHeight(),
|
|
||||||
contentAlignment = Alignment.CenterStart
|
|
||||||
) {
|
|
||||||
MomentOperateBtn(count = momentEntity.favoriteCount.toString()) {
|
|
||||||
AnimatedFavouriteIcon(
|
|
||||||
modifier = Modifier.size(24.dp),
|
|
||||||
isFavourite = momentEntity.isFavorite
|
|
||||||
) {
|
|
||||||
onFavoriteClick()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Box(
|
|
||||||
modifier = Modifier
|
|
||||||
.wrapContentWidth()
|
|
||||||
.fillMaxHeight()
|
|
||||||
.noRippleClickable {
|
|
||||||
val currentTime = System.currentTimeMillis()
|
|
||||||
if (currentTime - lastClickTime.value > clickDelay) {
|
|
||||||
lastClickTime.value = currentTime
|
|
||||||
onCommentClick()
|
|
||||||
}
|
|
||||||
},
|
|
||||||
contentAlignment = Alignment.CenterEnd
|
|
||||||
) {
|
|
||||||
MomentOperateBtn(
|
|
||||||
icon = R.drawable.rider_pro_comment,
|
|
||||||
count = momentEntity.commentCount.toString()
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
Spacer(modifier = Modifier.width(24.dp))
|
|
||||||
|
|
||||||
Box(
|
|
||||||
modifier = Modifier
|
|
||||||
.wrapContentWidth()
|
|
||||||
.fillMaxHeight(),
|
|
||||||
contentAlignment = Alignment.CenterEnd
|
|
||||||
) {
|
) {
|
||||||
|
// 点赞按钮
|
||||||
MomentOperateBtn(count = momentEntity.likeCount.toString()) {
|
MomentOperateBtn(count = momentEntity.likeCount.toString()) {
|
||||||
AnimatedLikeIcon(
|
AnimatedLikeIcon(
|
||||||
modifier = Modifier.size(24.dp),
|
modifier = Modifier.size(24.dp),
|
||||||
@@ -561,6 +525,44 @@ fun MomentBottomOperateRowGroup(
|
|||||||
onLikeClick()
|
onLikeClick()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Spacer(modifier = Modifier.width(10.dp))
|
||||||
|
// 评论按钮
|
||||||
|
Box(
|
||||||
|
modifier = Modifier.noRippleClickable {
|
||||||
|
val currentTime = System.currentTimeMillis()
|
||||||
|
if (currentTime - lastClickTime.value > clickDelay) {
|
||||||
|
lastClickTime.value = currentTime
|
||||||
|
onCommentClick()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
MomentOperateBtn(
|
||||||
|
icon = R.mipmap.icon_comment,
|
||||||
|
count = momentEntity.commentCount.toString()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
Spacer(modifier = Modifier.width(28.dp))
|
||||||
|
// 转发按钮
|
||||||
|
Box(
|
||||||
|
modifier = Modifier.noRippleClickable {
|
||||||
|
// TODO: 实现转发功能
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
MomentOperateBtn(
|
||||||
|
icon = R.mipmap.icon_share,
|
||||||
|
count = ""
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 收藏按钮
|
||||||
|
MomentOperateBtn(count = momentEntity.favoriteCount.toString()) {
|
||||||
|
AnimatedFavouriteIcon(
|
||||||
|
modifier = Modifier.size(24.dp),
|
||||||
|
isFavourite = momentEntity.isFavorite
|
||||||
|
) {
|
||||||
|
onFavoriteClick()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,15 @@
|
|||||||
package com.aiosman.ravenow.ui.composables
|
package com.aiosman.ravenow.ui.composables
|
||||||
|
|
||||||
|
import androidx.compose.foundation.Image
|
||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
import androidx.compose.foundation.layout.Arrangement
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Box
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.Column
|
||||||
import androidx.compose.foundation.layout.Spacer
|
import androidx.compose.foundation.layout.Spacer
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.size
|
||||||
import androidx.compose.foundation.layout.width
|
import androidx.compose.foundation.layout.width
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
@@ -12,11 +17,14 @@ import androidx.compose.runtime.Composable
|
|||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.draw.clip
|
import androidx.compose.ui.draw.clip
|
||||||
|
import androidx.compose.ui.res.painterResource
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import androidx.compose.ui.unit.sp
|
import androidx.compose.ui.unit.sp
|
||||||
import com.aiosman.ravenow.LocalAppTheme
|
import com.aiosman.ravenow.LocalAppTheme
|
||||||
|
import com.aiosman.ravenow.R
|
||||||
import com.aiosman.ravenow.ui.modifiers.noRippleClickable
|
import com.aiosman.ravenow.ui.modifiers.noRippleClickable
|
||||||
|
import androidx.compose.ui.graphics.Brush
|
||||||
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
/**
|
/**
|
||||||
* 可复用的标签页组件
|
* 可复用的标签页组件
|
||||||
*/
|
*/
|
||||||
@@ -54,3 +62,43 @@ fun TabItem(
|
|||||||
fun TabSpacer() {
|
fun TabSpacer() {
|
||||||
Spacer(modifier = Modifier.width(8.dp))
|
Spacer(modifier = Modifier.width(8.dp))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun UnderlineTabItem(
|
||||||
|
text: String,
|
||||||
|
isSelected: Boolean,
|
||||||
|
onClick: () -> Unit,
|
||||||
|
modifier: Modifier = Modifier
|
||||||
|
) {
|
||||||
|
val AppColors = LocalAppTheme.current
|
||||||
|
|
||||||
|
Column(
|
||||||
|
modifier = modifier
|
||||||
|
.noRippleClickable { onClick() },
|
||||||
|
verticalArrangement = Arrangement.Center,
|
||||||
|
horizontalAlignment = Alignment.CenterHorizontally
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
text = text,
|
||||||
|
fontSize = 15.sp,
|
||||||
|
fontWeight = FontWeight.ExtraBold,
|
||||||
|
color = if (isSelected) AppColors.text else AppColors.text.copy(alpha = 0.6f),
|
||||||
|
modifier = Modifier.padding(horizontal = 16.dp).padding(top = 13.dp)
|
||||||
|
)
|
||||||
|
|
||||||
|
// 选中状态下显示图标
|
||||||
|
Box(
|
||||||
|
modifier = Modifier.size(24.dp),
|
||||||
|
contentAlignment = Alignment.Center
|
||||||
|
) {
|
||||||
|
if (isSelected) {
|
||||||
|
Image(
|
||||||
|
painter = painterResource(id = R.mipmap.underline),
|
||||||
|
contentDescription = "selected indicator",
|
||||||
|
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -134,7 +134,7 @@ fun FavouriteListPage() {
|
|||||||
) {
|
) {
|
||||||
Image(
|
Image(
|
||||||
painter = painterResource(
|
painter = painterResource(
|
||||||
id = if (com.aiosman.ravenow.AppState.darkMode) R.mipmap.syss_yh_qs_as_img
|
id = if (com.aiosman.ravenow.AppState.darkMode) R.mipmap.invalid_dark
|
||||||
else R.mipmap.invalid_name_1),
|
else R.mipmap.invalid_name_1),
|
||||||
contentDescription = "No favourites",
|
contentDescription = "No favourites",
|
||||||
modifier = Modifier.size(110.dp)
|
modifier = Modifier.size(110.dp)
|
||||||
|
|||||||
@@ -276,12 +276,15 @@ fun IndexScreen() {
|
|||||||
bottomBar = {
|
bottomBar = {
|
||||||
NavigationBar(
|
NavigationBar(
|
||||||
modifier = Modifier.height(58.dp + navigationBarHeight),
|
modifier = Modifier.height(58.dp + navigationBarHeight),
|
||||||
containerColor = AppColors.background
|
containerColor = AppColors.tabUnselectedBackground
|
||||||
) {
|
) {
|
||||||
item.forEachIndexed { idx, it ->
|
item.forEachIndexed { idx, it ->
|
||||||
val isSelected = model.tabIndex == idx
|
val isSelected = model.tabIndex == idx
|
||||||
|
// 定义新的选中颜色
|
||||||
|
val selectedColor = Color(0xFF7C45ED)
|
||||||
|
|
||||||
val iconTint by animateColorAsState(
|
val iconTint by animateColorAsState(
|
||||||
targetValue = if (isSelected) AppColors.brandColorsColor else AppColors.text,
|
targetValue = if (isSelected) selectedColor else AppColors.text,
|
||||||
animationSpec = tween(durationMillis = 250), label = ""
|
animationSpec = tween(durationMillis = 250), label = ""
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -343,7 +346,7 @@ fun IndexScreen() {
|
|||||||
.width(48.dp)
|
.width(48.dp)
|
||||||
.height(32.dp)
|
.height(32.dp)
|
||||||
.background(
|
.background(
|
||||||
color = if (isSelected) AppColors.brandColorsColor.copy(alpha = 0.15f) else Color.Transparent,
|
color = if (isSelected) selectedColor.copy(alpha = 0.15f) else Color.Transparent,
|
||||||
shape = RoundedCornerShape(12.dp)
|
shape = RoundedCornerShape(12.dp)
|
||||||
),
|
),
|
||||||
contentAlignment = Alignment.Center
|
contentAlignment = Alignment.Center
|
||||||
@@ -362,7 +365,7 @@ fun IndexScreen() {
|
|||||||
Text(
|
Text(
|
||||||
text = it.label(),
|
text = it.label(),
|
||||||
fontSize = 10.sp,
|
fontSize = 10.sp,
|
||||||
color = if (isSelected) Color.Blue else AppColors.text,
|
color = if (isSelected) selectedColor else AppColors.text,
|
||||||
fontWeight = if (isSelected) FontWeight.W600 else FontWeight.Normal
|
fontWeight = if (isSelected) FontWeight.W600 else FontWeight.Normal
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,9 +16,9 @@ sealed class NavigationItem(
|
|||||||
) {
|
) {
|
||||||
|
|
||||||
data object Home : NavigationItem("Home",
|
data object Home : NavigationItem("Home",
|
||||||
icon = { R.drawable.rider_pro_nav_home },
|
icon = { R.mipmap.bars_x_buttons_home_n_copy },
|
||||||
selectedIcon = { R.mipmap.bars_x_buttons_home_s },
|
selectedIcon = { R.mipmap.bars_x_buttons_home_n_copy_2 },
|
||||||
label = { stringResource(R.string.main_home) }
|
label = { stringResource(R.string.main_ai) }
|
||||||
)
|
)
|
||||||
|
|
||||||
data object Ai : NavigationItem("Ai",
|
data object Ai : NavigationItem("Ai",
|
||||||
|
|||||||
@@ -80,14 +80,19 @@ import androidx.compose.foundation.lazy.items
|
|||||||
import androidx.compose.foundation.lazy.rememberLazyListState
|
import androidx.compose.foundation.lazy.rememberLazyListState
|
||||||
import androidx.compose.foundation.lazy.grid.GridCells
|
import androidx.compose.foundation.lazy.grid.GridCells
|
||||||
import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
|
import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import androidx.compose.ui.window.Dialog
|
||||||
|
import androidx.compose.ui.window.DialogProperties
|
||||||
import androidx.compose.foundation.lazy.grid.items as gridItems
|
import androidx.compose.foundation.lazy.grid.items as gridItems
|
||||||
|
import androidx.compose.material.CircularProgressIndicator
|
||||||
|
import androidx.compose.ui.draw.alpha
|
||||||
|
|
||||||
// 检测是否接近列表底部的扩展函数
|
// 检测是否接近列表底部的扩展函数
|
||||||
fun LazyListState.isScrolledToEnd(buffer: Int = 3): Boolean {
|
fun LazyListState.isScrolledToEnd(buffer: Int = 3): Boolean {
|
||||||
val layoutInfo = this.layoutInfo
|
val layoutInfo = this.layoutInfo
|
||||||
val totalItemsCount = layoutInfo.totalItemsCount
|
val totalItemsCount = layoutInfo.totalItemsCount
|
||||||
val lastVisibleItemIndex = layoutInfo.visibleItemsInfo.lastOrNull()?.index ?: 0
|
val lastVisibleItemIndex = layoutInfo.visibleItemsInfo.lastOrNull()?.index ?: 0
|
||||||
|
|
||||||
return lastVisibleItemIndex >= (totalItemsCount - buffer)
|
return lastVisibleItemIndex >= (totalItemsCount - buffer)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -124,17 +129,17 @@ fun Agent() {
|
|||||||
|
|
||||||
val agentItems = viewModel.agentItems
|
val agentItems = viewModel.agentItems
|
||||||
var selectedTabIndex by remember { mutableStateOf(0) }
|
var selectedTabIndex by remember { mutableStateOf(0) }
|
||||||
|
|
||||||
// 无限滚动状态
|
// 无限滚动状态
|
||||||
val listState = rememberLazyListState()
|
val listState = rememberLazyListState()
|
||||||
|
|
||||||
// 创建一个可观察的滚动到底部状态
|
// 创建一个可观察的滚动到底部状态
|
||||||
val isScrolledToEnd by remember {
|
val isScrolledToEnd by remember {
|
||||||
derivedStateOf {
|
derivedStateOf {
|
||||||
listState.isScrolledToEnd()
|
listState.isScrolledToEnd()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 检测滚动到底部并加载更多数据
|
// 检测滚动到底部并加载更多数据
|
||||||
LaunchedEffect(isScrolledToEnd) {
|
LaunchedEffect(isScrolledToEnd) {
|
||||||
if (isScrolledToEnd && !viewModel.isLoadingMore && agentItems.isNotEmpty() && viewModel.hasMoreData) {
|
if (isScrolledToEnd && !viewModel.isLoadingMore && agentItems.isNotEmpty() && viewModel.hasMoreData) {
|
||||||
@@ -266,6 +271,53 @@ fun Agent() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 热门聊天室
|
||||||
|
stickyHeader(key = "hot_rooms_header") {
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.background(AppColors.background)
|
||||||
|
.padding(top = 8.dp, bottom = 12.dp),
|
||||||
|
horizontalArrangement = Arrangement.Start,
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
Image(
|
||||||
|
painter = painterResource(R.mipmap.rider_pro_hot_room),
|
||||||
|
contentDescription = "chat room",
|
||||||
|
modifier = Modifier.size(28.dp)
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.width(4.dp))
|
||||||
|
androidx.compose.material3.Text(
|
||||||
|
text = stringResource(R.string.hot_rooms),
|
||||||
|
fontSize = 16.sp,
|
||||||
|
fontWeight = androidx.compose.ui.text.font.FontWeight.W900,
|
||||||
|
color = AppColors.text
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 热门聊天室网格
|
||||||
|
items(viewModel.chatRooms.chunked(2)) { rowRooms ->
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(bottom = 12.dp),
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(12.dp)
|
||||||
|
) {
|
||||||
|
rowRooms.forEach { chatRoom ->
|
||||||
|
ChatRoomCard(
|
||||||
|
chatRoom = chatRoom,
|
||||||
|
navController = LocalNavController.current,
|
||||||
|
modifier = Modifier.weight(1f)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (rowRooms.size == 1) {
|
||||||
|
Spacer(modifier = Modifier.weight(1f))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
item { Spacer(modifier = Modifier.height(20.dp)) }
|
||||||
|
|
||||||
// "发现更多" 标题 - 吸顶
|
// "发现更多" 标题 - 吸顶
|
||||||
stickyHeader(key = "discover_more") {
|
stickyHeader(key = "discover_more") {
|
||||||
@@ -278,15 +330,15 @@ fun Agent() {
|
|||||||
verticalAlignment = Alignment.Bottom
|
verticalAlignment = Alignment.Bottom
|
||||||
) {
|
) {
|
||||||
Image(
|
Image(
|
||||||
painter = painterResource(R.mipmap.rider_pro_agent2),
|
painter = painterResource(R.mipmap.bars_x_buttons_home_n_copy_2),
|
||||||
contentDescription = "agent",
|
contentDescription = "agent",
|
||||||
modifier = Modifier.size(28.dp),
|
modifier = Modifier.size(28.dp)
|
||||||
)
|
)
|
||||||
Spacer(modifier = Modifier.width(4.dp))
|
Spacer(modifier = Modifier.width(4.dp))
|
||||||
androidx.compose.material3.Text(
|
androidx.compose.material3.Text(
|
||||||
text = stringResource(R.string.agent_find),
|
text = stringResource(R.string.agent_find),
|
||||||
fontSize = 16.sp,
|
fontSize = 16.sp,
|
||||||
fontWeight = androidx.compose.ui.text.font.FontWeight.W600,
|
fontWeight = androidx.compose.ui.text.font.FontWeight.W900,
|
||||||
color = AppColors.text
|
color = AppColors.text
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -320,7 +372,7 @@ fun Agent() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 加载更多指示器
|
// 加载更多指示器
|
||||||
if (viewModel.isLoadingMore) {
|
if (viewModel.isLoadingMore) {
|
||||||
item {
|
item {
|
||||||
@@ -347,11 +399,67 @@ fun Agent() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun AgentGridLayout(
|
||||||
|
agentItems: List<AgentItem>,
|
||||||
|
viewModel: AgentViewModel,
|
||||||
|
navController: NavHostController
|
||||||
|
) {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier.fillMaxWidth()
|
||||||
|
) {
|
||||||
|
// 将agentItems按两列分组
|
||||||
|
agentItems.chunked(2).forEachIndexed { rowIndex, rowItems ->
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(
|
||||||
|
top = if (rowIndex == 0) 30.dp else 20.dp, // 第一行添加更多顶部间距
|
||||||
|
bottom = 20.dp
|
||||||
|
),
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(16.dp)
|
||||||
|
) {
|
||||||
|
// 第一列
|
||||||
|
Box(
|
||||||
|
modifier = Modifier.weight(1f)
|
||||||
|
) {
|
||||||
|
AgentCardSquare(
|
||||||
|
agentItem = rowItems[0],
|
||||||
|
viewModel = viewModel,
|
||||||
|
navController = navController
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 第二列(如果存在)
|
||||||
|
if (rowItems.size > 1) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier.weight(1f)
|
||||||
|
) {
|
||||||
|
AgentCardSquare(
|
||||||
|
agentItem = rowItems[1],
|
||||||
|
viewModel = viewModel,
|
||||||
|
navController = navController
|
||||||
|
)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// 如果只有一列,添加空白占位
|
||||||
|
Spacer(modifier = Modifier.weight(1f))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@SuppressLint("SuspiciousIndentation")
|
@SuppressLint("SuspiciousIndentation")
|
||||||
@Composable
|
@Composable
|
||||||
fun AgentCardSquare(agentItem: AgentItem, viewModel: AgentViewModel, navController: NavHostController) {
|
fun AgentCardSquare(
|
||||||
|
agentItem: AgentItem,
|
||||||
|
viewModel: AgentViewModel,
|
||||||
|
navController: NavHostController
|
||||||
|
) {
|
||||||
val AppColors = LocalAppTheme.current
|
val AppColors = LocalAppTheme.current
|
||||||
val cardHeight = 200.dp
|
val cardHeight = 180.dp
|
||||||
val avatarSize = cardHeight / 3 // 头像大小为方块高度的三分之一
|
val avatarSize = cardHeight / 3 // 头像大小为方块高度的三分之一
|
||||||
|
|
||||||
// 防抖状态
|
// 防抖状态
|
||||||
@@ -360,9 +468,8 @@ fun AgentCardSquare(agentItem: AgentItem, viewModel: AgentViewModel, navControll
|
|||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(top = avatarSize / 2)
|
|
||||||
.height(cardHeight)
|
.height(cardHeight)
|
||||||
.background(AppColors.nonActive, RoundedCornerShape(12.dp)) // 修改背景颜色
|
.background(AppColors.secondaryBackground, RoundedCornerShape(12.dp))
|
||||||
.clickable {
|
.clickable {
|
||||||
if (DebounceUtils.simpleDebounceClick(lastClickTime, 500L) {
|
if (DebounceUtils.simpleDebounceClick(lastClickTime, 500L) {
|
||||||
viewModel.goToProfile(agentItem.openId, navController)
|
viewModel.goToProfile(agentItem.openId, navController)
|
||||||
@@ -372,12 +479,11 @@ fun AgentCardSquare(agentItem: AgentItem, viewModel: AgentViewModel, navControll
|
|||||||
},
|
},
|
||||||
contentAlignment = Alignment.TopCenter
|
contentAlignment = Alignment.TopCenter
|
||||||
) {
|
) {
|
||||||
// 头像,位于方块上方居中,部分悬于方块外部
|
|
||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.offset(y = -avatarSize / 2)
|
.offset(y = 4.dp)
|
||||||
.size(avatarSize)
|
.size(avatarSize)
|
||||||
.background(Color.White, RoundedCornerShape(avatarSize / 2))
|
.background(AppColors.background, RoundedCornerShape(avatarSize / 2))
|
||||||
.clip(RoundedCornerShape(avatarSize / 2)),
|
.clip(RoundedCornerShape(avatarSize / 2)),
|
||||||
contentAlignment = Alignment.Center
|
contentAlignment = Alignment.Center
|
||||||
) {
|
) {
|
||||||
@@ -385,9 +491,7 @@ fun AgentCardSquare(agentItem: AgentItem, viewModel: AgentViewModel, navControll
|
|||||||
painter = painterResource(R.mipmap.group_copy),
|
painter = painterResource(R.mipmap.group_copy),
|
||||||
contentDescription = "默认头像",
|
contentDescription = "默认头像",
|
||||||
modifier = Modifier.size(avatarSize),
|
modifier = Modifier.size(avatarSize),
|
||||||
contentScale = androidx.compose.ui.layout.ContentScale.Crop
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if (agentItem.avatar.isNotEmpty()) {
|
if (agentItem.avatar.isNotEmpty()) {
|
||||||
CustomAsyncImage(
|
CustomAsyncImage(
|
||||||
imageUrl = agentItem.avatar,
|
imageUrl = agentItem.avatar,
|
||||||
@@ -404,7 +508,7 @@ fun AgentCardSquare(agentItem: AgentItem, viewModel: AgentViewModel, navControll
|
|||||||
Column(
|
Column(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(top = avatarSize / 2 + 8.dp, start = 8.dp, end = 8.dp, bottom = 8.dp),
|
.padding(top = 4.dp + avatarSize + 8.dp, start = 8.dp, end = 8.dp, bottom = 48.dp), // 为底部聊天按钮留出空间
|
||||||
horizontalAlignment = Alignment.CenterHorizontally
|
horizontalAlignment = Alignment.CenterHorizontally
|
||||||
) {
|
) {
|
||||||
androidx.compose.material3.Text(
|
androidx.compose.material3.Text(
|
||||||
@@ -418,56 +522,56 @@ fun AgentCardSquare(agentItem: AgentItem, viewModel: AgentViewModel, navControll
|
|||||||
|
|
||||||
Spacer(modifier = Modifier.height(8.dp))
|
Spacer(modifier = Modifier.height(8.dp))
|
||||||
|
|
||||||
Box(
|
androidx.compose.material3.Text(
|
||||||
modifier = Modifier
|
text = agentItem.desc,
|
||||||
.height(85.dp)
|
fontSize = 12.sp,
|
||||||
.fillMaxWidth()
|
color = AppColors.secondaryText,
|
||||||
) {
|
maxLines = 2,
|
||||||
androidx.compose.material3.Text(
|
overflow = androidx.compose.ui.text.style.TextOverflow.Ellipsis,
|
||||||
text = agentItem.desc,
|
modifier = Modifier.weight(1f, fill = false)
|
||||||
fontSize = 12.sp,
|
)
|
||||||
color = AppColors.secondaryText,
|
}
|
||||||
maxLines = 5,
|
|
||||||
overflow = androidx.compose.ui.text.style.TextOverflow.Ellipsis,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
Spacer(modifier = Modifier.height(8.dp))
|
// 聊天按钮
|
||||||
|
Box(
|
||||||
// 聊天按钮,位于底部居中
|
modifier = Modifier
|
||||||
Box(
|
.align(Alignment.BottomCenter)
|
||||||
modifier = Modifier
|
.padding(bottom = 12.dp)
|
||||||
.width(60.dp)
|
.width(60.dp)
|
||||||
.height(32.dp)
|
.height(32.dp)
|
||||||
.background(
|
.background(
|
||||||
color = Color(0X147c7480),
|
|
||||||
shape = RoundedCornerShape(8.dp)
|
|
||||||
)
|
|
||||||
.clickable {
|
|
||||||
if (DebounceUtils.simpleDebounceClick(lastClickTime, 500L) {
|
|
||||||
// 检查游客模式,如果是游客则跳转登录
|
|
||||||
if (GuestLoginCheckOut.needLogin(GuestLoginCheckOutScene.CHAT_WITH_AGENT)) {
|
|
||||||
navController.navigate(NavigationRoute.Login.route)
|
|
||||||
} else {
|
|
||||||
viewModel.createSingleChat(agentItem.openId)
|
|
||||||
viewModel.goToChatAi(
|
|
||||||
agentItem.openId,
|
|
||||||
navController = navController
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}) {
|
|
||||||
lastClickTime = System.currentTimeMillis()
|
|
||||||
}
|
|
||||||
},
|
|
||||||
contentAlignment = Alignment.Center
|
|
||||||
) {
|
|
||||||
androidx.compose.material3.Text(
|
|
||||||
text = stringResource(R.string.chat),
|
|
||||||
fontSize = 12.sp,
|
|
||||||
color = AppColors.text,
|
color = AppColors.text,
|
||||||
fontWeight = androidx.compose.ui.text.font.FontWeight.W500
|
shape = RoundedCornerShape(
|
||||||
|
topStart = 14.dp,
|
||||||
|
topEnd = 14.dp,
|
||||||
|
bottomStart = 0.dp,
|
||||||
|
bottomEnd = 14.dp
|
||||||
|
)
|
||||||
)
|
)
|
||||||
}
|
.clickable {
|
||||||
|
if (DebounceUtils.simpleDebounceClick(lastClickTime, 500L) {
|
||||||
|
// 检查游客模式,如果是游客则跳转登录
|
||||||
|
if (GuestLoginCheckOut.needLogin(GuestLoginCheckOutScene.CHAT_WITH_AGENT)) {
|
||||||
|
navController.navigate(NavigationRoute.Login.route)
|
||||||
|
} else {
|
||||||
|
viewModel.createSingleChat(agentItem.openId)
|
||||||
|
viewModel.goToChatAi(
|
||||||
|
agentItem.openId,
|
||||||
|
navController = navController
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}) {
|
||||||
|
lastClickTime = System.currentTimeMillis()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
contentAlignment = Alignment.Center
|
||||||
|
) {
|
||||||
|
androidx.compose.material3.Text(
|
||||||
|
text = stringResource(R.string.chat),
|
||||||
|
fontSize = 15.sp,
|
||||||
|
color = AppColors.background,
|
||||||
|
fontWeight = androidx.compose.ui.text.font.FontWeight.W500
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -566,7 +670,7 @@ fun AgentPage(viewModel: AgentViewModel,agentItems: List<AgentItem>, page: Int,
|
|||||||
@Composable
|
@Composable
|
||||||
fun AgentCard2(viewModel: AgentViewModel,agentItem: AgentItem,navController: NavHostController) {
|
fun AgentCard2(viewModel: AgentViewModel,agentItem: AgentItem,navController: NavHostController) {
|
||||||
val AppColors = LocalAppTheme.current
|
val AppColors = LocalAppTheme.current
|
||||||
|
|
||||||
// 防抖状态
|
// 防抖状态
|
||||||
var lastClickTime by remember { mutableStateOf(0L) }
|
var lastClickTime by remember { mutableStateOf(0L) }
|
||||||
|
|
||||||
@@ -644,7 +748,12 @@ fun AgentCard2(viewModel: AgentViewModel,agentItem: AgentItem,navController: Nav
|
|||||||
.size(width = 60.dp, height = 32.dp)
|
.size(width = 60.dp, height = 32.dp)
|
||||||
.background(
|
.background(
|
||||||
color = Color(0X147c7480),
|
color = Color(0X147c7480),
|
||||||
shape = RoundedCornerShape(8.dp)
|
shape = RoundedCornerShape(
|
||||||
|
topStart = 14.dp,
|
||||||
|
topEnd = 14.dp,
|
||||||
|
bottomStart = 0.dp,
|
||||||
|
bottomEnd = 14.dp
|
||||||
|
)
|
||||||
)
|
)
|
||||||
.clickable {
|
.clickable {
|
||||||
if (DebounceUtils.simpleDebounceClick(lastClickTime, 500L) {
|
if (DebounceUtils.simpleDebounceClick(lastClickTime, 500L) {
|
||||||
@@ -673,3 +782,210 @@ fun AgentCard2(viewModel: AgentViewModel,agentItem: AgentItem,navController: Nav
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@Composable
|
||||||
|
fun ChatRoomsSection(
|
||||||
|
chatRooms: List<ChatRoom>,
|
||||||
|
navController: NavHostController
|
||||||
|
) {
|
||||||
|
val AppColors = LocalAppTheme.current
|
||||||
|
|
||||||
|
Column(
|
||||||
|
modifier = Modifier.fillMaxWidth()
|
||||||
|
) {
|
||||||
|
// 标题
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(bottom = 16.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
Image(
|
||||||
|
painter = painterResource(R.mipmap.rider_pro_hot_room),
|
||||||
|
contentDescription = "chat room",
|
||||||
|
modifier = Modifier.size(28.dp)
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.width(4.dp))
|
||||||
|
androidx.compose.material3.Text(
|
||||||
|
text = stringResource(R.string.hot_rooms),
|
||||||
|
fontSize = 16.sp,
|
||||||
|
fontWeight = androidx.compose.ui.text.font.FontWeight.W900,
|
||||||
|
color = AppColors.text
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
Column(
|
||||||
|
modifier = Modifier.fillMaxWidth()
|
||||||
|
) {
|
||||||
|
chatRooms.chunked(2).forEach { rowRooms ->
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(bottom = 12.dp),
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(12.dp)
|
||||||
|
) {
|
||||||
|
rowRooms.forEach { chatRoom ->
|
||||||
|
ChatRoomCard(
|
||||||
|
chatRoom = chatRoom,
|
||||||
|
navController = navController,
|
||||||
|
modifier = Modifier.weight(1f)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun ChatRoomCard(
|
||||||
|
chatRoom: ChatRoom,
|
||||||
|
navController: NavHostController,
|
||||||
|
modifier: Modifier = Modifier
|
||||||
|
) {
|
||||||
|
val AppColors = LocalAppTheme.current
|
||||||
|
val cardSize = 180.dp
|
||||||
|
val viewModel: AgentViewModel = viewModel()
|
||||||
|
val context = LocalContext.current
|
||||||
|
|
||||||
|
// 防抖状态
|
||||||
|
var lastClickTime by remember { mutableStateOf(0L) }
|
||||||
|
|
||||||
|
// Loading 对话框
|
||||||
|
if (viewModel.isJoiningRoom) {
|
||||||
|
Dialog(
|
||||||
|
onDismissRequest = { /* 阻止用户关闭对话框 */ },
|
||||||
|
properties = DialogProperties(
|
||||||
|
dismissOnBackPress = false,
|
||||||
|
dismissOnClickOutside = false
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.size(120.dp)
|
||||||
|
.background(
|
||||||
|
color = AppColors.background,
|
||||||
|
shape = RoundedCornerShape(12.dp)
|
||||||
|
),
|
||||||
|
contentAlignment = Alignment.Center
|
||||||
|
) {
|
||||||
|
Column(
|
||||||
|
horizontalAlignment = Alignment.CenterHorizontally,
|
||||||
|
verticalArrangement = Arrangement.Center
|
||||||
|
) {
|
||||||
|
CircularProgressIndicator(
|
||||||
|
modifier = Modifier.size(32.dp),
|
||||||
|
color = AppColors.main
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.height(12.dp))
|
||||||
|
androidx.compose.material3.Text(
|
||||||
|
text = "加入中...",
|
||||||
|
fontSize = 14.sp,
|
||||||
|
color = AppColors.text
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 正方形卡片,文字重叠在底部
|
||||||
|
Box(
|
||||||
|
modifier = modifier
|
||||||
|
.size(cardSize)
|
||||||
|
.background(AppColors.tabUnselectedBackground, RoundedCornerShape(12.dp))
|
||||||
|
.clickable(enabled = !viewModel.isJoiningRoom) {
|
||||||
|
if (!viewModel.isJoiningRoom && DebounceUtils.simpleDebounceClick(lastClickTime, 500L) {
|
||||||
|
// 加入群聊房间
|
||||||
|
viewModel.joinRoom(
|
||||||
|
id = chatRoom.id,
|
||||||
|
name = chatRoom.name,
|
||||||
|
avatar = chatRoom.avatar,
|
||||||
|
context = context,
|
||||||
|
navController = navController,
|
||||||
|
onSuccess = {
|
||||||
|
// 成功加入房间
|
||||||
|
},
|
||||||
|
onError = { errorMsg ->
|
||||||
|
// 处理错误,可以显示Toast或其他提示
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}) {
|
||||||
|
lastClickTime = System.currentTimeMillis()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
// 优先显示banner,如果没有banner则显示头像
|
||||||
|
val imageUrl = if (chatRoom.banner.isNotEmpty()) chatRoom.banner else chatRoom.avatar
|
||||||
|
|
||||||
|
if (imageUrl.isNotEmpty()) {
|
||||||
|
CustomAsyncImage(
|
||||||
|
imageUrl = imageUrl,
|
||||||
|
contentDescription = if (chatRoom.banner.isNotEmpty()) "房间banner" else "房间头像",
|
||||||
|
modifier = Modifier
|
||||||
|
.width(cardSize)
|
||||||
|
.height(120.dp)
|
||||||
|
.clip(RoundedCornerShape(
|
||||||
|
topStart = 12.dp,
|
||||||
|
topEnd = 12.dp,
|
||||||
|
bottomStart = 0.dp,
|
||||||
|
bottomEnd = 0.dp)),
|
||||||
|
contentScale = androidx.compose.ui.layout.ContentScale.Crop
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
// 默认房间图标
|
||||||
|
Image(
|
||||||
|
painter = painterResource(R.mipmap.rider_pro_agent),
|
||||||
|
contentDescription = "默认房间图标",
|
||||||
|
modifier = Modifier.size(cardSize * 0.4f),
|
||||||
|
colorFilter = ColorFilter.tint(AppColors.secondaryText)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 房间名称,重叠在底部
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.align(Alignment.BottomCenter)
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(bottom = 32.dp, start = 10.dp, end = 10.dp)
|
||||||
|
.clip(RoundedCornerShape(12.dp))
|
||||||
|
|
||||||
|
) {
|
||||||
|
androidx.compose.material3.Text(
|
||||||
|
text = chatRoom.name,
|
||||||
|
fontSize = 14.sp,
|
||||||
|
fontWeight = androidx.compose.ui.text.font.FontWeight.W900,
|
||||||
|
color = AppColors.text,
|
||||||
|
maxLines = 1,
|
||||||
|
overflow = androidx.compose.ui.text.style.TextOverflow.Ellipsis,
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
textAlign = androidx.compose.ui.text.style.TextAlign.Left
|
||||||
|
)
|
||||||
|
}
|
||||||
|
// 显示人数
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.align(Alignment.BottomCenter)
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(bottom = 10.dp, start = 10.dp, end = 10.dp)
|
||||||
|
) {
|
||||||
|
Row(
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
modifier = Modifier.fillMaxWidth()
|
||||||
|
) {
|
||||||
|
Image(
|
||||||
|
painter = painterResource(R.drawable.rider_pro_nav_profile),
|
||||||
|
contentDescription = "chat",
|
||||||
|
modifier = Modifier.size(16.dp),
|
||||||
|
colorFilter = ColorFilter.tint(AppColors.secondaryText)
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.width(4.dp))
|
||||||
|
Text(
|
||||||
|
text = "${chatRoom.memberCount} ${stringResource(R.string.chatting_now)}",
|
||||||
|
fontSize = 12.sp,
|
||||||
|
modifier = Modifier.alpha(0.6f),
|
||||||
|
color = AppColors.text,
|
||||||
|
fontWeight = androidx.compose.ui.text.font.FontWeight.W500
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -17,6 +17,21 @@ import com.aiosman.ravenow.ui.NavigationRoute
|
|||||||
import com.aiosman.ravenow.ui.index.tabs.message.MessageListViewModel.userService
|
import com.aiosman.ravenow.ui.index.tabs.message.MessageListViewModel.userService
|
||||||
import com.aiosman.ravenow.ui.index.tabs.moment.tabs.expolre.AgentItem
|
import com.aiosman.ravenow.ui.index.tabs.moment.tabs.expolre.AgentItem
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
|
import android.util.Log
|
||||||
|
import com.aiosman.ravenow.data.Room
|
||||||
|
import com.aiosman.ravenow.AppState
|
||||||
|
import com.aiosman.ravenow.AppStore
|
||||||
|
import com.aiosman.ravenow.ConstVars
|
||||||
|
import com.aiosman.ravenow.data.api.CreateGroupChatRequestBody
|
||||||
|
import com.aiosman.ravenow.ui.index.tabs.message.tab.GroupChatListViewModel.createGroupChat
|
||||||
|
import com.aiosman.ravenow.ui.navigateToGroupChat
|
||||||
|
import com.aiosman.ravenow.data.api.ApiErrorResponse
|
||||||
|
import com.google.gson.Gson
|
||||||
|
import android.content.Context
|
||||||
|
import android.widget.Toast
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import com.aiosman.ravenow.data.api.JoinGroupChatRequestBody
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 缓存数据结构,用于存储每个分类的Agent列表
|
* 缓存数据结构,用于存储每个分类的Agent列表
|
||||||
@@ -26,6 +41,13 @@ data class AgentCacheData(
|
|||||||
val currentPage: Int,
|
val currentPage: Int,
|
||||||
val hasMoreData: Boolean
|
val hasMoreData: Boolean
|
||||||
)
|
)
|
||||||
|
data class ChatRoom(
|
||||||
|
val id: Int,
|
||||||
|
val name: String,
|
||||||
|
val avatar: String = "",
|
||||||
|
val banner: String = "",
|
||||||
|
val memberCount: Int
|
||||||
|
)
|
||||||
|
|
||||||
object AgentViewModel: ViewModel() {
|
object AgentViewModel: ViewModel() {
|
||||||
|
|
||||||
@@ -40,6 +62,11 @@ object AgentViewModel: ViewModel() {
|
|||||||
var errorMessage by mutableStateOf<String?>(null)
|
var errorMessage by mutableStateOf<String?>(null)
|
||||||
private set
|
private set
|
||||||
|
|
||||||
|
var chatRooms by mutableStateOf<List<ChatRoom>>(emptyList())
|
||||||
|
private set
|
||||||
|
|
||||||
|
var rooms by mutableStateOf<List<Room>>(emptyList())
|
||||||
|
private set
|
||||||
|
|
||||||
var isRefreshing by mutableStateOf(false)
|
var isRefreshing by mutableStateOf(false)
|
||||||
private set
|
private set
|
||||||
@@ -57,6 +84,9 @@ object AgentViewModel: ViewModel() {
|
|||||||
var hasMoreData by mutableStateOf(true)
|
var hasMoreData by mutableStateOf(true)
|
||||||
private set
|
private set
|
||||||
|
|
||||||
|
var isJoiningRoom by mutableStateOf(false)
|
||||||
|
private set
|
||||||
|
|
||||||
private val pageSize = 20
|
private val pageSize = 20
|
||||||
private var currentCategoryId: Int? = null
|
private var currentCategoryId: Int? = null
|
||||||
|
|
||||||
@@ -66,6 +96,7 @@ object AgentViewModel: ViewModel() {
|
|||||||
init {
|
init {
|
||||||
loadAgentData()
|
loadAgentData()
|
||||||
loadCategories()
|
loadCategories()
|
||||||
|
loadChatRooms()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun loadAgentData(categoryId: Int? = null, page: Int = 1, isLoadMore: Boolean = false, forceRefresh: Boolean = false) {
|
private fun loadAgentData(categoryId: Int? = null, page: Int = 1, isLoadMore: Boolean = false, forceRefresh: Boolean = false) {
|
||||||
@@ -159,6 +190,40 @@ object AgentViewModel: ViewModel() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun loadChatRooms() {
|
||||||
|
viewModelScope.launch {
|
||||||
|
try {
|
||||||
|
val response = apiClient.getRooms(
|
||||||
|
page = 1,
|
||||||
|
pageSize = 20,
|
||||||
|
isRecommended = 1,
|
||||||
|
random = 1
|
||||||
|
)
|
||||||
|
if (response.isSuccessful) {
|
||||||
|
val allRooms = response.body()?.list ?: emptyList()
|
||||||
|
val targetCount = (allRooms.size / 2) * 2
|
||||||
|
rooms = allRooms.take(targetCount)
|
||||||
|
|
||||||
|
// 转换为ChatRoom格式用于兼容现有UI
|
||||||
|
chatRooms = rooms.map { room ->
|
||||||
|
ChatRoom(
|
||||||
|
id = room.id,
|
||||||
|
name = room.name,
|
||||||
|
avatar = room.avatar,
|
||||||
|
banner = ConstVars.BASE_SERVER + "/api/v1/outside/" + room.recommendBanner + "?token=${AppStore.token}",
|
||||||
|
memberCount = room.userCount
|
||||||
|
)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
// 如果网络请求失败,使用默认数据
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun loadCategories() {
|
private fun loadCategories() {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
// 如果分类已经加载,不重复请求
|
// 如果分类已经加载,不重复请求
|
||||||
@@ -280,6 +345,81 @@ object AgentViewModel: ViewModel() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 加入房间
|
||||||
|
*/
|
||||||
|
fun joinRoom(
|
||||||
|
id: Int,
|
||||||
|
name: String,
|
||||||
|
avatar: String,
|
||||||
|
context: Context,
|
||||||
|
navController: NavHostController,
|
||||||
|
onSuccess: () -> Unit,
|
||||||
|
onError: (String) -> Unit
|
||||||
|
) {
|
||||||
|
// 防止重复点击
|
||||||
|
if (isJoiningRoom) return
|
||||||
|
|
||||||
|
viewModelScope.launch {
|
||||||
|
try {
|
||||||
|
isJoiningRoom = true
|
||||||
|
val response = apiClient.joinRoom(JoinGroupChatRequestBody(roomId = id))
|
||||||
|
if (response.isSuccessful) {
|
||||||
|
// 打开房间
|
||||||
|
val openRoomResponse = apiClient.createGroupChatAi(
|
||||||
|
roomId = id
|
||||||
|
)
|
||||||
|
|
||||||
|
if (openRoomResponse.isSuccessful){
|
||||||
|
val respData = openRoomResponse.body()
|
||||||
|
respData?.let {
|
||||||
|
viewModelScope.launch {
|
||||||
|
try {
|
||||||
|
// 群聊直接使用群ID进行导航
|
||||||
|
navController.navigateToGroupChat(
|
||||||
|
id = respData.data.trtcRoomId,
|
||||||
|
name = name,
|
||||||
|
avatar = avatar
|
||||||
|
)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
onError("加入房间失败")
|
||||||
|
e.printStackTrace()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
onSuccess()
|
||||||
|
|
||||||
|
} else {
|
||||||
|
// 处理错误响应
|
||||||
|
try {
|
||||||
|
val errorBody = response.errorBody()?.string()
|
||||||
|
if (errorBody != null) {
|
||||||
|
val gson = Gson()
|
||||||
|
val errorResponse = gson.fromJson(errorBody, ApiErrorResponse::class.java)
|
||||||
|
|
||||||
|
// 在主线程显示 Toast
|
||||||
|
Toast.makeText(context, errorResponse.error, Toast.LENGTH_LONG).show()
|
||||||
|
onError(errorResponse.error)
|
||||||
|
} else {
|
||||||
|
Toast.makeText(context, "加入房间失败", Toast.LENGTH_SHORT).show()
|
||||||
|
onError("加入房间失败")
|
||||||
|
}
|
||||||
|
} catch (parseException: Exception) {
|
||||||
|
// 如果解析错误响应失败,显示默认错误信息
|
||||||
|
Toast.makeText(context, "加入房间失败", Toast.LENGTH_SHORT).show()
|
||||||
|
onError("加入房间失败")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Toast.makeText(context, "网络请求失败:${e.message}", Toast.LENGTH_SHORT).show()
|
||||||
|
onError("网络请求失败:${e.message}")
|
||||||
|
} finally {
|
||||||
|
isJoiningRoom = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 重置ViewModel状态,用于登出或切换账号时清理数据
|
* 重置ViewModel状态,用于登出或切换账号时清理数据
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package com.aiosman.ravenow.ui.index.tabs.message.tab
|
|||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.icu.util.Calendar
|
import android.icu.util.Calendar
|
||||||
|
import android.util.Log
|
||||||
import androidx.compose.runtime.getValue
|
import androidx.compose.runtime.getValue
|
||||||
import androidx.compose.runtime.mutableStateOf
|
import androidx.compose.runtime.mutableStateOf
|
||||||
import androidx.compose.runtime.setValue
|
import androidx.compose.runtime.setValue
|
||||||
@@ -48,7 +49,7 @@ data class GroupConversation(
|
|||||||
val lastMessage = Calendar.getInstance().apply {
|
val lastMessage = Calendar.getInstance().apply {
|
||||||
timeInMillis = conversation.latestMsgSendTime
|
timeInMillis = conversation.latestMsgSendTime
|
||||||
}
|
}
|
||||||
|
|
||||||
// 解析最新消息
|
// 解析最新消息
|
||||||
val (displayText, isSelf) = MessageParser.parseLatestMessage(conversation.latestMsg)
|
val (displayText, isSelf) = MessageParser.parseLatestMessage(conversation.latestMsg)
|
||||||
|
|
||||||
@@ -139,7 +140,7 @@ object GroupChatListViewModel : ViewModel() {
|
|||||||
android.util.Log.w("GroupChatListViewModel", "OpenIM 未登录,跳过加载群聊列表")
|
android.util.Log.w("GroupChatListViewModel", "OpenIM 未登录,跳过加载群聊列表")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
val result = suspendCoroutine { continuation ->
|
val result = suspendCoroutine { continuation ->
|
||||||
// OpenIM 获取所有会话列表
|
// OpenIM 获取所有会话列表
|
||||||
OpenIMClient.getInstance().conversationManager.getAllConversationList(
|
OpenIMClient.getInstance().conversationManager.getAllConversationList(
|
||||||
@@ -167,10 +168,12 @@ object GroupChatListViewModel : ViewModel() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun createGroupChat(
|
fun createGroupChat(
|
||||||
trtcGroupId: String,
|
trtcGroupId: String? = null,
|
||||||
|
roomId: Int? = null
|
||||||
) {
|
) {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
val response = ApiClient.api.createGroupChatAi(trtcGroupId = trtcGroupId)
|
val response = ApiClient.api.createGroupChatAi(trtcGroupId = trtcGroupId,roomId = roomId)
|
||||||
|
Log.d("debug",response.toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -72,9 +72,12 @@ open class BaseMomentModel :ViewModel(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
suspend fun onAddComment(id: Int) {
|
fun onAddComment(id: Int) {
|
||||||
// val currentPagingData = _momentsFlow.value
|
momentLoader.updateCommentCount(id, +1)
|
||||||
// updateCommentCount(id)
|
}
|
||||||
|
|
||||||
|
fun onDeleteComment(id: Int) {
|
||||||
|
momentLoader.updateCommentCount(id, -1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -83,6 +86,7 @@ open class BaseMomentModel :ViewModel(){
|
|||||||
fun onMomentFavoriteChangeEvent(event: MomentFavouriteChangeEvent) {
|
fun onMomentFavoriteChangeEvent(event: MomentFavouriteChangeEvent) {
|
||||||
momentLoader.updateFavoriteCount(event.postId, event.isFavourite)
|
momentLoader.updateFavoriteCount(event.postId, event.isFavourite)
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun favoriteMoment(id: Int) {
|
suspend fun favoriteMoment(id: Int) {
|
||||||
momentService.favoriteMoment(id)
|
momentService.favoriteMoment(id)
|
||||||
momentLoader.updateFavoriteCount(id, true)
|
momentLoader.updateFavoriteCount(id, true)
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package com.aiosman.ravenow.ui.index.tabs.moment
|
|||||||
import androidx.compose.foundation.ExperimentalFoundationApi
|
import androidx.compose.foundation.ExperimentalFoundationApi
|
||||||
import androidx.compose.foundation.Image
|
import androidx.compose.foundation.Image
|
||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
|
import androidx.compose.foundation.horizontalScroll
|
||||||
import androidx.compose.foundation.layout.Arrangement
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
import androidx.compose.foundation.layout.Box
|
import androidx.compose.foundation.layout.Box
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.Column
|
||||||
@@ -20,6 +21,7 @@ import androidx.compose.foundation.layout.systemBars
|
|||||||
import androidx.compose.foundation.layout.width
|
import androidx.compose.foundation.layout.width
|
||||||
import androidx.compose.foundation.pager.HorizontalPager
|
import androidx.compose.foundation.pager.HorizontalPager
|
||||||
import androidx.compose.foundation.pager.rememberPagerState
|
import androidx.compose.foundation.pager.rememberPagerState
|
||||||
|
import androidx.compose.foundation.rememberScrollState
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material.ExperimentalMaterialApi
|
import androidx.compose.material.ExperimentalMaterialApi
|
||||||
import androidx.compose.material.Icon
|
import androidx.compose.material.Icon
|
||||||
@@ -45,6 +47,7 @@ import com.aiosman.ravenow.ui.index.tabs.moment.tabs.dynamic.Dynamic
|
|||||||
import com.aiosman.ravenow.ui.index.tabs.moment.tabs.expolre.Explore
|
import com.aiosman.ravenow.ui.index.tabs.moment.tabs.expolre.Explore
|
||||||
import com.aiosman.ravenow.ui.index.tabs.moment.tabs.hot.HotMomentsList
|
import com.aiosman.ravenow.ui.index.tabs.moment.tabs.hot.HotMomentsList
|
||||||
import com.aiosman.ravenow.ui.index.tabs.moment.tabs.timeline.TimelineMomentsList
|
import com.aiosman.ravenow.ui.index.tabs.moment.tabs.timeline.TimelineMomentsList
|
||||||
|
import com.aiosman.ravenow.ui.index.tabs.moment.tabs.news.NewsScreen
|
||||||
import com.aiosman.ravenow.ui.index.tabs.search.SearchViewModel
|
import com.aiosman.ravenow.ui.index.tabs.search.SearchViewModel
|
||||||
import com.aiosman.ravenow.ui.modifiers.noRippleClickable
|
import com.aiosman.ravenow.ui.modifiers.noRippleClickable
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
@@ -54,7 +57,7 @@ import androidx.compose.runtime.remember
|
|||||||
import androidx.compose.ui.draw.clip
|
import androidx.compose.ui.draw.clip
|
||||||
import androidx.compose.ui.graphics.ColorFilter
|
import androidx.compose.ui.graphics.ColorFilter
|
||||||
import com.aiosman.ravenow.ui.composables.TabItem
|
import com.aiosman.ravenow.ui.composables.TabItem
|
||||||
import com.aiosman.ravenow.ui.composables.TabSpacer
|
import com.aiosman.ravenow.ui.composables.UnderlineTabItem
|
||||||
import com.aiosman.ravenow.ui.composables.rememberDebouncer
|
import com.aiosman.ravenow.ui.composables.rememberDebouncer
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -68,8 +71,8 @@ fun MomentsList() {
|
|||||||
val navigationBarPaddings =
|
val navigationBarPaddings =
|
||||||
WindowInsets.navigationBars.asPaddingValues().calculateBottomPadding() + 48.dp
|
WindowInsets.navigationBars.asPaddingValues().calculateBottomPadding() + 48.dp
|
||||||
val statusBarPaddingValues = WindowInsets.systemBars.asPaddingValues()
|
val statusBarPaddingValues = WindowInsets.systemBars.asPaddingValues()
|
||||||
// 游客模式下不显示timeline,只显示2个tab:Dynamic、Hot // 游客模式下不显示timeline,只显示3个tab:Explore、Dynamic、Hot
|
// 现在有6个tab:推荐、短视频、新闻、探索、关注、热门
|
||||||
val tabCount = if (AppStore.isGuest) 2 else 3 // val tabCount = if (AppStore.isGuest) 3 else 4
|
val tabCount = 6
|
||||||
var pagerState = rememberPagerState { tabCount }
|
var pagerState = rememberPagerState { tabCount }
|
||||||
var scope = rememberCoroutineScope()
|
var scope = rememberCoroutineScope()
|
||||||
Column(
|
Column(
|
||||||
@@ -81,60 +84,127 @@ fun MomentsList() {
|
|||||||
),
|
),
|
||||||
horizontalAlignment = Alignment.CenterHorizontally,
|
horizontalAlignment = Alignment.CenterHorizontally,
|
||||||
) {
|
) {
|
||||||
|
// 顶部区域:可滚动的标签页 + 搜索按钮
|
||||||
Row(
|
Row(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.height(44.dp)
|
.height(44.dp)
|
||||||
.padding(horizontal = 16.dp),
|
.padding(horizontal = 16.dp),
|
||||||
// center the tabs
|
horizontalArrangement = Arrangement.SpaceBetween,
|
||||||
horizontalArrangement = Arrangement.Start,
|
|
||||||
verticalAlignment = Alignment.CenterVertically
|
verticalAlignment = Alignment.CenterVertically
|
||||||
) {
|
) {
|
||||||
//原探索//
|
// 可滚动的标签页行
|
||||||
// Column(
|
Row(
|
||||||
// modifier = Modifier
|
modifier = Modifier
|
||||||
// .noRippleClickable {
|
.weight(1f)
|
||||||
// scope.launch {
|
.horizontalScroll(rememberScrollState()),
|
||||||
// pagerState.animateScrollToPage(0)
|
horizontalArrangement = Arrangement.Start,
|
||||||
// }
|
verticalAlignment = Alignment.CenterVertically
|
||||||
// }.padding(start = 16.dp),
|
) {
|
||||||
// verticalArrangement = Arrangement.Center,
|
val tabDebouncer = rememberDebouncer()
|
||||||
// horizontalAlignment = Alignment.CenterHorizontally
|
|
||||||
//
|
// 推荐标签
|
||||||
// ) {
|
UnderlineTabItem(
|
||||||
// Text(
|
text = stringResource(R.string.tab_recommend),
|
||||||
// text = stringResource(R.string.index_worldwide),
|
isSelected = pagerState.currentPage == 0,
|
||||||
// fontSize = if (pagerState.currentPage == 0)18.sp else 16.sp,
|
onClick = {
|
||||||
// color = if (pagerState.currentPage == 0) AppColors.text else AppColors.nonActiveText,
|
tabDebouncer {
|
||||||
// fontWeight = FontWeight.W600)
|
scope.launch {
|
||||||
// Spacer(modifier = Modifier.height(4.dp))
|
pagerState.animateScrollToPage(0)
|
||||||
//
|
}
|
||||||
// Image(
|
}
|
||||||
// painter = painterResource(
|
}
|
||||||
// if (pagerState.currentPage == 0) R.mipmap.tab_indicator_selected
|
)
|
||||||
// else R.drawable.tab_indicator_unselected
|
|
||||||
// ),
|
|
||||||
// contentDescription = "tab indicator",
|
// 短视频标签
|
||||||
// modifier = Modifier
|
UnderlineTabItem(
|
||||||
// .width(34.dp)
|
text = stringResource(R.string.tab_short_video),
|
||||||
// .height(4.dp)
|
isSelected = pagerState.currentPage == 1,
|
||||||
// )
|
onClick = {
|
||||||
//
|
tabDebouncer {
|
||||||
// }
|
scope.launch {
|
||||||
// Spacer(modifier = Modifier.width(16.dp))
|
pagerState.animateScrollToPage(1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
// 动态标签
|
||||||
|
UnderlineTabItem(
|
||||||
|
text = stringResource(R.string.moment),
|
||||||
|
isSelected = pagerState.currentPage == 2,
|
||||||
|
onClick = {
|
||||||
|
tabDebouncer {
|
||||||
|
scope.launch {
|
||||||
|
pagerState.animateScrollToPage(2)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
// 只有非游客用户才显示"关注"tab
|
||||||
|
if (!AppStore.isGuest) {
|
||||||
|
UnderlineTabItem(
|
||||||
|
text = stringResource(R.string.index_following),
|
||||||
|
isSelected = pagerState.currentPage == 3,
|
||||||
|
onClick = {
|
||||||
|
tabDebouncer {
|
||||||
|
scope.launch {
|
||||||
|
pagerState.animateScrollToPage(3)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
// 热门标签
|
||||||
|
UnderlineTabItem(
|
||||||
|
text = stringResource(R.string.index_hot),
|
||||||
|
isSelected = pagerState.currentPage == 4,
|
||||||
|
onClick = {
|
||||||
|
tabDebouncer {
|
||||||
|
scope.launch {
|
||||||
|
pagerState.animateScrollToPage(4)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
// 热门标签 (游客模式)
|
||||||
|
UnderlineTabItem(
|
||||||
|
text = stringResource(R.string.index_hot),
|
||||||
|
isSelected = pagerState.currentPage == 4,
|
||||||
|
onClick = {
|
||||||
|
tabDebouncer {
|
||||||
|
scope.launch {
|
||||||
|
pagerState.animateScrollToPage(4)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 新闻标签
|
||||||
|
UnderlineTabItem(
|
||||||
|
text = stringResource(R.string.tab_news),
|
||||||
|
isSelected = pagerState.currentPage == 5,
|
||||||
|
onClick = {
|
||||||
|
tabDebouncer {
|
||||||
|
scope.launch {
|
||||||
|
pagerState.animateScrollToPage(5)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 搜索按钮
|
||||||
val lastClickTime = remember { mutableStateOf(0L) }
|
val lastClickTime = remember { mutableStateOf(0L) }
|
||||||
val clickDelay = 500L
|
val clickDelay = 500L
|
||||||
Text(
|
|
||||||
text = stringResource(R.string.moment),
|
|
||||||
fontSize = 20.sp,
|
|
||||||
fontWeight = FontWeight.W900,
|
|
||||||
color = AppColors.text,
|
|
||||||
modifier = Modifier
|
|
||||||
.align(Alignment.CenterVertically)
|
|
||||||
)
|
|
||||||
|
|
||||||
Spacer(modifier = Modifier.weight(1f))
|
|
||||||
|
|
||||||
Image(
|
Image(
|
||||||
painter = painterResource(id = R.drawable.rider_pro_nav_search),
|
painter = painterResource(id = R.drawable.rider_pro_nav_search),
|
||||||
contentDescription = "search",
|
contentDescription = "search",
|
||||||
@@ -151,113 +221,39 @@ fun MomentsList() {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
Spacer(modifier = Modifier.height(23.dp))
|
|
||||||
|
|
||||||
Row(
|
|
||||||
modifier = Modifier
|
|
||||||
.fillMaxWidth()
|
|
||||||
.wrapContentHeight()
|
|
||||||
.padding(start = 16.dp, bottom = 16.dp),
|
|
||||||
horizontalArrangement = Arrangement.Start,
|
|
||||||
verticalAlignment = Alignment.Bottom
|
|
||||||
) {
|
|
||||||
val tabDebouncer = rememberDebouncer()
|
|
||||||
|
|
||||||
// 新探索标签
|
|
||||||
Box {
|
|
||||||
CustomTabItem(
|
|
||||||
text = stringResource(R.string.index_worldwide),
|
|
||||||
isSelected = pagerState.currentPage == 0,
|
|
||||||
onClick = {
|
|
||||||
tabDebouncer {
|
|
||||||
scope.launch {
|
|
||||||
pagerState.animateScrollToPage(0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
TabSpacer()
|
|
||||||
|
|
||||||
// 只有非游客用户才显示"关注"tab
|
|
||||||
if (!AppStore.isGuest) {
|
|
||||||
Box {
|
|
||||||
CustomTabItem(
|
|
||||||
text = stringResource(R.string.index_following),
|
|
||||||
isSelected = pagerState.currentPage == 1,
|
|
||||||
onClick = {
|
|
||||||
tabDebouncer {
|
|
||||||
scope.launch {
|
|
||||||
pagerState.animateScrollToPage(1)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
TabSpacer()
|
|
||||||
|
|
||||||
// 热门标签
|
|
||||||
Box {
|
|
||||||
CustomTabItem(
|
|
||||||
text = stringResource(R.string.index_hot),
|
|
||||||
isSelected = pagerState.currentPage == 2,
|
|
||||||
onClick = {
|
|
||||||
tabDebouncer {
|
|
||||||
scope.launch {
|
|
||||||
pagerState.animateScrollToPage(2)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// 热门标签 (游客模式)
|
|
||||||
Box {
|
|
||||||
CustomTabItem(
|
|
||||||
text = stringResource(R.string.index_hot),
|
|
||||||
isSelected = pagerState.currentPage == 1,
|
|
||||||
onClick = {
|
|
||||||
tabDebouncer {
|
|
||||||
scope.launch {
|
|
||||||
pagerState.animateScrollToPage(1)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
HorizontalPager(
|
HorizontalPager(
|
||||||
state = pagerState,
|
state = pagerState,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.weight(1f)
|
.weight(1f)
|
||||||
) {
|
) {
|
||||||
if (AppStore.isGuest) {
|
when (it) {
|
||||||
// 游客模式:Dynamic(0), Hot(1)
|
0 -> {
|
||||||
when (it) {
|
// 推荐页面
|
||||||
0 -> {
|
NewsScreen()
|
||||||
Dynamic()
|
|
||||||
}
|
|
||||||
1 -> {
|
|
||||||
HotMomentsList()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
1 -> {
|
||||||
// 正常用户:Dynamic(0), Timeline(1), Hot(2)
|
// 短视频页面
|
||||||
when (it) {
|
}
|
||||||
0 -> {
|
2 -> {
|
||||||
Dynamic()
|
// 动态页面 - 暂时显示时间线内容
|
||||||
}
|
Dynamic()
|
||||||
1 -> {
|
}
|
||||||
|
3 -> {
|
||||||
|
// 关注页面 (仅非游客用户) 或 热门页面 (游客用户)
|
||||||
|
if (AppStore.isGuest) {
|
||||||
|
HotMomentsList()
|
||||||
|
} else {
|
||||||
TimelineMomentsList()
|
TimelineMomentsList()
|
||||||
}
|
}
|
||||||
2 -> {
|
}
|
||||||
HotMomentsList()
|
4 -> {
|
||||||
}
|
// 热门页面 (仅非游客用户)
|
||||||
|
HotMomentsList()
|
||||||
|
}
|
||||||
|
5 -> {
|
||||||
|
// 新闻页面
|
||||||
|
NewsScreen()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -168,6 +168,7 @@ fun Dynamic() {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
PullRefreshIndicator(model.refreshing, state, Modifier.align(Alignment.TopCenter))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -369,6 +369,7 @@ fun Explore() {
|
|||||||
trtcId = roomItem.trtcId.toString(),
|
trtcId = roomItem.trtcId.toString(),
|
||||||
name = roomItem.title,
|
name = roomItem.title,
|
||||||
avatar = roomItem.avatar,
|
avatar = roomItem.avatar,
|
||||||
|
context = context,
|
||||||
navController = navController,
|
navController = navController,
|
||||||
onSuccess = {
|
onSuccess = {
|
||||||
Toast.makeText(context, enterSuccessText, Toast.LENGTH_SHORT).show()
|
Toast.makeText(context, enterSuccessText, Toast.LENGTH_SHORT).show()
|
||||||
@@ -523,7 +524,7 @@ fun Explore() {
|
|||||||
Row(
|
Row(
|
||||||
verticalAlignment = Alignment.CenterVertically
|
verticalAlignment = Alignment.CenterVertically
|
||||||
) {
|
) {
|
||||||
/* Image(
|
Image(
|
||||||
painter = painterResource(R.drawable.rider_pro_nav_profile),
|
painter = painterResource(R.drawable.rider_pro_nav_profile),
|
||||||
contentDescription = "chat",
|
contentDescription = "chat",
|
||||||
modifier = Modifier.size(16.dp),
|
modifier = Modifier.size(16.dp),
|
||||||
@@ -535,7 +536,7 @@ fun Explore() {
|
|||||||
fontSize = 12.sp,
|
fontSize = 12.sp,
|
||||||
color = Color.White,
|
color = Color.White,
|
||||||
fontWeight = androidx.compose.ui.text.font.FontWeight.W500
|
fontWeight = androidx.compose.ui.text.font.FontWeight.W500
|
||||||
)*/
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 底部:标题和描述
|
// 底部:标题和描述
|
||||||
@@ -636,6 +637,7 @@ fun Explore() {
|
|||||||
trtcId = bannerItem.trtcId.toString(),
|
trtcId = bannerItem.trtcId.toString(),
|
||||||
name = bannerItem.title,
|
name = bannerItem.title,
|
||||||
avatar = bannerItem.avatar,
|
avatar = bannerItem.avatar,
|
||||||
|
context = context,
|
||||||
navController = navController,
|
navController = navController,
|
||||||
onSuccess = {
|
onSuccess = {
|
||||||
Toast.makeText(context, enterSuccessText, Toast.LENGTH_SHORT).show()
|
Toast.makeText(context, enterSuccessText, Toast.LENGTH_SHORT).show()
|
||||||
|
|||||||
@@ -17,32 +17,36 @@ import com.aiosman.ravenow.ui.index.tabs.message.MessageListViewModel.userServic
|
|||||||
import com.aiosman.ravenow.ui.index.tabs.message.tab.GroupChatListViewModel
|
import com.aiosman.ravenow.ui.index.tabs.message.tab.GroupChatListViewModel
|
||||||
import com.aiosman.ravenow.ui.index.tabs.message.tab.GroupChatListViewModel.createGroupChat
|
import com.aiosman.ravenow.ui.index.tabs.message.tab.GroupChatListViewModel.createGroupChat
|
||||||
import com.aiosman.ravenow.ui.navigateToGroupChat
|
import com.aiosman.ravenow.ui.navigateToGroupChat
|
||||||
|
import com.aiosman.ravenow.data.api.ApiErrorResponse
|
||||||
|
import com.google.gson.Gson
|
||||||
|
import android.content.Context
|
||||||
|
import android.widget.Toast
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
|
|
||||||
class ExploreViewModel : ViewModel() {
|
class ExploreViewModel : ViewModel() {
|
||||||
|
|
||||||
private val apiClient: RaveNowAPI = ApiClient.api
|
private val apiClient: RaveNowAPI = ApiClient.api
|
||||||
|
|
||||||
var bannerItems by mutableStateOf<List<BannerItem>>(emptyList())
|
var bannerItems by mutableStateOf<List<BannerItem>>(emptyList())
|
||||||
private set
|
private set
|
||||||
|
|
||||||
var agentItems by mutableStateOf<List<AgentItem>>(emptyList())
|
var agentItems by mutableStateOf<List<AgentItem>>(emptyList())
|
||||||
private set
|
private set
|
||||||
|
|
||||||
var isLoading by mutableStateOf(false)
|
var isLoading by mutableStateOf(false)
|
||||||
private set
|
private set
|
||||||
|
|
||||||
var isRefreshing by mutableStateOf(false)
|
var isRefreshing by mutableStateOf(false)
|
||||||
private set
|
private set
|
||||||
|
|
||||||
var errorMessage by mutableStateOf<String?>(null)
|
var errorMessage by mutableStateOf<String?>(null)
|
||||||
private set
|
private set
|
||||||
|
|
||||||
init {
|
init {
|
||||||
loadBannerData()
|
loadBannerData()
|
||||||
loadAgentData()
|
loadAgentData()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun refreshBannerData() {
|
fun refreshBannerData() {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
isRefreshing = true
|
isRefreshing = true
|
||||||
@@ -64,7 +68,7 @@ class ExploreViewModel : ViewModel() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun refreshAgentData() {
|
fun refreshAgentData() {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
isRefreshing = true
|
isRefreshing = true
|
||||||
@@ -86,7 +90,7 @@ class ExploreViewModel : ViewModel() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun loadBannerData() {
|
private fun loadBannerData() {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
isLoading = true
|
isLoading = true
|
||||||
@@ -108,7 +112,7 @@ class ExploreViewModel : ViewModel() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun loadAgentData() {
|
private fun loadAgentData() {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
isLoading = true
|
isLoading = true
|
||||||
@@ -130,21 +134,24 @@ class ExploreViewModel : ViewModel() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun createSingleChat(
|
fun createSingleChat(
|
||||||
openId: String,
|
openId: String,
|
||||||
) {
|
) {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
val response = ApiClient.api.createSingleChat(SingleChatRequestBody(agentOpenId = openId))
|
val response =
|
||||||
|
ApiClient.api.createSingleChat(SingleChatRequestBody(agentOpenId = openId))
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun goToChatAi(
|
fun goToChatAi(
|
||||||
openId: String,
|
openId: String,
|
||||||
navController: NavHostController
|
navController: NavHostController
|
||||||
) {
|
) {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
val profile = userService.getUserProfileByOpenId(openId)
|
val profile = userService.getUserProfileByOpenId(openId)
|
||||||
createGroup2ChatAi(profile.trtcUserId,"ai_group",navController,profile.id)
|
createGroup2ChatAi(profile.trtcUserId, "ai_group", navController, profile.id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -152,6 +159,7 @@ class ExploreViewModel : ViewModel() {
|
|||||||
trtcId: String,
|
trtcId: String,
|
||||||
name: String,
|
name: String,
|
||||||
avatar: String,
|
avatar: String,
|
||||||
|
context: Context,
|
||||||
navController: NavHostController,
|
navController: NavHostController,
|
||||||
onSuccess: () -> Unit,
|
onSuccess: () -> Unit,
|
||||||
onError: (String) -> Unit
|
onError: (String) -> Unit
|
||||||
@@ -160,24 +168,45 @@ class ExploreViewModel : ViewModel() {
|
|||||||
try {
|
try {
|
||||||
val response = apiClient.joinRoom(JoinGroupChatRequestBody(trtcId = trtcId))
|
val response = apiClient.joinRoom(JoinGroupChatRequestBody(trtcId = trtcId))
|
||||||
if (response.isSuccessful) {
|
if (response.isSuccessful) {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
try {
|
try {
|
||||||
createGroupChat(trtcGroupId = trtcId)
|
createGroupChat(trtcGroupId = trtcId)
|
||||||
// 群聊直接使用群ID进行导航
|
// 群聊直接使用群ID进行导航
|
||||||
navController.navigateToGroupChat( id = trtcId,
|
navController.navigateToGroupChat(
|
||||||
name = name,
|
id = trtcId,
|
||||||
avatar = avatar)
|
name = name,
|
||||||
} catch (e: Exception) {
|
avatar = avatar
|
||||||
onError("加入房间失败")
|
)
|
||||||
e.printStackTrace()
|
} catch (e: Exception) {
|
||||||
}
|
onError("加入房间失败")
|
||||||
}
|
e.printStackTrace()
|
||||||
onSuccess()
|
}
|
||||||
|
}
|
||||||
|
onSuccess()
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
onError("加入房间失败")
|
// 处理错误响应
|
||||||
|
try {
|
||||||
|
val errorBody = response.errorBody()?.string()
|
||||||
|
if (errorBody != null) {
|
||||||
|
val gson = Gson()
|
||||||
|
val errorResponse = gson.fromJson(errorBody, ApiErrorResponse::class.java)
|
||||||
|
|
||||||
|
// 在主线程显示 Toast
|
||||||
|
Toast.makeText(context, errorResponse.error, Toast.LENGTH_LONG).show()
|
||||||
|
onError(errorResponse.error)
|
||||||
|
} else {
|
||||||
|
Toast.makeText(context, "加入房间失败", Toast.LENGTH_SHORT).show()
|
||||||
|
onError("加入房间失败")
|
||||||
|
}
|
||||||
|
} catch (parseException: Exception) {
|
||||||
|
// 如果解析错误响应失败,显示默认错误信息
|
||||||
|
Toast.makeText(context, "加入房间失败", Toast.LENGTH_SHORT).show()
|
||||||
|
onError("加入房间失败")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
|
Toast.makeText(context, "网络请求失败:${e.message}", Toast.LENGTH_SHORT).show()
|
||||||
onError("网络请求失败:${e.message}")
|
onError("网络请求失败:${e.message}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import androidx.compose.foundation.Image
|
|||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
import androidx.compose.foundation.layout.Box
|
import androidx.compose.foundation.layout.Box
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
import androidx.compose.foundation.layout.WindowInsets
|
import androidx.compose.foundation.layout.WindowInsets
|
||||||
import androidx.compose.foundation.layout.asPaddingValues
|
import androidx.compose.foundation.layout.asPaddingValues
|
||||||
import androidx.compose.foundation.layout.aspectRatio
|
import androidx.compose.foundation.layout.aspectRatio
|
||||||
@@ -13,11 +14,12 @@ import androidx.compose.foundation.layout.navigationBars
|
|||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.foundation.layout.size
|
import androidx.compose.foundation.layout.size
|
||||||
import androidx.compose.foundation.lazy.LazyColumn
|
import androidx.compose.foundation.lazy.LazyColumn
|
||||||
import androidx.compose.foundation.lazy.grid.GridCells
|
import androidx.compose.foundation.layout.height
|
||||||
import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
|
import androidx.compose.foundation.lazy.staggeredgrid.LazyVerticalStaggeredGrid
|
||||||
import androidx.compose.foundation.lazy.grid.items
|
import androidx.compose.foundation.lazy.staggeredgrid.items
|
||||||
import androidx.compose.foundation.lazy.grid.rememberLazyGridState
|
import androidx.compose.foundation.lazy.staggeredgrid.rememberLazyStaggeredGridState
|
||||||
import androidx.compose.foundation.lazy.rememberLazyListState
|
import androidx.compose.foundation.lazy.rememberLazyListState
|
||||||
|
import androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridCells
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material.ExperimentalMaterialApi
|
import androidx.compose.material.ExperimentalMaterialApi
|
||||||
import androidx.compose.material.pullrefresh.PullRefreshIndicator
|
import androidx.compose.material.pullrefresh.PullRefreshIndicator
|
||||||
@@ -39,6 +41,7 @@ import androidx.compose.ui.draw.clip
|
|||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
import androidx.compose.ui.res.painterResource
|
import androidx.compose.ui.res.painterResource
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
|
import androidx.compose.ui.unit.sp
|
||||||
import androidx.compose.runtime.collectAsState
|
import androidx.compose.runtime.collectAsState
|
||||||
import com.aiosman.ravenow.LocalAppTheme
|
import com.aiosman.ravenow.LocalAppTheme
|
||||||
import com.aiosman.ravenow.LocalNavController
|
import com.aiosman.ravenow.LocalNavController
|
||||||
@@ -104,8 +107,8 @@ fun DiscoverView() {
|
|||||||
val isLoading by model.isLoading.collectAsState()
|
val isLoading by model.isLoading.collectAsState()
|
||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
val navController = LocalNavController.current
|
val navController = LocalNavController.current
|
||||||
val gridState = rememberLazyGridState()
|
val gridState = rememberLazyStaggeredGridState()
|
||||||
|
val AppColors = LocalAppTheme.current
|
||||||
// 监听滚动到底部,自动加载更多
|
// 监听滚动到底部,自动加载更多
|
||||||
LaunchedEffect(gridState, moments.size) {
|
LaunchedEffect(gridState, moments.size) {
|
||||||
snapshotFlow {
|
snapshotFlow {
|
||||||
@@ -124,18 +127,40 @@ fun DiscoverView() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
LazyVerticalGrid(
|
LazyVerticalStaggeredGrid(
|
||||||
columns = GridCells.Fixed(3),
|
columns = StaggeredGridCells.Fixed(2),
|
||||||
state = gridState,
|
state = gridState,
|
||||||
modifier = Modifier.fillMaxSize().padding(bottom = 8.dp),
|
modifier = Modifier.fillMaxSize().padding(bottom = 8.dp),
|
||||||
// contentPadding = PaddingValues(8.dp)
|
contentPadding = androidx.compose.foundation.layout.PaddingValues(horizontal = 8.dp, vertical = 4.dp)
|
||||||
) {
|
) {
|
||||||
items(moments) { momentItem ->
|
items(moments) { momentItem ->
|
||||||
val debouncer = rememberDebouncer()
|
val debouncer = rememberDebouncer()
|
||||||
|
|
||||||
|
val textContent = momentItem.momentTextContent
|
||||||
|
val textLines = if (textContent.isNotEmpty()) {
|
||||||
|
val estimatedCharsPerLine = 20
|
||||||
|
val estimatedLines = (textContent.length / estimatedCharsPerLine) + 1
|
||||||
|
minOf(estimatedLines, 2) // 最多2行
|
||||||
|
} else {
|
||||||
|
0
|
||||||
|
}
|
||||||
|
|
||||||
|
val baseHeight = 200.dp
|
||||||
|
val singleLineTextHeight = 20.dp
|
||||||
|
val doubleLineTextHeight = 40.dp
|
||||||
|
val authorInfoHeight = 25.dp
|
||||||
|
val paddingHeight = 10.dp
|
||||||
|
val paddingHeight2 =3.dp
|
||||||
|
val totalHeight = baseHeight + when (textLines) {
|
||||||
|
0 -> authorInfoHeight + paddingHeight
|
||||||
|
1 -> singleLineTextHeight + authorInfoHeight + paddingHeight
|
||||||
|
else -> doubleLineTextHeight + authorInfoHeight +paddingHeight2
|
||||||
|
}
|
||||||
|
|
||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.aspectRatio(1f)
|
.height(totalHeight)
|
||||||
.padding(2.dp)
|
.padding(2.dp)
|
||||||
.noRippleClickable {
|
.noRippleClickable {
|
||||||
debouncer {
|
debouncer {
|
||||||
@@ -147,14 +172,68 @@ fun DiscoverView() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
CustomAsyncImage(
|
Column(
|
||||||
imageUrl = momentItem.images[0].thumbnail,
|
modifier = Modifier.fillMaxSize().background(AppColors.secondaryBackground, RoundedCornerShape(12.dp))
|
||||||
contentDescription = "",
|
) {
|
||||||
modifier = Modifier
|
CustomAsyncImage(
|
||||||
.fillMaxSize(),
|
imageUrl = momentItem.images[0].thumbnail,
|
||||||
context = context,
|
contentDescription = "",
|
||||||
showShimmer = true
|
modifier = Modifier
|
||||||
)
|
.fillMaxWidth()
|
||||||
|
.height(baseHeight)
|
||||||
|
.clip(RoundedCornerShape(
|
||||||
|
topStart = 12.dp,
|
||||||
|
topEnd = 12.dp,
|
||||||
|
bottomStart = 0.dp,
|
||||||
|
bottomEnd = 0.dp)),
|
||||||
|
context = context,
|
||||||
|
showShimmer = true
|
||||||
|
)
|
||||||
|
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.height(totalHeight - baseHeight)
|
||||||
|
.padding(horizontal = 8.dp, vertical = 8.dp)
|
||||||
|
) {
|
||||||
|
if (momentItem.momentTextContent.isNotEmpty()) {
|
||||||
|
androidx.compose.material3.Text(
|
||||||
|
text = momentItem.momentTextContent,
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
fontSize = 12.sp,
|
||||||
|
color = AppColors.text,
|
||||||
|
maxLines = 2,
|
||||||
|
overflow = androidx.compose.ui.text.style.TextOverflow.Ellipsis
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(top = 5.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
CustomAsyncImage(
|
||||||
|
imageUrl = momentItem.avatar,
|
||||||
|
contentDescription = "",
|
||||||
|
modifier = Modifier
|
||||||
|
.size(16.dp)
|
||||||
|
.clip(RoundedCornerShape(8.dp)),
|
||||||
|
context = context,
|
||||||
|
showShimmer = true
|
||||||
|
)
|
||||||
|
|
||||||
|
androidx.compose.material3.Text(
|
||||||
|
text = momentItem.nickname,
|
||||||
|
modifier = Modifier.padding(start = 4.dp),
|
||||||
|
fontSize = 11.sp,
|
||||||
|
color = AppColors.text.copy(alpha = 0.6f),
|
||||||
|
maxLines = 1,
|
||||||
|
overflow = androidx.compose.ui.text.style.TextOverflow.Ellipsis
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
if (momentItem.images.size > 1) {
|
if (momentItem.images.size > 1) {
|
||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
|
|||||||
@@ -0,0 +1,205 @@
|
|||||||
|
package com.aiosman.ravenow.ui.index.tabs.moment.tabs.news
|
||||||
|
|
||||||
|
import androidx.compose.foundation.Image
|
||||||
|
import androidx.compose.foundation.background
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Box
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.Spacer
|
||||||
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.rememberScrollState
|
||||||
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
|
import androidx.compose.foundation.verticalScroll
|
||||||
|
import androidx.compose.material3.Button
|
||||||
|
import androidx.compose.material3.ButtonDefaults
|
||||||
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||||
|
import androidx.compose.material3.ModalBottomSheet
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.rememberModalBottomSheetState
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.ui.Alignment
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.draw.clip
|
||||||
|
import androidx.compose.ui.graphics.Color
|
||||||
|
import androidx.compose.ui.layout.ContentScale
|
||||||
|
import androidx.compose.ui.platform.LocalConfiguration
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
import androidx.compose.ui.unit.sp
|
||||||
|
import com.aiosman.ravenow.LocalAppTheme
|
||||||
|
import com.aiosman.ravenow.R
|
||||||
|
import com.aiosman.ravenow.entity.MomentEntity
|
||||||
|
import com.aiosman.ravenow.exp.formatPostTime2
|
||||||
|
import com.aiosman.ravenow.ui.composables.CustomAsyncImage
|
||||||
|
|
||||||
|
@OptIn(ExperimentalMaterial3Api::class)
|
||||||
|
@Composable
|
||||||
|
fun FullArticleModal(
|
||||||
|
moment: MomentEntity,
|
||||||
|
onDismiss: () -> Unit
|
||||||
|
) {
|
||||||
|
val appColors = LocalAppTheme.current
|
||||||
|
val context = LocalContext.current
|
||||||
|
val configuration = LocalConfiguration.current
|
||||||
|
val screenHeight = configuration.screenHeightDp.dp
|
||||||
|
val sheetHeight = screenHeight * 0.9f // 90% 高度
|
||||||
|
|
||||||
|
ModalBottomSheet(
|
||||||
|
onDismissRequest = onDismiss,
|
||||||
|
sheetState = rememberModalBottomSheetState(
|
||||||
|
skipPartiallyExpanded = true
|
||||||
|
),
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.height(sheetHeight),
|
||||||
|
containerColor = appColors.background,
|
||||||
|
shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp),
|
||||||
|
windowInsets = androidx.compose.foundation.layout.WindowInsets(0)
|
||||||
|
) {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
) {
|
||||||
|
// 滚动内容
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.weight(1f)
|
||||||
|
.verticalScroll(rememberScrollState())
|
||||||
|
) {
|
||||||
|
// 新闻图片区域 - 固定高度和宽度
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.height(250.dp)
|
||||||
|
|
||||||
|
.background(color = appColors.secondaryBackground)
|
||||||
|
) {
|
||||||
|
if (moment.images.isNotEmpty()) {
|
||||||
|
val firstImage = moment.images[0]
|
||||||
|
CustomAsyncImage(
|
||||||
|
context = context,
|
||||||
|
imageUrl = firstImage.url,
|
||||||
|
contentDescription = "新闻图片",
|
||||||
|
contentScale = ContentScale.Fit,
|
||||||
|
blurHash = firstImage.blurHash,
|
||||||
|
modifier = Modifier.fillMaxSize()
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
Image(
|
||||||
|
painter = androidx.compose.ui.res.painterResource(id = R.drawable.default_moment_img),
|
||||||
|
contentDescription = "默认图片",
|
||||||
|
contentScale = ContentScale.Fit,
|
||||||
|
modifier = Modifier.fillMaxSize()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
|
||||||
|
// 新闻标题
|
||||||
|
Text(
|
||||||
|
text = if (moment.newsTitle.isNotEmpty()) moment.newsTitle else moment.nickname,
|
||||||
|
fontSize = 20.sp,
|
||||||
|
fontWeight = FontWeight.Bold,
|
||||||
|
color = appColors.text,
|
||||||
|
lineHeight = 28.sp,
|
||||||
|
modifier = Modifier.padding(horizontal = 10.dp)
|
||||||
|
)
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(12.dp))
|
||||||
|
|
||||||
|
// 新闻来源和发布时间
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 10.dp),
|
||||||
|
horizontalArrangement = Arrangement.SpaceBetween,
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
// 来源按钮
|
||||||
|
Button(
|
||||||
|
onClick = { },
|
||||||
|
modifier = Modifier.height(28.dp),
|
||||||
|
colors = ButtonDefaults.buttonColors(
|
||||||
|
containerColor = Color(0xFF7c68ef)
|
||||||
|
),
|
||||||
|
contentPadding = androidx.compose.foundation.layout.PaddingValues(horizontal = 12.dp, vertical = 4.dp),
|
||||||
|
shape = RoundedCornerShape(14.dp)
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
text = if (moment.newsSource.isNotEmpty()) moment.newsSource else moment.nickname,
|
||||||
|
fontSize = 12.sp,
|
||||||
|
color = Color.White,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 发布时间
|
||||||
|
Text(
|
||||||
|
text = moment.time.formatPostTime2(),
|
||||||
|
fontSize = 12.sp,
|
||||||
|
color = appColors.secondaryText
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
|
||||||
|
// 帖子内容
|
||||||
|
NewsContent(
|
||||||
|
content = if (moment.newsContent.isNotEmpty()) moment.newsContent else moment.momentTextContent,
|
||||||
|
images = moment.images,
|
||||||
|
context = context
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.height(200.dp))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun NewsContent(
|
||||||
|
content: String,
|
||||||
|
images: List<com.aiosman.ravenow.entity.MomentImageEntity>,
|
||||||
|
context: android.content.Context
|
||||||
|
) {
|
||||||
|
val appColors = LocalAppTheme.current
|
||||||
|
|
||||||
|
Column(
|
||||||
|
modifier = Modifier.padding(horizontal = 16.dp)
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
text = content,
|
||||||
|
fontSize = 16.sp,
|
||||||
|
color = appColors.text,
|
||||||
|
lineHeight = 24.sp
|
||||||
|
)
|
||||||
|
|
||||||
|
// 图片内容
|
||||||
|
if (images.isNotEmpty()) {
|
||||||
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
|
||||||
|
images.forEach { image ->
|
||||||
|
Spacer(modifier = Modifier.height(12.dp))
|
||||||
|
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.clip(RoundedCornerShape(8.dp))
|
||||||
|
) {
|
||||||
|
CustomAsyncImage(
|
||||||
|
context = context,
|
||||||
|
imageUrl = image.url,
|
||||||
|
contentDescription = "内容图片",
|
||||||
|
contentScale = ContentScale.Fit,
|
||||||
|
blurHash = image.blurHash,
|
||||||
|
modifier = Modifier.fillMaxWidth()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,306 @@
|
|||||||
|
package com.aiosman.ravenow.ui.index.tabs.moment.tabs.news
|
||||||
|
|
||||||
|
import androidx.compose.foundation.Image
|
||||||
|
import androidx.compose.foundation.background
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Box
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.Spacer
|
||||||
|
import androidx.compose.foundation.layout.WindowInsets
|
||||||
|
import androidx.compose.foundation.layout.asPaddingValues
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.navigationBars
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.size
|
||||||
|
import androidx.compose.foundation.layout.width
|
||||||
|
import androidx.compose.foundation.lazy.LazyColumn
|
||||||
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
|
import androidx.compose.material.icons.Icons
|
||||||
|
import androidx.compose.material.icons.filled.Close
|
||||||
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||||
|
import androidx.compose.material3.HorizontalDivider
|
||||||
|
import androidx.compose.material3.ModalBottomSheet
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.rememberModalBottomSheetState
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
|
import androidx.compose.ui.Alignment
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.graphics.Color
|
||||||
|
import androidx.compose.ui.graphics.ColorFilter
|
||||||
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
import androidx.compose.ui.unit.sp
|
||||||
|
import androidx.lifecycle.ViewModel
|
||||||
|
import androidx.lifecycle.ViewModelProvider
|
||||||
|
import androidx.lifecycle.viewModelScope
|
||||||
|
import androidx.lifecycle.viewmodel.compose.viewModel
|
||||||
|
import com.aiosman.ravenow.AppState
|
||||||
|
import com.aiosman.ravenow.GuestLoginCheckOut
|
||||||
|
import com.aiosman.ravenow.GuestLoginCheckOutScene
|
||||||
|
import com.aiosman.ravenow.LocalAppTheme
|
||||||
|
import com.aiosman.ravenow.LocalNavController
|
||||||
|
import com.aiosman.ravenow.R
|
||||||
|
import com.aiosman.ravenow.data.CommentService
|
||||||
|
import com.aiosman.ravenow.data.CommentServiceImpl
|
||||||
|
import com.aiosman.ravenow.entity.CommentEntity
|
||||||
|
import com.aiosman.ravenow.ui.NavigationRoute
|
||||||
|
import com.aiosman.ravenow.ui.composables.EditCommentBottomModal
|
||||||
|
import com.aiosman.ravenow.ui.composables.debouncedClickable
|
||||||
|
import com.aiosman.ravenow.ui.composables.rememberDebouncedNavigation
|
||||||
|
import com.aiosman.ravenow.ui.modifiers.noRippleClickable
|
||||||
|
import com.aiosman.ravenow.ui.post.CommentContent
|
||||||
|
import com.aiosman.ravenow.ui.post.CommentMenuModal
|
||||||
|
import com.aiosman.ravenow.ui.post.CommentsViewModel
|
||||||
|
import com.aiosman.ravenow.ui.post.OrderSelectionComponent
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
|
||||||
|
|
||||||
|
class NewsCommentModalViewModel(
|
||||||
|
val postId: Int?
|
||||||
|
) : ViewModel() {
|
||||||
|
var commentsViewModel: CommentsViewModel = CommentsViewModel(postId.toString())
|
||||||
|
var commentService: CommentService = CommentServiceImpl()
|
||||||
|
|
||||||
|
init {
|
||||||
|
commentsViewModel.preTransit()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun likeComment(commentId: Int) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
commentsViewModel.likeComment(commentId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun unlikeComment(commentId: Int) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
commentsViewModel.unlikeComment(commentId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun createComment(
|
||||||
|
content: String,
|
||||||
|
parentCommentId: Int? = null,
|
||||||
|
replyUserId: Int? = null,
|
||||||
|
replyCommentId: Int? = null
|
||||||
|
) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
commentsViewModel.createComment(
|
||||||
|
content = content,
|
||||||
|
parentCommentId = parentCommentId,
|
||||||
|
replyUserId = replyUserId,
|
||||||
|
replyCommentId = replyCommentId
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun deleteComment(commentId: Int) {
|
||||||
|
commentsViewModel.deleteComment(commentId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新闻评论弹窗
|
||||||
|
// @param postId 新闻帖子ID
|
||||||
|
// @param commentCount 评论数量
|
||||||
|
// @param onDismiss 关闭回调
|
||||||
|
|
||||||
|
@OptIn(ExperimentalMaterial3Api::class)
|
||||||
|
@Composable
|
||||||
|
fun NewsCommentModal(
|
||||||
|
postId: Int? = null,
|
||||||
|
commentCount: Int = 0,
|
||||||
|
onDismiss: () -> Unit = {},
|
||||||
|
onCommentAdded: () -> Unit = {},
|
||||||
|
onCommentDeleted: () -> Unit = {}
|
||||||
|
) {
|
||||||
|
val AppColors = LocalAppTheme.current
|
||||||
|
val navController = LocalNavController.current
|
||||||
|
val debouncedNavigation = rememberDebouncedNavigation()
|
||||||
|
|
||||||
|
// 实时评论数状态
|
||||||
|
var currentCommentCount by remember { mutableStateOf(commentCount) }
|
||||||
|
|
||||||
|
val model = viewModel<NewsCommentModalViewModel>(
|
||||||
|
key = "NewsCommentModalViewModel_$postId",
|
||||||
|
factory = object : ViewModelProvider.Factory {
|
||||||
|
override fun <T : ViewModel> create(modelClass: Class<T>): T {
|
||||||
|
return NewsCommentModalViewModel(postId) as T
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
val commentViewModel = model.commentsViewModel
|
||||||
|
var navBarHeight = WindowInsets.navigationBars.asPaddingValues().calculateBottomPadding()
|
||||||
|
|
||||||
|
var showCommentMenu by remember { mutableStateOf(false) }
|
||||||
|
var contextComment by remember { mutableStateOf<CommentEntity?>(null) }
|
||||||
|
var replyComment by remember { mutableStateOf<CommentEntity?>(null) }
|
||||||
|
|
||||||
|
// 菜单弹窗
|
||||||
|
if (showCommentMenu) {
|
||||||
|
ModalBottomSheet(
|
||||||
|
onDismissRequest = {
|
||||||
|
showCommentMenu = false
|
||||||
|
},
|
||||||
|
containerColor = AppColors.background,
|
||||||
|
sheetState = rememberModalBottomSheetState(
|
||||||
|
skipPartiallyExpanded = true
|
||||||
|
),
|
||||||
|
dragHandle = {},
|
||||||
|
shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp),
|
||||||
|
windowInsets = WindowInsets(0)
|
||||||
|
) {
|
||||||
|
CommentMenuModal(
|
||||||
|
onDeleteClick = {
|
||||||
|
showCommentMenu = false
|
||||||
|
contextComment?.let {
|
||||||
|
model.deleteComment(it.id)
|
||||||
|
onCommentDeleted()
|
||||||
|
currentCommentCount = (currentCommentCount - 1).coerceAtLeast(0)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
commentEntity = contextComment,
|
||||||
|
onCloseClick = {
|
||||||
|
showCommentMenu = false
|
||||||
|
},
|
||||||
|
isSelf = AppState.UserId?.toLong() == contextComment?.author,
|
||||||
|
onLikeClick = {
|
||||||
|
if (GuestLoginCheckOut.needLogin(GuestLoginCheckOutScene.LIKE_MOMENT)) {
|
||||||
|
debouncedNavigation {
|
||||||
|
navController.navigate(NavigationRoute.Login.route)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
showCommentMenu = false
|
||||||
|
contextComment?.let {
|
||||||
|
if (it.liked) {
|
||||||
|
model.unlikeComment(it.id)
|
||||||
|
} else {
|
||||||
|
model.likeComment(it.id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onReplyClick = {
|
||||||
|
if (GuestLoginCheckOut.needLogin(GuestLoginCheckOutScene.COMMENT_MOMENT)) {
|
||||||
|
debouncedNavigation {
|
||||||
|
navController.navigate(NavigationRoute.Login.route)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
showCommentMenu = false
|
||||||
|
replyComment = contextComment
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Column(
|
||||||
|
modifier = Modifier.background(AppColors.background)
|
||||||
|
) {
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 16.dp, vertical = 8.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
text = "${currentCommentCount}条评论",
|
||||||
|
fontSize = 15.sp,
|
||||||
|
fontWeight = FontWeight.Bold,
|
||||||
|
color = AppColors.text
|
||||||
|
)
|
||||||
|
|
||||||
|
// 排序选择
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth(),
|
||||||
|
horizontalArrangement = Arrangement.End
|
||||||
|
) {
|
||||||
|
OrderSelectionComponent {
|
||||||
|
commentViewModel.order = it
|
||||||
|
commentViewModel.reloadComment()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 评论列表
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.weight(1f)
|
||||||
|
) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier.fillMaxWidth()
|
||||||
|
) {
|
||||||
|
LazyColumn {
|
||||||
|
item {
|
||||||
|
CommentContent(
|
||||||
|
viewModel = commentViewModel,
|
||||||
|
onLongClick = { comment ->
|
||||||
|
showCommentMenu = true
|
||||||
|
contextComment = comment
|
||||||
|
},
|
||||||
|
onReply = { parentComment, _, _, _ ->
|
||||||
|
if (GuestLoginCheckOut.needLogin(GuestLoginCheckOutScene.COMMENT_MOMENT)) {
|
||||||
|
debouncedNavigation {
|
||||||
|
navController.navigate(NavigationRoute.Login.route)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
replyComment = parentComment
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 底部输入栏
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.background(AppColors.background)
|
||||||
|
) {
|
||||||
|
HorizontalDivider(color = AppColors.inputBackground)
|
||||||
|
|
||||||
|
EditCommentBottomModal(
|
||||||
|
replyComment = replyComment,
|
||||||
|
autoFocus = false
|
||||||
|
) {
|
||||||
|
if (replyComment != null) {
|
||||||
|
if (replyComment?.parentCommentId != null) {
|
||||||
|
// 第三级评论
|
||||||
|
model.createComment(
|
||||||
|
content = it,
|
||||||
|
parentCommentId = replyComment?.parentCommentId,
|
||||||
|
replyUserId = replyComment?.author?.toInt(),
|
||||||
|
replyCommentId = replyComment?.id
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
// 子级评论
|
||||||
|
model.createComment(
|
||||||
|
content = it,
|
||||||
|
parentCommentId = replyComment?.id,
|
||||||
|
replyCommentId = replyComment?.id
|
||||||
|
)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// 顶级评论
|
||||||
|
model.createComment(content = it)
|
||||||
|
}
|
||||||
|
replyComment = null
|
||||||
|
onCommentAdded()
|
||||||
|
currentCommentCount++
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(navBarHeight))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,436 @@
|
|||||||
|
package com.aiosman.ravenow.ui.index.tabs.moment.tabs.news
|
||||||
|
|
||||||
|
import androidx.compose.foundation.ExperimentalFoundationApi
|
||||||
|
import androidx.compose.foundation.Image
|
||||||
|
import androidx.compose.foundation.background
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Box
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.Spacer
|
||||||
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.statusBars
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.size
|
||||||
|
import androidx.compose.foundation.layout.width
|
||||||
|
import androidx.compose.foundation.pager.VerticalPager
|
||||||
|
import androidx.compose.foundation.pager.rememberPagerState
|
||||||
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
|
import androidx.compose.material.ExperimentalMaterialApi
|
||||||
|
import androidx.compose.material.pullrefresh.PullRefreshIndicator
|
||||||
|
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||||
|
import androidx.compose.material3.ModalBottomSheet
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.rememberModalBottomSheetState
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.runtime.rememberCoroutineScope
|
||||||
|
import androidx.compose.ui.Alignment
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.draw.clip
|
||||||
|
import androidx.compose.ui.graphics.Color
|
||||||
|
import androidx.compose.ui.graphics.ColorFilter
|
||||||
|
import androidx.compose.ui.layout.ContentScale
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import androidx.compose.ui.res.stringResource
|
||||||
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
|
import androidx.compose.ui.text.style.TextOverflow
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
import androidx.compose.ui.unit.sp
|
||||||
|
import androidx.compose.ui.platform.LocalConfiguration
|
||||||
|
import com.aiosman.ravenow.GuestLoginCheckOut
|
||||||
|
import com.aiosman.ravenow.GuestLoginCheckOutScene
|
||||||
|
import com.aiosman.ravenow.LocalAppTheme
|
||||||
|
import com.aiosman.ravenow.LocalNavController
|
||||||
|
import com.aiosman.ravenow.R
|
||||||
|
import com.aiosman.ravenow.entity.MomentEntity
|
||||||
|
import com.aiosman.ravenow.exp.timeAgo
|
||||||
|
import com.aiosman.ravenow.exp.formatPostTime2
|
||||||
|
import com.aiosman.ravenow.ui.NavigationRoute
|
||||||
|
import com.aiosman.ravenow.ui.composables.CustomAsyncImage
|
||||||
|
import com.aiosman.ravenow.ui.composables.rememberDebouncer
|
||||||
|
import com.aiosman.ravenow.ui.index.tabs.moment.tabs.news.NewsViewModel
|
||||||
|
import com.aiosman.ravenow.ui.modifiers.noRippleClickable
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
|
||||||
|
@OptIn(ExperimentalMaterialApi::class, ExperimentalMaterial3Api::class, ExperimentalFoundationApi::class)
|
||||||
|
@Composable
|
||||||
|
fun NewsScreen() {
|
||||||
|
val model = NewsViewModel
|
||||||
|
val moments = model.moments
|
||||||
|
val AppColors = LocalAppTheme.current
|
||||||
|
val context = LocalContext.current
|
||||||
|
val navController = LocalNavController.current
|
||||||
|
val scope = rememberCoroutineScope()
|
||||||
|
|
||||||
|
// 评论弹窗状态
|
||||||
|
var showCommentModal by remember { mutableStateOf(false) }
|
||||||
|
var selectedMoment by remember { mutableStateOf<MomentEntity?>(null) }
|
||||||
|
|
||||||
|
// 查看全文弹窗状态
|
||||||
|
var showFullArticleModal by remember { mutableStateOf(false) }
|
||||||
|
var selectedArticleMoment by remember { mutableStateOf<MomentEntity?>(null) }
|
||||||
|
// 垂直翻页状态
|
||||||
|
val pagerState = rememberPagerState(pageCount = { moments.size })
|
||||||
|
|
||||||
|
// 防抖器
|
||||||
|
val likeDebouncer = rememberDebouncer()
|
||||||
|
val favoriteDebouncer = rememberDebouncer()
|
||||||
|
|
||||||
|
// 初始化加载数据
|
||||||
|
LaunchedEffect(Unit) {
|
||||||
|
model.refreshPager()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 监听数据变化,重置加载状态
|
||||||
|
LaunchedEffect(moments.size) {
|
||||||
|
// 当数据增加时,如果接近列表末尾,Pager会自动更新页数
|
||||||
|
}
|
||||||
|
|
||||||
|
// 当翻页接近末尾时加载更多
|
||||||
|
LaunchedEffect(pagerState.currentPage, moments.size) {
|
||||||
|
if (moments.isNotEmpty() && pagerState.currentPage >= moments.size - 2) {
|
||||||
|
model.loadMore()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
.background(AppColors.background)
|
||||||
|
) {
|
||||||
|
if (moments.isEmpty()) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
contentAlignment = Alignment.Center
|
||||||
|
) {
|
||||||
|
Text(text = "暂无新闻内容", color = AppColors.text, fontSize = 16.sp)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
VerticalPager(
|
||||||
|
state = pagerState,
|
||||||
|
modifier = Modifier.fillMaxSize()
|
||||||
|
) { page ->
|
||||||
|
val momentItem = moments.getOrNull(page) ?: return@VerticalPager
|
||||||
|
NewsItem(
|
||||||
|
moment = momentItem,
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
onCommentClick = {
|
||||||
|
selectedMoment = momentItem
|
||||||
|
showCommentModal = true
|
||||||
|
},
|
||||||
|
onReadFullClick = {
|
||||||
|
selectedArticleMoment = momentItem
|
||||||
|
showFullArticleModal = true
|
||||||
|
},
|
||||||
|
onLikeClick = {
|
||||||
|
likeDebouncer {
|
||||||
|
// 检查游客模式
|
||||||
|
if (GuestLoginCheckOut.needLogin(GuestLoginCheckOutScene.LIKE_MOMENT)) {
|
||||||
|
navController.navigate(NavigationRoute.Login.route)
|
||||||
|
} else {
|
||||||
|
scope.launch {
|
||||||
|
if (momentItem.liked) {
|
||||||
|
model.dislikeMoment(momentItem.id)
|
||||||
|
} else {
|
||||||
|
model.likeMoment(momentItem.id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onFavoriteClick = {
|
||||||
|
favoriteDebouncer {
|
||||||
|
// 检查游客模式
|
||||||
|
if (GuestLoginCheckOut.needLogin(GuestLoginCheckOutScene.LIKE_MOMENT)) {
|
||||||
|
navController.navigate(NavigationRoute.Login.route)
|
||||||
|
} else {
|
||||||
|
scope.launch {
|
||||||
|
if (momentItem.isFavorite) {
|
||||||
|
model.unfavoriteMoment(momentItem.id)
|
||||||
|
} else {
|
||||||
|
model.favoriteMoment(momentItem.id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查看全文弹窗
|
||||||
|
if (showFullArticleModal && selectedArticleMoment != null) {
|
||||||
|
FullArticleModal(
|
||||||
|
moment = selectedArticleMoment!!,
|
||||||
|
onDismiss = {
|
||||||
|
showFullArticleModal = false
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 评论弹窗
|
||||||
|
if (showCommentModal && selectedMoment != null) {
|
||||||
|
val configuration = LocalConfiguration.current
|
||||||
|
val screenHeight = configuration.screenHeightDp.dp
|
||||||
|
val sheetHeight = screenHeight * 0.67f // 三分之二高度
|
||||||
|
|
||||||
|
ModalBottomSheet(
|
||||||
|
onDismissRequest = {
|
||||||
|
showCommentModal = false
|
||||||
|
},
|
||||||
|
sheetState = rememberModalBottomSheetState(
|
||||||
|
skipPartiallyExpanded = true
|
||||||
|
),
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.height(sheetHeight),
|
||||||
|
containerColor = AppColors.background,
|
||||||
|
shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp),
|
||||||
|
windowInsets = androidx.compose.foundation.layout.WindowInsets(0)
|
||||||
|
) {
|
||||||
|
NewsCommentModal(
|
||||||
|
postId = selectedMoment?.id,
|
||||||
|
commentCount = selectedMoment?.commentCount ?: 0,
|
||||||
|
onDismiss = {
|
||||||
|
showCommentModal = false
|
||||||
|
},
|
||||||
|
onCommentAdded = {
|
||||||
|
selectedMoment?.id?.let { model.onAddComment(it) }
|
||||||
|
},
|
||||||
|
onCommentDeleted = {
|
||||||
|
selectedMoment?.id?.let { model.onDeleteComment(it) }
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//单个新闻项
|
||||||
|
@Composable
|
||||||
|
fun NewsItem(
|
||||||
|
moment: MomentEntity,
|
||||||
|
modifier: Modifier = Modifier,
|
||||||
|
onCommentClick: () -> Unit = {},
|
||||||
|
onReadFullClick: () -> Unit = {},
|
||||||
|
onLikeClick: () -> Unit = {},
|
||||||
|
onFavoriteClick: () -> Unit = {}
|
||||||
|
) {
|
||||||
|
val AppColors = LocalAppTheme.current
|
||||||
|
val context = LocalContext.current
|
||||||
|
|
||||||
|
Column(
|
||||||
|
modifier = modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
.background(AppColors.background)
|
||||||
|
.padding(vertical = 8.dp),
|
||||||
|
verticalArrangement = Arrangement.SpaceBetween
|
||||||
|
) {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.weight(1f)
|
||||||
|
.padding(bottom = 30.dp)
|
||||||
|
) {
|
||||||
|
// 新闻图片
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.height(300.dp)
|
||||||
|
.padding(horizontal = 16.dp)
|
||||||
|
) {
|
||||||
|
if (moment.images.isNotEmpty()) {
|
||||||
|
CustomAsyncImage(
|
||||||
|
context = context,
|
||||||
|
imageUrl = moment.images[0].thumbnail,
|
||||||
|
contentDescription = "新闻图片",
|
||||||
|
contentScale = ContentScale.Crop,
|
||||||
|
blurHash = moment.images[0].blurHash,
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
.clip(RoundedCornerShape(8.dp))
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
Image(
|
||||||
|
painter = androidx.compose.ui.res.painterResource(id = R.drawable.default_moment_img),
|
||||||
|
contentDescription = "默认图片",
|
||||||
|
contentScale = ContentScale.Crop,
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
.clip(RoundedCornerShape(8.dp))
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
|
||||||
|
// 新闻标题
|
||||||
|
Text(
|
||||||
|
text = if (moment.newsTitle.isNotEmpty()) moment.newsTitle else moment.nickname,
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 16.dp),
|
||||||
|
fontSize = 20.sp,
|
||||||
|
fontWeight = FontWeight.Bold,
|
||||||
|
color = AppColors.text,
|
||||||
|
maxLines = 2,
|
||||||
|
overflow = TextOverflow.Ellipsis
|
||||||
|
)
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
|
||||||
|
// 新闻内容(超出使用省略号)
|
||||||
|
Text(
|
||||||
|
text = if (moment.newsContent.isNotEmpty()) moment.newsContent else moment.momentTextContent,
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 16.dp),
|
||||||
|
fontSize = 14.sp,
|
||||||
|
color = AppColors.text,
|
||||||
|
lineHeight = 20.sp,
|
||||||
|
maxLines = 6,
|
||||||
|
overflow = TextOverflow.Ellipsis
|
||||||
|
)
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
|
||||||
|
// 新闻信息
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 16.dp),
|
||||||
|
horizontalArrangement = Arrangement.SpaceBetween,
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
// 来源和时间(显示月份与具体时间)
|
||||||
|
Text(
|
||||||
|
text = if (moment.newsSource.isNotEmpty()) "${moment.newsSource} • ${moment.time.formatPostTime2()}" else "${moment.nickname} • ${moment.time.formatPostTime2()}",
|
||||||
|
fontSize = 12.sp,
|
||||||
|
color = AppColors.secondaryText,
|
||||||
|
modifier = Modifier
|
||||||
|
.weight(1f)
|
||||||
|
.padding(end = 8.dp),
|
||||||
|
maxLines = 2,
|
||||||
|
overflow = TextOverflow.Ellipsis
|
||||||
|
)
|
||||||
|
|
||||||
|
// 查看全文
|
||||||
|
Row(
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
modifier = Modifier.noRippleClickable { onReadFullClick() }
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
text = stringResource(R.string.read_full_article),
|
||||||
|
fontSize = 13.sp,
|
||||||
|
fontWeight = FontWeight.W600,
|
||||||
|
color = Color(0xFF7c45ed)
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.width(4.dp))
|
||||||
|
Image(
|
||||||
|
painter = androidx.compose.ui.res.painterResource(id = R.mipmap.arrow),
|
||||||
|
contentDescription = "箭头",
|
||||||
|
modifier = Modifier.size(18.dp),
|
||||||
|
colorFilter = ColorFilter.tint(Color(0xFF7c45ed))
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 互动栏
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 16.dp)
|
||||||
|
.padding(bottom = 25.dp),
|
||||||
|
horizontalArrangement = Arrangement.SpaceEvenly
|
||||||
|
) {
|
||||||
|
// 点赞
|
||||||
|
NewsActionButton(
|
||||||
|
icon = if (moment.liked) R.drawable.rider_pro_moment_liked else R.drawable.rider_pro_moment_like,
|
||||||
|
count = moment.likeCount.toString(),
|
||||||
|
isActive = moment.liked,
|
||||||
|
modifier = Modifier.noRippleClickable { onLikeClick() }
|
||||||
|
)
|
||||||
|
|
||||||
|
// 评论
|
||||||
|
NewsActionButton(
|
||||||
|
icon = R.mipmap.icon_comment,
|
||||||
|
count = moment.commentCount.toString(),
|
||||||
|
isActive = false,
|
||||||
|
modifier = Modifier.noRippleClickable { onCommentClick() }
|
||||||
|
)
|
||||||
|
|
||||||
|
// 收藏
|
||||||
|
NewsActionButton(
|
||||||
|
icon = if (moment.isFavorite) R.mipmap.icon_variant_2 else R.mipmap.icon_collect,
|
||||||
|
count = moment.favoriteCount.toString(),
|
||||||
|
isActive = moment.isFavorite,
|
||||||
|
modifier = Modifier.noRippleClickable { onFavoriteClick() }
|
||||||
|
)
|
||||||
|
|
||||||
|
// 分享
|
||||||
|
NewsActionButton(
|
||||||
|
icon = R.mipmap.icon_share,
|
||||||
|
count = "",
|
||||||
|
isActive = false,
|
||||||
|
text = stringResource(R.string.share),
|
||||||
|
textSize = 8.sp
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 互动栏按钮
|
||||||
|
@Composable
|
||||||
|
fun NewsActionButton(
|
||||||
|
icon: Int,
|
||||||
|
count: String,
|
||||||
|
isActive: Boolean,
|
||||||
|
modifier: Modifier = Modifier,
|
||||||
|
text: String? = null,
|
||||||
|
textSize: androidx.compose.ui.unit.TextUnit = 12.sp
|
||||||
|
) {
|
||||||
|
val AppColors = LocalAppTheme.current
|
||||||
|
|
||||||
|
Row(
|
||||||
|
modifier = modifier
|
||||||
|
.width(60.dp)
|
||||||
|
.background(
|
||||||
|
color = AppColors.secondaryBackground,
|
||||||
|
shape = RoundedCornerShape(16.dp)
|
||||||
|
)
|
||||||
|
.padding(horizontal = 12.dp, vertical = 8.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
horizontalArrangement = Arrangement.Center
|
||||||
|
) {
|
||||||
|
Image(
|
||||||
|
painter = androidx.compose.ui.res.painterResource(id = icon),
|
||||||
|
contentDescription = "操作图标",
|
||||||
|
modifier = Modifier.size(16.dp)
|
||||||
|
)
|
||||||
|
|
||||||
|
if (count.isNotEmpty()) {
|
||||||
|
Spacer(modifier = Modifier.width(4.dp))
|
||||||
|
Text(
|
||||||
|
text = count,
|
||||||
|
fontSize = 12.sp,
|
||||||
|
color = AppColors.text
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (text != null) {
|
||||||
|
Spacer(modifier = Modifier.width(4.dp))
|
||||||
|
Text(
|
||||||
|
text = text,
|
||||||
|
fontSize = textSize,
|
||||||
|
color = AppColors.text
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
package com.aiosman.ravenow.ui.index.tabs.moment.tabs.news
|
||||||
|
|
||||||
|
import com.aiosman.ravenow.entity.MomentLoaderExtraArgs
|
||||||
|
import com.aiosman.ravenow.ui.index.tabs.moment.BaseMomentModel
|
||||||
|
|
||||||
|
object NewsViewModel : BaseMomentModel() {
|
||||||
|
override fun extraArgs(): MomentLoaderExtraArgs {
|
||||||
|
// 只拉取新闻
|
||||||
|
return MomentLoaderExtraArgs(
|
||||||
|
explore = false,
|
||||||
|
timelineId = null,
|
||||||
|
authorId = null,
|
||||||
|
newsOnly = true
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,178 @@
|
|||||||
|
package com.aiosman.ravenow.ui.index.tabs.profile
|
||||||
|
|
||||||
|
import androidx.compose.foundation.background
|
||||||
|
import androidx.compose.foundation.layout.Box
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.Spacer
|
||||||
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.layout.size
|
||||||
|
import androidx.compose.foundation.layout.width
|
||||||
|
import androidx.compose.foundation.shape.CircleShape
|
||||||
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
|
import androidx.compose.material3.Icon
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.ui.Alignment
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.draw.clip
|
||||||
|
import androidx.compose.ui.layout.ContentScale
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import androidx.compose.ui.res.painterResource
|
||||||
|
import androidx.compose.ui.res.stringResource
|
||||||
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
import androidx.compose.ui.unit.sp
|
||||||
|
import com.aiosman.ravenow.LocalAppTheme
|
||||||
|
import com.aiosman.ravenow.R
|
||||||
|
import com.aiosman.ravenow.entity.AccountProfileEntity
|
||||||
|
import com.aiosman.ravenow.ui.composables.CustomAsyncImage
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 拉黑确认弹窗
|
||||||
|
*/
|
||||||
|
@Composable
|
||||||
|
fun BlockConfirmDialog(
|
||||||
|
userProfile: AccountProfileEntity?,
|
||||||
|
onConfirmBlock: () -> Unit = {},
|
||||||
|
onDismiss: () -> Unit = {}
|
||||||
|
) {
|
||||||
|
val AppColors = LocalAppTheme.current
|
||||||
|
|
||||||
|
Box(
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
contentAlignment = Alignment.BottomCenter
|
||||||
|
) {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.background(
|
||||||
|
color = AppColors.background,
|
||||||
|
shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp)
|
||||||
|
)
|
||||||
|
.padding(24.dp)
|
||||||
|
) {
|
||||||
|
// 用户头像
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.align(Alignment.CenterHorizontally)
|
||||||
|
.padding(bottom = 16.dp)
|
||||||
|
) {
|
||||||
|
CustomAsyncImage(
|
||||||
|
LocalContext.current,
|
||||||
|
userProfile?.avatar,
|
||||||
|
modifier = Modifier
|
||||||
|
.size(60.dp)
|
||||||
|
.clip(CircleShape)
|
||||||
|
.background(
|
||||||
|
color = AppColors.background,
|
||||||
|
shape = CircleShape
|
||||||
|
),
|
||||||
|
contentDescription = "用户头像",
|
||||||
|
contentScale = ContentScale.Crop
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 确认文本
|
||||||
|
Text(
|
||||||
|
text = stringResource(R.string.confirm_block_user, userProfile?.nickName ?: "该用户"),
|
||||||
|
|
||||||
|
fontSize = 18.sp,
|
||||||
|
fontWeight = FontWeight.Bold,
|
||||||
|
color = AppColors.text,
|
||||||
|
modifier = Modifier
|
||||||
|
.align(Alignment.CenterHorizontally)
|
||||||
|
.padding(bottom = 24.dp)
|
||||||
|
)
|
||||||
|
|
||||||
|
// 说明信息
|
||||||
|
Column(
|
||||||
|
modifier = Modifier.padding(bottom = 32.dp)
|
||||||
|
) {
|
||||||
|
// 第一条说明
|
||||||
|
Row(
|
||||||
|
modifier = Modifier.padding(bottom = 12.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
Icon(
|
||||||
|
painter = painterResource(id = R.mipmap.icons_infor_off_eye),
|
||||||
|
contentDescription = "",
|
||||||
|
tint = AppColors.text,
|
||||||
|
modifier = Modifier.size(20.dp)
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.width(12.dp))
|
||||||
|
Text(
|
||||||
|
text = stringResource(R.string.block_description_1),
|
||||||
|
fontSize = 14.sp,
|
||||||
|
color = AppColors.text,
|
||||||
|
lineHeight = 20.sp
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 第二条说明
|
||||||
|
Row(
|
||||||
|
modifier = Modifier.padding(bottom = 12.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
Icon(
|
||||||
|
painter = painterResource(id = R.drawable.rider_pro_notice_mute),
|
||||||
|
contentDescription = "",
|
||||||
|
tint = AppColors.text,
|
||||||
|
modifier = Modifier.size(20.dp)
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.width(12.dp))
|
||||||
|
Text(
|
||||||
|
text = stringResource(R.string.block_description_2),
|
||||||
|
fontSize = 14.sp,
|
||||||
|
color = AppColors.text,
|
||||||
|
lineHeight = 20.sp
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 第三条说明
|
||||||
|
Row(
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
Icon(
|
||||||
|
painter = painterResource(id = R.mipmap.icons_infor_off_bell),
|
||||||
|
contentDescription = "",
|
||||||
|
tint = AppColors.text,
|
||||||
|
modifier = Modifier.size(20.dp)
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.width(12.dp))
|
||||||
|
Text(
|
||||||
|
text = stringResource(R.string.block_description_3),
|
||||||
|
fontSize = 14.sp,
|
||||||
|
color = AppColors.text,
|
||||||
|
lineHeight = 20.sp
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 确认拉黑按钮
|
||||||
|
androidx.compose.material3.Button(
|
||||||
|
onClick = {
|
||||||
|
onConfirmBlock()
|
||||||
|
onDismiss()
|
||||||
|
},
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.height(48.dp),
|
||||||
|
colors = androidx.compose.material3.ButtonDefaults.buttonColors(
|
||||||
|
containerColor = AppColors.text
|
||||||
|
),
|
||||||
|
shape = RoundedCornerShape(24.dp)
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
stringResource(R.string.block),
|
||||||
|
color = AppColors.background,
|
||||||
|
fontSize = 16.sp,
|
||||||
|
fontWeight = FontWeight.Bold
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -99,6 +99,8 @@ import kotlinx.coroutines.delay
|
|||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import androidx.compose.foundation.rememberScrollState
|
import androidx.compose.foundation.rememberScrollState
|
||||||
|
import androidx.compose.ui.res.stringResource
|
||||||
|
|
||||||
@OptIn(ExperimentalFoundationApi::class, ExperimentalMaterialApi::class, ExperimentalMaterial3Api::class)
|
@OptIn(ExperimentalFoundationApi::class, ExperimentalMaterialApi::class, ExperimentalMaterial3Api::class)
|
||||||
@Composable
|
@Composable
|
||||||
fun ProfileV3(
|
fun ProfileV3(
|
||||||
@@ -127,6 +129,8 @@ fun ProfileV3(
|
|||||||
var showAgentMenu by remember { mutableStateOf(false) }
|
var showAgentMenu by remember { mutableStateOf(false) }
|
||||||
var contextAgent by remember { mutableStateOf<AgentEntity?>(null) }
|
var contextAgent by remember { mutableStateOf<AgentEntity?>(null) }
|
||||||
var showDeleteConfirmDialog by remember { mutableStateOf(false) }
|
var showDeleteConfirmDialog by remember { mutableStateOf(false) }
|
||||||
|
var showOtherUserMenu by remember { mutableStateOf(false) }
|
||||||
|
var showBlockConfirmDialog by remember { mutableStateOf(false) }
|
||||||
val context = LocalContext.current
|
val context = LocalContext.current
|
||||||
val scope = rememberCoroutineScope()
|
val scope = rememberCoroutineScope()
|
||||||
val navController = LocalNavController.current
|
val navController = LocalNavController.current
|
||||||
@@ -154,9 +158,13 @@ fun ProfileV3(
|
|||||||
|
|
||||||
val toolbarAlpha by remember {
|
val toolbarAlpha by remember {
|
||||||
derivedStateOf {
|
derivedStateOf {
|
||||||
val maxScroll = 500f // 最大滚动距离,可调整
|
if (!isSelf) {
|
||||||
val progress = (scrollState.value.coerceAtMost(maxScroll.toInt()) / maxScroll).coerceIn(0f, 1f)
|
1f
|
||||||
progress
|
} else {
|
||||||
|
val maxScroll = 500f // 最大滚动距离,可调整
|
||||||
|
val progress = (scrollState.value.coerceAtMost(maxScroll.toInt()) / maxScroll).coerceIn(0f, 1f)
|
||||||
|
progress
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -478,7 +486,10 @@ fun ProfileV3(
|
|||||||
isSelf = isSelf,
|
isSelf = isSelf,
|
||||||
profile = profile,
|
profile = profile,
|
||||||
navController = navController,
|
navController = navController,
|
||||||
alpha = toolbarAlpha
|
alpha = toolbarAlpha,
|
||||||
|
onMenuClick = {
|
||||||
|
showOtherUserMenu = true
|
||||||
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
PullRefreshIndicator(
|
PullRefreshIndicator(
|
||||||
@@ -486,8 +497,70 @@ fun ProfileV3(
|
|||||||
refreshState,
|
refreshState,
|
||||||
Modifier.align(Alignment.TopCenter)
|
Modifier.align(Alignment.TopCenter)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// 其他用户菜单弹窗
|
||||||
|
if (showOtherUserMenu) {
|
||||||
|
ModalBottomSheet(
|
||||||
|
onDismissRequest = { showOtherUserMenu = false },
|
||||||
|
sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = true),
|
||||||
|
containerColor = Color.Transparent, // 设置容器背景透明
|
||||||
|
contentColor = Color.Transparent, // 设置内容背景透明
|
||||||
|
dragHandle = null, // 移除拖拽手柄
|
||||||
|
windowInsets = androidx.compose.foundation.layout.WindowInsets(0) // 移除窗口边距
|
||||||
|
) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.background(Color.Transparent)
|
||||||
|
) {
|
||||||
|
OtherUserMenuModal(
|
||||||
|
onBlockClick = {
|
||||||
|
showBlockConfirmDialog = true
|
||||||
|
},
|
||||||
|
onReportClick = {
|
||||||
|
// 实现举报逻辑
|
||||||
|
},
|
||||||
|
onCancelClick = {
|
||||||
|
showOtherUserMenu = false
|
||||||
|
},
|
||||||
|
onDismiss = { showOtherUserMenu = false }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 拉黑确认弹窗
|
||||||
|
if (showBlockConfirmDialog) {
|
||||||
|
ModalBottomSheet(
|
||||||
|
onDismissRequest = {
|
||||||
|
showBlockConfirmDialog = false
|
||||||
|
},
|
||||||
|
sheetState = rememberModalBottomSheetState(skipPartiallyExpanded = true),
|
||||||
|
containerColor = Color.Transparent,
|
||||||
|
contentColor = Color.Transparent,
|
||||||
|
dragHandle = null,
|
||||||
|
windowInsets = androidx.compose.foundation.layout.WindowInsets(0)
|
||||||
|
) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.background(Color.Transparent)
|
||||||
|
) {
|
||||||
|
BlockConfirmDialog(
|
||||||
|
userProfile = profile,
|
||||||
|
onConfirmBlock = {
|
||||||
|
// 实现拉黑逻辑
|
||||||
|
},
|
||||||
|
onDismiss = {
|
||||||
|
showBlockConfirmDialog = false
|
||||||
|
showOtherUserMenu = false
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//顶部导航栏组件
|
//顶部导航栏组件
|
||||||
@Composable
|
@Composable
|
||||||
@@ -496,14 +569,14 @@ fun TopNavigationBar(
|
|||||||
isSelf: Boolean,
|
isSelf: Boolean,
|
||||||
profile: AccountProfileEntity?,
|
profile: AccountProfileEntity?,
|
||||||
navController: androidx.navigation.NavController,
|
navController: androidx.navigation.NavController,
|
||||||
|
alpha: Float,
|
||||||
alpha: Float
|
onMenuClick: () -> Unit = {}
|
||||||
) {
|
) {
|
||||||
val appColors = LocalAppTheme.current
|
val appColors = LocalAppTheme.current
|
||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.graphicsLayer { this.alpha = alpha } // 应用透明度
|
.graphicsLayer { this.alpha = alpha }
|
||||||
) {
|
) {
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
@@ -555,6 +628,21 @@ fun TopNavigationBar(
|
|||||||
.size(24.dp)
|
.size(24.dp)
|
||||||
.padding(16.dp)
|
.padding(16.dp)
|
||||||
)
|
)
|
||||||
|
} else if (!isSelf) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier
|
||||||
|
.noRippleClickable {
|
||||||
|
onMenuClick()
|
||||||
|
}
|
||||||
|
.padding(16.dp)
|
||||||
|
) {
|
||||||
|
Icon(
|
||||||
|
painter = painterResource(id = R.drawable.rider_pro_more_horizon),
|
||||||
|
contentDescription = "菜单",
|
||||||
|
tint = appColors.text,
|
||||||
|
modifier = Modifier.size(24.dp)
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Spacer(modifier = Modifier.height(8.dp))
|
Spacer(modifier = Modifier.height(8.dp))
|
||||||
@@ -661,7 +749,7 @@ fun AgentMenuModal(
|
|||||||
if (isSelf) {
|
if (isSelf) {
|
||||||
MenuActionItem(
|
MenuActionItem(
|
||||||
icon = R.drawable.rider_pro_moment_delete,
|
icon = R.drawable.rider_pro_moment_delete,
|
||||||
text = "删除"
|
text = stringResource(R.string.delete)
|
||||||
) {
|
) {
|
||||||
onDeleteClick()
|
onDeleteClick()
|
||||||
}
|
}
|
||||||
@@ -737,3 +825,96 @@ fun DeleteConfirmDialog(
|
|||||||
containerColor = AppColors.background
|
containerColor = AppColors.background
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 其他用户主页菜单弹窗
|
||||||
|
*/
|
||||||
|
@Composable
|
||||||
|
fun OtherUserMenuModal(
|
||||||
|
onBlockClick: () -> Unit = {},
|
||||||
|
onReportClick: () -> Unit = {},
|
||||||
|
onCancelClick: () -> Unit = {},
|
||||||
|
onDismiss: () -> Unit = {}
|
||||||
|
) {
|
||||||
|
val AppColors = LocalAppTheme.current
|
||||||
|
|
||||||
|
Box(
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
contentAlignment = Alignment.BottomCenter
|
||||||
|
) {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 8.dp)
|
||||||
|
.padding(bottom = 11.dp)
|
||||||
|
) {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.background(
|
||||||
|
color = AppColors.background,
|
||||||
|
shape = RoundedCornerShape(8.dp)
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
// 拉黑选项
|
||||||
|
androidx.compose.material3.TextButton(
|
||||||
|
onClick = {
|
||||||
|
onBlockClick()
|
||||||
|
},
|
||||||
|
modifier = Modifier.fillMaxWidth()
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
stringResource(R.string.block),
|
||||||
|
color = AppColors.error,
|
||||||
|
fontWeight = FontWeight.Bold,
|
||||||
|
fontSize = 16.sp
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 分割线
|
||||||
|
androidx.compose.material3.HorizontalDivider(
|
||||||
|
color = AppColors.divider,
|
||||||
|
thickness = 0.5.dp
|
||||||
|
)
|
||||||
|
|
||||||
|
// 举报选项
|
||||||
|
androidx.compose.material3.TextButton(
|
||||||
|
onClick = {
|
||||||
|
onReportClick()
|
||||||
|
onDismiss()
|
||||||
|
},
|
||||||
|
modifier = Modifier.fillMaxWidth()
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
stringResource(R.string.report),
|
||||||
|
color = AppColors.error,
|
||||||
|
fontWeight = FontWeight.Bold,
|
||||||
|
fontSize = 16.sp
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(8.dp))
|
||||||
|
|
||||||
|
// 取消按钮
|
||||||
|
androidx.compose.material3.TextButton(
|
||||||
|
onClick = {
|
||||||
|
onCancelClick()
|
||||||
|
onDismiss()
|
||||||
|
},
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.background(
|
||||||
|
color = AppColors.background,
|
||||||
|
shape = RoundedCornerShape(8.dp)
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
stringResource(R.string.cancel),
|
||||||
|
color = AppColors.text,
|
||||||
|
fontSize = 16.sp
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import androidx.compose.foundation.layout.Arrangement
|
|||||||
import androidx.compose.foundation.layout.Row
|
import androidx.compose.foundation.layout.Row
|
||||||
import androidx.compose.foundation.layout.Spacer
|
import androidx.compose.foundation.layout.Spacer
|
||||||
import androidx.compose.foundation.layout.fillMaxWidth
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.height
|
||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.foundation.layout.size
|
import androidx.compose.foundation.layout.size
|
||||||
import androidx.compose.foundation.layout.width
|
import androidx.compose.foundation.layout.width
|
||||||
@@ -47,66 +48,72 @@ fun SelfProfileAction(
|
|||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
horizontalArrangement = Arrangement.Center,
|
horizontalArrangement = Arrangement.Center,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.weight(1f)
|
.width(60.dp).height(25.dp)
|
||||||
.clip(RoundedCornerShape(10.dp))
|
.clip(RoundedCornerShape(12.dp))
|
||||||
.background(AppColors.nonActive)
|
.background(androidx.compose.ui.graphics.Color(0x229284BD))
|
||||||
.padding(horizontal = 5.dp, vertical = 12.dp)
|
|
||||||
.noRippleClickable {
|
.noRippleClickable {
|
||||||
editProfileDebouncer {
|
editProfileDebouncer {
|
||||||
onEditProfile()
|
onEditProfile()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
|
Image(
|
||||||
|
painter = painterResource(id = R.mipmap.fill_and_sign),
|
||||||
|
contentDescription = "",
|
||||||
|
modifier = Modifier.size(12.dp),
|
||||||
|
colorFilter = ColorFilter.tint(androidx.compose.ui.graphics.Color(0xFF9284BD))
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.width(4.dp))
|
||||||
Text(
|
Text(
|
||||||
text = stringResource(R.string.edit_profile),
|
text = stringResource(R.string.edit_profile),
|
||||||
fontSize = 14.sp,
|
fontSize = 12.sp,
|
||||||
fontWeight = FontWeight.W900,
|
fontWeight = FontWeight.W600,
|
||||||
color = AppColors.text,
|
color = androidx.compose.ui.graphics.Color(0xFF9284BD),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 预留按钮位置
|
// // 预留按钮位置
|
||||||
Row(
|
// Row(
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
// verticalAlignment = Alignment.CenterVertically,
|
||||||
horizontalArrangement = Arrangement.Center,
|
// horizontalArrangement = Arrangement.Center,
|
||||||
modifier = Modifier
|
// modifier = Modifier
|
||||||
.weight(1f)
|
// .weight(1f)
|
||||||
.clip(RoundedCornerShape(10.dp))
|
// .clip(RoundedCornerShape(10.dp))
|
||||||
.padding(horizontal = 16.dp, vertical = 12.dp)
|
// .padding(horizontal = 16.dp, vertical = 12.dp)
|
||||||
.noRippleClickable {
|
// .noRippleClickable {
|
||||||
|
//
|
||||||
}
|
// }
|
||||||
) {
|
// ) {
|
||||||
Text(
|
// Text(
|
||||||
text = "",
|
// text = "",
|
||||||
fontSize = 14.sp,
|
// fontSize = 14.sp,
|
||||||
fontWeight = FontWeight.W900,
|
// fontWeight = FontWeight.W900,
|
||||||
color = AppColors.text,
|
// color = AppColors.text,
|
||||||
)
|
// )
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
// 分享按钮
|
// // 分享按钮
|
||||||
Row(
|
// Row(
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
// verticalAlignment = Alignment.CenterVertically,
|
||||||
horizontalArrangement = Arrangement.Center,
|
// horizontalArrangement = Arrangement.Center,
|
||||||
modifier = Modifier
|
// modifier = Modifier
|
||||||
.weight(1f)
|
// .weight(1f)
|
||||||
.clip(RoundedCornerShape(10.dp))
|
// .clip(RoundedCornerShape(10.dp))
|
||||||
.background(AppColors.nonActive)
|
// .background(AppColors.nonActive)
|
||||||
.padding(horizontal = 16.dp, vertical = 12.dp)
|
// .padding(horizontal = 16.dp, vertical = 12.dp)
|
||||||
.noRippleClickable {
|
// .noRippleClickable {
|
||||||
shareDebouncer {
|
// shareDebouncer {
|
||||||
// TODO: 添加分享逻辑
|
// // TODO: 添加分享逻辑
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
) {
|
// ) {
|
||||||
Text(
|
// Text(
|
||||||
text = stringResource(R.string.share),
|
// text = stringResource(R.string.share),
|
||||||
fontSize = 14.sp,
|
// fontSize = 14.sp,
|
||||||
fontWeight = FontWeight.W900,
|
// fontWeight = FontWeight.W900,
|
||||||
color = AppColors.text,
|
// color = AppColors.text,
|
||||||
)
|
// )
|
||||||
}
|
// }
|
||||||
|
|
||||||
// // Rave Premium 按钮(右侧)
|
// // Rave Premium 按钮(右侧)
|
||||||
// Row(
|
// Row(
|
||||||
|
|||||||
@@ -212,10 +212,12 @@ fun EmptyAgentsView() {
|
|||||||
if (isNetworkAvailable) {
|
if (isNetworkAvailable) {
|
||||||
Image(
|
Image(
|
||||||
painter = painterResource(
|
painter = painterResource(
|
||||||
id =if(AppState.darkMode) R.mipmap.qs_ai_qs_as_img
|
id =if(AppState.darkMode) R.mipmap.ai_dark
|
||||||
else R.mipmap.ai),
|
else R.mipmap.ai),
|
||||||
contentDescription = "暂无Agent",
|
contentDescription = "暂无Agent",
|
||||||
modifier = Modifier.size(181.dp),
|
modifier = Modifier
|
||||||
|
.size(width = 181.dp, height = 153.dp)
|
||||||
|
.align(Alignment.CenterHorizontally),
|
||||||
)
|
)
|
||||||
|
|
||||||
Spacer(modifier = Modifier.height(24.dp))
|
Spacer(modifier = Modifier.height(24.dp))
|
||||||
|
|||||||
@@ -65,94 +65,94 @@ fun UserAgentsRow(
|
|||||||
viewModel.loadUserAgents(userId)
|
viewModel.loadUserAgents(userId)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 总是显示智能体区域,即使没有数据也显示标题和状态
|
// // 总是显示智能体区域,即使没有数据也显示标题和状态
|
||||||
Column(
|
// Column(
|
||||||
modifier = modifier
|
// modifier = modifier
|
||||||
.fillMaxWidth()
|
// .fillMaxWidth()
|
||||||
.padding(horizontal = 16.dp)
|
// .padding(horizontal = 16.dp)
|
||||||
) {
|
// ) {
|
||||||
Text(
|
// Text(
|
||||||
text = if (isSelf) "我的智能体" else "TA的智能体",
|
// text = if (isSelf) "我的智能体" else "TA的智能体",
|
||||||
fontSize = 16.sp,
|
// fontSize = 16.sp,
|
||||||
fontWeight = FontWeight.W600,
|
// fontWeight = FontWeight.W600,
|
||||||
color = AppColors.text,
|
// color = AppColors.text,
|
||||||
modifier = Modifier.padding(bottom = 12.dp)
|
// modifier = Modifier.padding(bottom = 12.dp)
|
||||||
)
|
// )
|
||||||
|
//
|
||||||
when {
|
// when {
|
||||||
viewModel.isLoading -> {
|
// viewModel.isLoading -> {
|
||||||
// 显示加载状态
|
// // 显示加载状态
|
||||||
Box(
|
// Box(
|
||||||
modifier = Modifier
|
// modifier = Modifier
|
||||||
.fillMaxWidth()
|
// .fillMaxWidth()
|
||||||
.height(60.dp),
|
// .height(60.dp),
|
||||||
contentAlignment = Alignment.Center
|
// contentAlignment = Alignment.Center
|
||||||
) {
|
// ) {
|
||||||
Text(
|
// Text(
|
||||||
text = "加载中...",
|
// text = "加载中...",
|
||||||
fontSize = 14.sp,
|
// fontSize = 14.sp,
|
||||||
color = AppColors.text.copy(alpha = 0.6f)
|
// color = AppColors.text.copy(alpha = 0.6f)
|
||||||
)
|
// )
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
viewModel.error != null -> {
|
// viewModel.error != null -> {
|
||||||
// 显示错误状态
|
// // 显示错误状态
|
||||||
Box(
|
// Box(
|
||||||
modifier = Modifier
|
// modifier = Modifier
|
||||||
.fillMaxWidth()
|
// .fillMaxWidth()
|
||||||
.height(60.dp),
|
// .height(60.dp),
|
||||||
contentAlignment = Alignment.Center
|
// contentAlignment = Alignment.Center
|
||||||
) {
|
// ) {
|
||||||
Text(
|
// Text(
|
||||||
text = "加载失败: ${viewModel.error}",
|
// text = "加载失败: ${viewModel.error}",
|
||||||
fontSize = 14.sp,
|
// fontSize = 14.sp,
|
||||||
color = AppColors.text.copy(alpha = 0.6f)
|
// color = AppColors.text.copy(alpha = 0.6f)
|
||||||
)
|
// )
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
viewModel.agents.isEmpty() -> {
|
// viewModel.agents.isEmpty() -> {
|
||||||
// 显示空状态
|
// // 显示空状态
|
||||||
Box(
|
// Box(
|
||||||
modifier = Modifier
|
// modifier = Modifier
|
||||||
.fillMaxWidth()
|
// .fillMaxWidth()
|
||||||
.height(60.dp),
|
// .height(60.dp),
|
||||||
contentAlignment = Alignment.Center
|
// contentAlignment = Alignment.Center
|
||||||
) {
|
// ) {
|
||||||
Text(
|
// Text(
|
||||||
text = if (isSelf) "您还没有创建智能体" else "TA还没有创建智能体",
|
// text = if (isSelf) "您还没有创建智能体" else "TA还没有创建智能体",
|
||||||
fontSize = 14.sp,
|
// fontSize = 14.sp,
|
||||||
color = AppColors.text.copy(alpha = 0.6f)
|
// color = AppColors.text.copy(alpha = 0.6f)
|
||||||
)
|
// )
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
else -> {
|
// else -> {
|
||||||
// 显示智能体列表
|
// // 显示智能体列表
|
||||||
LazyRow(
|
// LazyRow(
|
||||||
horizontalArrangement = Arrangement.spacedBy(12.dp),
|
// horizontalArrangement = Arrangement.spacedBy(12.dp),
|
||||||
modifier = Modifier.fillMaxWidth()
|
// modifier = Modifier.fillMaxWidth()
|
||||||
) {
|
// ) {
|
||||||
// 显示智能体项目
|
// // 显示智能体项目
|
||||||
items(viewModel.agents) { agent ->
|
// items(viewModel.agents) { agent ->
|
||||||
AgentItem(
|
// AgentItem(
|
||||||
agent = agent,
|
// agent = agent,
|
||||||
onClick = { onAgentClick(agent) },
|
// onClick = { onAgentClick(agent) },
|
||||||
onAvatarClick = { onAvatarClick(agent) },
|
// onAvatarClick = { onAvatarClick(agent) },
|
||||||
onLongClick = { onAgentLongClick(agent) }
|
// onLongClick = { onAgentLongClick(agent) }
|
||||||
)
|
// )
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
// 添加"更多"按钮
|
// // 添加"更多"按钮
|
||||||
item {
|
// item {
|
||||||
MoreAgentItem(
|
// MoreAgentItem(
|
||||||
onClick = onMoreClick
|
// onClick = onMoreClick
|
||||||
)
|
// )
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
Spacer(modifier = Modifier.height(16.dp))
|
// Spacer(modifier = Modifier.height(16.dp))
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalFoundationApi::class)
|
@OptIn(ExperimentalFoundationApi::class)
|
||||||
|
|||||||
@@ -6,9 +6,11 @@ import android.util.Log
|
|||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
import androidx.compose.foundation.Image
|
import androidx.compose.foundation.Image
|
||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
|
import androidx.compose.foundation.border
|
||||||
import androidx.compose.foundation.gestures.Orientation
|
import androidx.compose.foundation.gestures.Orientation
|
||||||
import androidx.compose.foundation.gestures.rememberScrollableState
|
import androidx.compose.foundation.gestures.rememberScrollableState
|
||||||
import androidx.compose.foundation.gestures.scrollable
|
import androidx.compose.foundation.gestures.scrollable
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
import androidx.compose.foundation.layout.Box
|
import androidx.compose.foundation.layout.Box
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.Column
|
||||||
import androidx.compose.foundation.layout.PaddingValues
|
import androidx.compose.foundation.layout.PaddingValues
|
||||||
@@ -40,12 +42,14 @@ import androidx.compose.ui.draw.clip
|
|||||||
import androidx.compose.ui.draw.scale
|
import androidx.compose.ui.draw.scale
|
||||||
import androidx.compose.ui.graphics.Brush
|
import androidx.compose.ui.graphics.Brush
|
||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
|
import androidx.compose.ui.graphics.ColorFilter
|
||||||
import androidx.compose.ui.graphics.graphicsLayer
|
import androidx.compose.ui.graphics.graphicsLayer
|
||||||
import androidx.compose.ui.layout.ContentScale
|
import androidx.compose.ui.layout.ContentScale
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
import androidx.compose.ui.res.painterResource
|
import androidx.compose.ui.res.painterResource
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
import androidx.compose.ui.text.font.FontWeight
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
|
import androidx.compose.ui.text.style.TextAlign
|
||||||
import androidx.compose.ui.tooling.preview.Preview
|
import androidx.compose.ui.tooling.preview.Preview
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import androidx.compose.ui.unit.sp
|
import androidx.compose.ui.unit.sp
|
||||||
@@ -70,6 +74,11 @@ import com.google.accompanist.systemuicontroller.rememberSystemUiController
|
|||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.delay
|
import kotlinx.coroutines.delay
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
|
import com.airbnb.lottie.compose.LottieAnimation
|
||||||
|
import com.airbnb.lottie.compose.LottieCompositionSpec
|
||||||
|
import com.airbnb.lottie.compose.LottieConstants
|
||||||
|
import com.airbnb.lottie.compose.rememberLottieComposition
|
||||||
|
|
||||||
@Preview
|
@Preview
|
||||||
@Composable
|
@Composable
|
||||||
fun LoginPage() {
|
fun LoginPage() {
|
||||||
@@ -209,14 +218,14 @@ fun LoginPage() {
|
|||||||
saveData()
|
saveData()
|
||||||
}
|
}
|
||||||
|
|
||||||
// 显示成功提示
|
// // 显示成功提示
|
||||||
coroutineScope.launch(Dispatchers.Main) {
|
// coroutineScope.launch(Dispatchers.Main) {
|
||||||
Toast.makeText(
|
// Toast.makeText(
|
||||||
context,
|
// context,
|
||||||
"游客登录成功",
|
// "游客登录成功",
|
||||||
Toast.LENGTH_SHORT
|
// Toast.LENGTH_SHORT
|
||||||
).show()
|
// ).show()
|
||||||
}
|
// }
|
||||||
|
|
||||||
// 初始化应用状态(游客模式会自动跳过推送和TRTC初始化)
|
// 初始化应用状态(游客模式会自动跳过推送和TRTC初始化)
|
||||||
try {
|
try {
|
||||||
@@ -260,13 +269,37 @@ fun LoginPage() {
|
|||||||
.fillMaxSize()
|
.fillMaxSize()
|
||||||
.background(AppColors.background)
|
.background(AppColors.background)
|
||||||
) {
|
) {
|
||||||
Box(
|
Row(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxSize()
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 24.dp)
|
||||||
|
.padding(top = 60.dp),
|
||||||
|
horizontalArrangement = Arrangement.SpaceBetween,
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
) {
|
) {
|
||||||
val localContext = LocalContext.current // 获取 Context
|
Box(
|
||||||
MovingImageWall(localContext.resources) // 将 resources 传递给 MovingImageWall
|
modifier = Modifier
|
||||||
|
.size(30.dp)
|
||||||
|
.background(
|
||||||
|
color = AppColors.text.copy(alpha = 0.1f),
|
||||||
|
shape = androidx.compose.foundation.shape.CircleShape
|
||||||
|
)
|
||||||
|
.noRippleClickable {
|
||||||
|
guestLogin()
|
||||||
|
},
|
||||||
|
contentAlignment = Alignment.Center
|
||||||
|
) {
|
||||||
|
Image(
|
||||||
|
painter = painterResource(id = R.drawable.rider_pro_close),
|
||||||
|
contentDescription = "Close",
|
||||||
|
modifier = Modifier.size(16.dp),
|
||||||
|
colorFilter = ColorFilter.tint(AppColors.text)
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(20.dp))
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxSize()
|
.fillMaxSize()
|
||||||
@@ -274,78 +307,109 @@ fun LoginPage() {
|
|||||||
horizontalAlignment = Alignment.CenterHorizontally
|
horizontalAlignment = Alignment.CenterHorizontally
|
||||||
) {
|
) {
|
||||||
Spacer(modifier = Modifier.weight(1f))
|
Spacer(modifier = Modifier.weight(1f))
|
||||||
Image(
|
Box(
|
||||||
painter = painterResource(id = R.mipmap.invalid_name),
|
|
||||||
contentDescription = "Rave Now",
|
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.size(52.dp)
|
.fillMaxWidth()
|
||||||
.clip(RoundedCornerShape(10.dp))
|
.height(400.dp)
|
||||||
)
|
|
||||||
Spacer(modifier = Modifier.height(8.dp))
|
) {
|
||||||
|
val lottieFile = if (AppState.darkMode) "login.lottie" else "login_light.lottie"
|
||||||
|
LottieAnimation(
|
||||||
|
composition = rememberLottieComposition(LottieCompositionSpec.Asset(lottieFile)).value,
|
||||||
|
iterations = LottieConstants.IterateForever,
|
||||||
|
modifier = Modifier.fillMaxSize()
|
||||||
|
)
|
||||||
|
}
|
||||||
Text(
|
Text(
|
||||||
"Rave Now",
|
text = stringResource(R.string.join_party_carnival),
|
||||||
fontSize = 28.sp,
|
fontSize = 17.sp,
|
||||||
fontWeight = FontWeight.W900,
|
fontWeight = FontWeight.W600,
|
||||||
color = AppColors.text
|
color = AppColors.text
|
||||||
)
|
)
|
||||||
Spacer(modifier = Modifier.height(16.dp))
|
// Image(
|
||||||
Text(
|
// painter = painterResource(id = R.mipmap.invalid_name),
|
||||||
"Your Night Starts Here",
|
// contentDescription = "Rave Now",
|
||||||
fontSize = 20.sp,
|
// modifier = Modifier
|
||||||
fontWeight = FontWeight.W700,
|
// .size(52.dp)
|
||||||
color = AppColors.text
|
// .clip(RoundedCornerShape(10.dp))
|
||||||
)
|
// )
|
||||||
Spacer(modifier = Modifier.height(8.dp))
|
// Spacer(modifier = Modifier.height(8.dp))
|
||||||
|
// Text(
|
||||||
|
// "Rave Now",
|
||||||
|
// fontSize = 28.sp,
|
||||||
|
// fontWeight = FontWeight.W900,
|
||||||
|
// color = AppColors.text
|
||||||
|
// )
|
||||||
|
// Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
// Text(
|
||||||
|
// "Your Night Starts Here",
|
||||||
|
// fontSize = 20.sp,
|
||||||
|
// fontWeight = FontWeight.W700,
|
||||||
|
// color = AppColors.text
|
||||||
|
// )
|
||||||
|
//注册tab
|
||||||
|
Spacer(modifier = Modifier.height(48.dp))
|
||||||
ActionButton(
|
ActionButton(
|
||||||
modifier = Modifier.fillMaxWidth(),
|
modifier = Modifier.fillMaxWidth(),
|
||||||
text = stringResource(R.string.sign_up_upper),
|
text = stringResource(R.string.sign_up_upper),
|
||||||
color = AppColors.mainText,
|
color = if (AppState.darkMode) Color.Black else Color.White,
|
||||||
backgroundColor = AppColors.main
|
backgroundColor = if (AppState.darkMode) Color.White else Color.Black
|
||||||
) {
|
) {
|
||||||
navController.navigate(
|
navController.navigate(
|
||||||
NavigationRoute.EmailSignUp.route,
|
NavigationRoute.EmailSignUp.route,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
if (showGoogleLogin) {
|
//谷歌登录tab
|
||||||
Spacer(modifier = Modifier.height(16.dp))
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
ActionButton(
|
ActionButton(
|
||||||
modifier = Modifier.fillMaxWidth(),
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.height(52.dp)
|
||||||
|
.border(
|
||||||
|
width = 1.5.dp,
|
||||||
|
color = if (AppState.darkMode) Color.White else Color.Black,
|
||||||
|
shape = RoundedCornerShape(24.dp)
|
||||||
|
),
|
||||||
text = stringResource(R.string.sign_in_with_google),
|
text = stringResource(R.string.sign_in_with_google),
|
||||||
color = AppColors.text,
|
color = if (AppState.darkMode) Color.White else Color.Black,
|
||||||
|
backgroundColor = if (AppState.darkMode) Color.Black else Color.White,
|
||||||
leading = {
|
leading = {
|
||||||
Image(
|
Image(
|
||||||
painter = painterResource(id = R.drawable.rider_pro_google),
|
painter = painterResource(id = R.mipmap.rider_pro_signup_google),
|
||||||
contentDescription = "Google",
|
contentDescription = "Google",
|
||||||
modifier = Modifier.size(36.dp)
|
modifier = Modifier.size(18.dp),
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
expandText = true,
|
expandText = true,
|
||||||
contentPadding = PaddingValues(vertical = 8.dp, horizontal = 8.dp)
|
contentPadding = PaddingValues(vertical = 8.dp, horizontal = 10.dp)
|
||||||
) {
|
) {
|
||||||
googleLogin()
|
googleLogin()
|
||||||
}
|
}
|
||||||
}
|
|
||||||
//登录tab
|
//登录tab
|
||||||
Spacer(modifier = Modifier.height(24.dp))
|
Spacer(modifier = Modifier.height(24.dp))
|
||||||
ActionButton(
|
Text(
|
||||||
modifier = Modifier.fillMaxWidth(),
|
|
||||||
text = stringResource(R.string.login_upper),
|
text = stringResource(R.string.login_upper),
|
||||||
color = AppColors.text,
|
color = AppColors.text.copy(alpha = 0.5f),
|
||||||
) {
|
fontSize = 16.sp,
|
||||||
navController.navigate(
|
textAlign = TextAlign.Center,
|
||||||
NavigationRoute.UserAuth.route,
|
modifier = Modifier
|
||||||
)
|
.fillMaxWidth()
|
||||||
}
|
.noRippleClickable {
|
||||||
|
navController.navigate(
|
||||||
// 游客登录按钮
|
NavigationRoute.UserAuth.route,
|
||||||
Spacer(modifier = Modifier.height(16.dp))
|
)
|
||||||
ActionButton(
|
}
|
||||||
modifier = Modifier.fillMaxWidth(),
|
)
|
||||||
text = "游客模式",
|
// // 游客登录按钮
|
||||||
color = AppColors.text.copy(alpha = 0.7f),
|
// Spacer(modifier = Modifier.height(16.dp))
|
||||||
) {
|
// ActionButton(
|
||||||
guestLogin()
|
// modifier = Modifier.fillMaxWidth(),
|
||||||
}
|
// text = "游客模式",
|
||||||
|
// color = AppColors.text.copy(alpha = 0.7f),
|
||||||
|
// ) {
|
||||||
|
// guestLogin()
|
||||||
|
// }
|
||||||
Spacer(modifier = Modifier.height(70.dp))
|
Spacer(modifier = Modifier.height(70.dp))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,6 +22,8 @@ import androidx.compose.runtime.rememberCoroutineScope
|
|||||||
import androidx.compose.runtime.setValue
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.graphics.Brush
|
||||||
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
import androidx.compose.ui.res.painterResource
|
import androidx.compose.ui.res.painterResource
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
@@ -60,7 +62,7 @@ fun UserAuthScreen() {
|
|||||||
val AppColors = LocalAppTheme.current
|
val AppColors = LocalAppTheme.current
|
||||||
var email by remember { mutableStateOf("") }
|
var email by remember { mutableStateOf("") }
|
||||||
var password by remember { mutableStateOf("") }
|
var password by remember { mutableStateOf("") }
|
||||||
var rememberMe by remember { mutableStateOf(false) }
|
var rememberMe by remember { mutableStateOf(true) }
|
||||||
val accountService: AccountService = AccountServiceImpl()
|
val accountService: AccountService = AccountServiceImpl()
|
||||||
val captchaService: CaptchaService = CaptchaServiceImpl()
|
val captchaService: CaptchaService = CaptchaServiceImpl()
|
||||||
val scope = rememberCoroutineScope()
|
val scope = rememberCoroutineScope()
|
||||||
@@ -299,32 +301,38 @@ fun UserAuthScreen() {
|
|||||||
ActionButton(
|
ActionButton(
|
||||||
modifier = Modifier.fillMaxWidth(),
|
modifier = Modifier.fillMaxWidth(),
|
||||||
text = stringResource(R.string.lets_ride_upper),
|
text = stringResource(R.string.lets_ride_upper),
|
||||||
backgroundColor = AppColors.main,
|
backgroundBrush = Brush.linearGradient(
|
||||||
|
colors = listOf(
|
||||||
|
Color(0xFF7c45ed),
|
||||||
|
Color(0x777c68ef),
|
||||||
|
Color(0x777bd8f8)
|
||||||
|
)
|
||||||
|
),
|
||||||
color = AppColors.mainText,
|
color = AppColors.mainText,
|
||||||
) {
|
) {
|
||||||
onLogin()
|
onLogin()
|
||||||
}
|
}
|
||||||
if (AppState.enableGoogleLogin) {
|
// if (AppState.enableGoogleLogin) {
|
||||||
Spacer(modifier = Modifier.height(16.dp))
|
// Spacer(modifier = Modifier.height(16.dp))
|
||||||
Text(stringResource(R.string.or_login_with), color = AppColors.secondaryText)
|
// Text(stringResource(R.string.or_login_with), color = AppColors.secondaryText)
|
||||||
Spacer(modifier = Modifier.height(16.dp))
|
// Spacer(modifier = Modifier.height(16.dp))
|
||||||
ActionButton(
|
// ActionButton(
|
||||||
modifier = Modifier.fillMaxWidth(),
|
// modifier = Modifier.fillMaxWidth(),
|
||||||
text = stringResource(R.string.sign_in_with_google),
|
// text = stringResource(R.string.sign_in_with_google),
|
||||||
color = AppColors.text,
|
// color = AppColors.text,
|
||||||
leading = {
|
// leading = {
|
||||||
Image(
|
// Image(
|
||||||
painter = painterResource(id = R.drawable.rider_pro_google),
|
// painter = painterResource(id = R.drawable.rider_pro_google),
|
||||||
contentDescription = "Google",
|
// contentDescription = "Google",
|
||||||
modifier = Modifier.size(36.dp)
|
// modifier = Modifier.size(36.dp)
|
||||||
)
|
// )
|
||||||
},
|
// },
|
||||||
expandText = true,
|
// expandText = true,
|
||||||
contentPadding = PaddingValues(vertical = 8.dp, horizontal = 8.dp)
|
// contentPadding = PaddingValues(vertical = 8.dp, horizontal = 8.dp)
|
||||||
) {
|
// ) {
|
||||||
googleLogin()
|
// googleLogin()
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
BIN
app/src/main/res/mipmap-hdpi/apple_logo_medium.png
Normal file
|
After Width: | Height: | Size: 356 B |
BIN
app/src/main/res/mipmap-hdpi/arrow.png
Normal file
|
After Width: | Height: | Size: 247 B |
BIN
app/src/main/res/mipmap-hdpi/fill_and_sign.png
Normal file
|
After Width: | Height: | Size: 335 B |
BIN
app/src/main/res/mipmap-hdpi/icon_collect.png
Normal file
|
After Width: | Height: | Size: 509 B |
BIN
app/src/main/res/mipmap-hdpi/icon_comment.png
Normal file
|
After Width: | Height: | Size: 461 B |
BIN
app/src/main/res/mipmap-hdpi/icon_share.png
Normal file
|
After Width: | Height: | Size: 446 B |
BIN
app/src/main/res/mipmap-hdpi/icon_variant_2.png
Normal file
|
After Width: | Height: | Size: 384 B |
BIN
app/src/main/res/mipmap-hdpi/icons_infor_off_bell.png
Normal file
|
After Width: | Height: | Size: 348 B |
BIN
app/src/main/res/mipmap-hdpi/icons_infor_off_eye.png
Normal file
|
After Width: | Height: | Size: 477 B |
BIN
app/src/main/res/mipmap-hdpi/underline.png
Normal file
|
After Width: | Height: | Size: 617 B |
BIN
app/src/main/res/mipmap-mdpi/apple_logo_medium.png
Normal file
|
After Width: | Height: | Size: 291 B |
BIN
app/src/main/res/mipmap-mdpi/arrow.png
Normal file
|
After Width: | Height: | Size: 206 B |
BIN
app/src/main/res/mipmap-mdpi/fill_and_sign.png
Normal file
|
After Width: | Height: | Size: 277 B |
BIN
app/src/main/res/mipmap-mdpi/icon_collect.png
Normal file
|
After Width: | Height: | Size: 381 B |
BIN
app/src/main/res/mipmap-mdpi/icon_comment.png
Normal file
|
After Width: | Height: | Size: 376 B |
BIN
app/src/main/res/mipmap-mdpi/icon_share.png
Normal file
|
After Width: | Height: | Size: 358 B |
BIN
app/src/main/res/mipmap-mdpi/icon_variant_2.png
Normal file
|
After Width: | Height: | Size: 333 B |
BIN
app/src/main/res/mipmap-mdpi/icons_infor_off_bell.png
Normal file
|
After Width: | Height: | Size: 248 B |
BIN
app/src/main/res/mipmap-mdpi/icons_infor_off_eye.png
Normal file
|
After Width: | Height: | Size: 396 B |
BIN
app/src/main/res/mipmap-mdpi/underline.png
Normal file
|
After Width: | Height: | Size: 483 B |
BIN
app/src/main/res/mipmap-xhdpi/ai_dark.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
app/src/main/res/mipmap-xhdpi/apple_logo_medium.png
Normal file
|
After Width: | Height: | Size: 423 B |
BIN
app/src/main/res/mipmap-xhdpi/arrow.png
Normal file
|
After Width: | Height: | Size: 259 B |
BIN
app/src/main/res/mipmap-xhdpi/fill_and_sign.png
Normal file
|
After Width: | Height: | Size: 377 B |
BIN
app/src/main/res/mipmap-xhdpi/icon_collect.png
Normal file
|
After Width: | Height: | Size: 595 B |
BIN
app/src/main/res/mipmap-xhdpi/icon_comment.png
Normal file
|
After Width: | Height: | Size: 595 B |
BIN
app/src/main/res/mipmap-xhdpi/icon_share.png
Normal file
|
After Width: | Height: | Size: 552 B |
BIN
app/src/main/res/mipmap-xhdpi/icon_variant_2.png
Normal file
|
After Width: | Height: | Size: 450 B |
BIN
app/src/main/res/mipmap-xhdpi/icons_infor_off_bell.png
Normal file
|
After Width: | Height: | Size: 374 B |
BIN
app/src/main/res/mipmap-xhdpi/icons_infor_off_eye.png
Normal file
|
After Width: | Height: | Size: 560 B |
BIN
app/src/main/res/mipmap-xhdpi/invalid_dark.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/res/mipmap-xhdpi/underline.png
Normal file
|
After Width: | Height: | Size: 646 B |
BIN
app/src/main/res/mipmap-xxhdpi/ai_dark.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
app/src/main/res/mipmap-xxhdpi/apple_logo_medium.png
Normal file
|
After Width: | Height: | Size: 541 B |
BIN
app/src/main/res/mipmap-xxhdpi/arrow.png
Normal file
|
After Width: | Height: | Size: 324 B |
BIN
app/src/main/res/mipmap-xxhdpi/fill_and_sign.png
Normal file
|
After Width: | Height: | Size: 521 B |
BIN
app/src/main/res/mipmap-xxhdpi/icon_collect.png
Normal file
|
After Width: | Height: | Size: 790 B |
BIN
app/src/main/res/mipmap-xxhdpi/icon_comment.png
Normal file
|
After Width: | Height: | Size: 746 B |
BIN
app/src/main/res/mipmap-xxhdpi/icon_share.png
Normal file
|
After Width: | Height: | Size: 722 B |
BIN
app/src/main/res/mipmap-xxhdpi/icon_variant_2.png
Normal file
|
After Width: | Height: | Size: 564 B |
BIN
app/src/main/res/mipmap-xxhdpi/icons_infor_off_bell.png
Normal file
|
After Width: | Height: | Size: 510 B |
BIN
app/src/main/res/mipmap-xxhdpi/icons_infor_off_eye.png
Normal file
|
After Width: | Height: | Size: 741 B |
BIN
app/src/main/res/mipmap-xxhdpi/invalid_dark.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
app/src/main/res/mipmap-xxhdpi/underline.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/ai_dark.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/apple_logo_medium.png
Normal file
|
After Width: | Height: | Size: 620 B |
BIN
app/src/main/res/mipmap-xxxhdpi/arrow.png
Normal file
|
After Width: | Height: | Size: 368 B |
BIN
app/src/main/res/mipmap-xxxhdpi/fill_and_sign.png
Normal file
|
After Width: | Height: | Size: 614 B |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_collect.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_comment.png
Normal file
|
After Width: | Height: | Size: 1007 B |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_share.png
Normal file
|
After Width: | Height: | Size: 975 B |
BIN
app/src/main/res/mipmap-xxxhdpi/icon_variant_2.png
Normal file
|
After Width: | Height: | Size: 682 B |
BIN
app/src/main/res/mipmap-xxxhdpi/icons_infor_off_bell.png
Normal file
|
After Width: | Height: | Size: 623 B |
BIN
app/src/main/res/mipmap-xxxhdpi/icons_infor_off_eye.png
Normal file
|
After Width: | Height: | Size: 897 B |
BIN
app/src/main/res/mipmap-xxxhdpi/invalid_dark.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
app/src/main/res/mipmap-xxxhdpi/underline.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
@@ -147,6 +147,7 @@
|
|||||||
<string name="chat_group">グループ</string>
|
<string name="chat_group">グループ</string>
|
||||||
<string name="chat_friend">友達</string>
|
<string name="chat_friend">友達</string>
|
||||||
<string name="chat_all">すべて</string>
|
<string name="chat_all">すべて</string>
|
||||||
|
<string name="chatting_now">人はおしゃべりをしている…</string>
|
||||||
<string name="agent_chat_list_title">AIエージェントチャット</string>
|
<string name="agent_chat_list_title">AIエージェントチャット</string>
|
||||||
<string name="agent_chat_empty_title">AIエージェントチャットがありません</string>
|
<string name="agent_chat_empty_title">AIエージェントチャットがありません</string>
|
||||||
<string name="agent_chat_empty_subtitle">AIエージェントと対話してみましょう</string>
|
<string name="agent_chat_empty_subtitle">AIエージェントと対話してみましょう</string>
|
||||||
@@ -191,6 +192,9 @@
|
|||||||
<string name="agent_createing">作成中…</string>
|
<string name="agent_createing">作成中…</string>
|
||||||
<string name="agent_find">発見</string>
|
<string name="agent_find">発見</string>
|
||||||
<string name="text_error_password_too_long">パスワードは%1$d文字を超えることはできません</string>
|
<string name="text_error_password_too_long">パスワードは%1$d文字を超えることはできません</string>
|
||||||
|
<string name="block">ブロック</string>
|
||||||
|
<string name="read_full_article">全文を読む</string>
|
||||||
|
|
||||||
|
|
||||||
<!-- Create Bottom Sheet -->
|
<!-- Create Bottom Sheet -->
|
||||||
<string name="create_title">作成</string>
|
<string name="create_title">作成</string>
|
||||||
@@ -218,5 +222,31 @@
|
|||||||
<string name="friend_chat_no_network_title">オフラインだ..</string>
|
<string name="friend_chat_no_network_title">オフラインだ..</string>
|
||||||
<string name="friend_chat_no_network_subtitle">ネットワークを確認して、この宇宙に接続してください</string>
|
<string name="friend_chat_no_network_subtitle">ネットワークを確認して、この宇宙に接続してください</string>
|
||||||
<string name="Reload">再ロード</string>
|
<string name="Reload">再ロード</string>
|
||||||
|
|
||||||
|
<!-- Login page -->
|
||||||
|
<string name="join_party_carnival">パーティーに参加して、一緒に盛り上がろう</string>
|
||||||
|
|
||||||
|
<!-- Tab labels -->
|
||||||
|
<string name="tab_recommend">おすすめ</string>
|
||||||
|
<string name="tab_short_video">ショート動画</string>
|
||||||
|
<string name="tab_news">ニュース</string>
|
||||||
|
|
||||||
|
<!-- Block Confirm Dialog -->
|
||||||
|
<string name="confirm_block_user">%1$sをブロックしますか?</string>
|
||||||
|
<string name="block_description_1">相手はあなたにメッセージを送信したり、あなたのプロフィールやコンテンツを見つけることができなくなります</string>
|
||||||
|
<string name="block_description_2">相手はあなたにブロックされた通知を受け取りません</string>
|
||||||
|
<string name="block_description_3">「設定」でいつでもブロックを解除できます</string>
|
||||||
|
|
||||||
|
<!-- Chat Settings -->
|
||||||
|
<string name="chat_settings">チャット設定</string>
|
||||||
|
<string name="chat_theme_settings">チャットテーマを設定</string>
|
||||||
|
<string name="custom_background">カスタム背景</string>
|
||||||
|
<string name="select_from_gallery">ギャラリーから選択</string>
|
||||||
|
<string name="featured_backgrounds">おすすめ背景</string>
|
||||||
|
<string name="previewing_custom_background">カスタム背景をプレビュー中</string>
|
||||||
|
<string name="each_theme_unique_experience">各テーマには独自の体験があります</string>
|
||||||
|
<string name="select_apply_to_use_theme">「適用」を選択してこのテーマを使用</string>
|
||||||
|
<string name="tap_cancel_to_preview_other_themes">「キャンセル」をタップして他のテーマをプレビュー</string>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
<string name="text_hint_password">输入密码</string>
|
<string name="text_hint_password">输入密码</string>
|
||||||
<string name="sign_up_upper">注册</string>
|
<string name="sign_up_upper">注册</string>
|
||||||
<string name="sign_in_with_email">使用邮箱注册</string>
|
<string name="sign_in_with_email">使用邮箱注册</string>
|
||||||
<string name="sign_in_with_google">使用 Google 账号登录</string>
|
<string name="sign_in_with_google">使用Google账号登录</string>
|
||||||
<string name="back_upper">返回</string>
|
<string name="back_upper">返回</string>
|
||||||
<string name="text_hint_confirm_password">再次输入密码</string>
|
<string name="text_hint_confirm_password">再次输入密码</string>
|
||||||
<string name="login_confirm_password_label">再次输入密码</string>
|
<string name="login_confirm_password_label">再次输入密码</string>
|
||||||
@@ -48,7 +48,7 @@
|
|||||||
<string name="error_not_accept_term">"为了提供更好的服务,请您在注册前仔细阅读并同意《用户协议》。 "</string>
|
<string name="error_not_accept_term">"为了提供更好的服务,请您在注册前仔细阅读并同意《用户协议》。 "</string>
|
||||||
<string name="empty_my_post_title">还没有发布任何动态</string>
|
<string name="empty_my_post_title">还没有发布任何动态</string>
|
||||||
<string name="empty_my_post_content">发布一个动态吧</string>
|
<string name="empty_my_post_content">发布一个动态吧</string>
|
||||||
<string name="edit_profile">编辑资料</string>
|
<string name="edit_profile">编辑</string>
|
||||||
<string name="share">分享</string>
|
<string name="share">分享</string>
|
||||||
<string name="logout">登出</string>
|
<string name="logout">登出</string>
|
||||||
<string name="change_password">修改密码</string>
|
<string name="change_password">修改密码</string>
|
||||||
@@ -127,7 +127,7 @@
|
|||||||
<string name="index_following">关注</string>
|
<string name="index_following">关注</string>
|
||||||
<string name="index_hot">热门</string>
|
<string name="index_hot">热门</string>
|
||||||
<string name="main_home">首页</string>
|
<string name="main_home">首页</string>
|
||||||
<string name="main_ai">智能体</string>
|
<string name="main_ai">AI</string>
|
||||||
<string name="main_message">消息</string>
|
<string name="main_message">消息</string>
|
||||||
<string name="main_profile">我的</string>
|
<string name="main_profile">我的</string>
|
||||||
<string name="agent_mine">我的</string>
|
<string name="agent_mine">我的</string>
|
||||||
@@ -149,7 +149,7 @@
|
|||||||
<string name="chat_group">群聊</string>
|
<string name="chat_group">群聊</string>
|
||||||
<string name="chat_friend">朋友</string>
|
<string name="chat_friend">朋友</string>
|
||||||
<string name="chat_all">全部</string>
|
<string name="chat_all">全部</string>
|
||||||
<string name="favourites_null">咦,什么都没有...</string>
|
<string name="favourites_null">暂无数据</string>
|
||||||
|
|
||||||
<string name="agent_chat_list_title">智能体聊天</string>
|
<string name="agent_chat_list_title">智能体聊天</string>
|
||||||
<string name="agent_chat_empty_title">AI 在等你的开场白</string>
|
<string name="agent_chat_empty_title">AI 在等你的开场白</string>
|
||||||
@@ -191,10 +191,14 @@
|
|||||||
<string name="group_room_enter">进入</string>
|
<string name="group_room_enter">进入</string>
|
||||||
<string name="group_room_enter_success">成功加入房间</string>
|
<string name="group_room_enter_success">成功加入房间</string>
|
||||||
<string name="group_room_enter_fail">加入房间失败</string>
|
<string name="group_room_enter_fail">加入房间失败</string>
|
||||||
<string name="agent_createing">创建中...</string>
|
<string name="agent_createing">创建中…</string>
|
||||||
<string name="agent_find">发现</string>
|
<string name="agent_find">发现</string>
|
||||||
<string name="text_error_password_too_long">密码不能超过 %1$d 个字符</string>
|
<string name="text_error_password_too_long">密码不能超过 %1$d 个字符</string>
|
||||||
|
<string name="chatting_now">人正在热聊…</string>
|
||||||
|
<string name="block">拉黑</string>
|
||||||
|
<string name="read_full_article">查看全文</string>
|
||||||
|
|
||||||
|
|
||||||
<!-- Create Bottom Sheet -->
|
<!-- Create Bottom Sheet -->
|
||||||
<string name="create_title">创建</string>
|
<string name="create_title">创建</string>
|
||||||
<string name="create_ai">AI</string>
|
<string name="create_ai">AI</string>
|
||||||
@@ -221,5 +225,29 @@
|
|||||||
<string name="friend_chat_no_network_title">掉线啦...</string>
|
<string name="friend_chat_no_network_title">掉线啦...</string>
|
||||||
<string name="friend_chat_no_network_subtitle">确认一下网络,连接这个宇宙</string>
|
<string name="friend_chat_no_network_subtitle">确认一下网络,连接这个宇宙</string>
|
||||||
<string name="Reload">重新加载</string>
|
<string name="Reload">重新加载</string>
|
||||||
|
|
||||||
|
<!-- Login page -->
|
||||||
|
<string name="join_party_carnival">加入派派,一起狂欢</string>
|
||||||
|
|
||||||
|
<!-- Tab labels -->
|
||||||
|
<string name="tab_recommend">推荐</string>
|
||||||
|
<string name="tab_short_video">短视频</string>
|
||||||
|
<string name="tab_news">新闻</string>
|
||||||
|
|
||||||
|
<!-- Block Confirm Dialog -->
|
||||||
|
<string name="confirm_block_user">确认拉黑%s?</string>
|
||||||
|
<string name="block_description_1">对方将无法发消息给你,也无法找到你的主页或内容</string>
|
||||||
|
<string name="block_description_2">对方不会收到自己被你拉黑的通知</string>
|
||||||
|
<string name="block_description_3">你可以随时"设置"中取消拉黑TA</string>
|
||||||
|
|
||||||
|
<!-- Chat Settings -->
|
||||||
|
<string name="chat_settings">聊天设置</string>
|
||||||
|
<string name="chat_theme_settings">设置聊天主题</string>
|
||||||
|
<string name="custom_background">自定义背景</string>
|
||||||
|
<string name="select_from_gallery">从相册选择</string>
|
||||||
|
<string name="featured_backgrounds">精选背景</string>
|
||||||
|
<string name="previewing_custom_background">正在预览自定义背景</string>
|
||||||
|
<string name="each_theme_unique_experience">每个主题都有自己独特的体验</string>
|
||||||
|
<string name="select_apply_to_use_theme">选择"应用"可选中这个主题</string>
|
||||||
|
<string name="tap_cancel_to_preview_other_themes">轻触"取消"可预览其他主题</string>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
<string name="text_hint_password">Enter your password</string>
|
<string name="text_hint_password">Enter your password</string>
|
||||||
<string name="sign_up_upper">Sign Up</string>
|
<string name="sign_up_upper">Sign Up</string>
|
||||||
<string name="sign_in_with_email">Connect with Email</string>
|
<string name="sign_in_with_email">Connect with Email</string>
|
||||||
<string name="sign_in_with_google">Connect with Google</string>
|
<string name="sign_in_with_google">Continue with Google</string>
|
||||||
<string name="back_upper">BACK</string>
|
<string name="back_upper">BACK</string>
|
||||||
<string name="text_hint_confirm_password">Enter your password again</string>
|
<string name="text_hint_confirm_password">Enter your password again</string>
|
||||||
<string name="login_confirm_password_label">Confirm password</string>
|
<string name="login_confirm_password_label">Confirm password</string>
|
||||||
@@ -125,7 +125,7 @@
|
|||||||
<string name="index_following">Following</string>
|
<string name="index_following">Following</string>
|
||||||
<string name="index_hot">Hot</string>
|
<string name="index_hot">Hot</string>
|
||||||
<string name="main_home">Home</string>
|
<string name="main_home">Home</string>
|
||||||
<string name="main_ai">Agent</string>
|
<string name="main_ai">AI</string>
|
||||||
<string name="main_message">Message</string>
|
<string name="main_message">Message</string>
|
||||||
<string name="main_profile">Profile</string>
|
<string name="main_profile">Profile</string>
|
||||||
<string name="agent_mine">Mine</string>
|
<string name="agent_mine">Mine</string>
|
||||||
@@ -145,6 +145,7 @@
|
|||||||
<string name="chat_ai">Ai</string>
|
<string name="chat_ai">Ai</string>
|
||||||
<string name="chat_group">Group</string>
|
<string name="chat_group">Group</string>
|
||||||
<string name="chat_friend">Friends</string>
|
<string name="chat_friend">Friends</string>
|
||||||
|
<string name="chatting_now">people chatting now…</string>
|
||||||
<string name="chat_all">All</string>
|
<string name="chat_all">All</string>
|
||||||
<string name="agent_chat_list_title">Agent Chat</string>
|
<string name="agent_chat_list_title">Agent Chat</string>
|
||||||
<string name="agent_chat_empty_title">No Agent Chat</string>
|
<string name="agent_chat_empty_title">No Agent Chat</string>
|
||||||
@@ -190,7 +191,9 @@
|
|||||||
<string name="agent_createing">Creating…</string>
|
<string name="agent_createing">Creating…</string>
|
||||||
<string name="agent_find">Discover</string>
|
<string name="agent_find">Discover</string>
|
||||||
<string name="text_error_password_too_long">Password cannot exceed %1$d characters</string>
|
<string name="text_error_password_too_long">Password cannot exceed %1$d characters</string>
|
||||||
|
<string name="block">Block</string>
|
||||||
|
<string name="read_full_article">Read full article</string>
|
||||||
|
|
||||||
<!-- Create Bottom Sheet -->
|
<!-- Create Bottom Sheet -->
|
||||||
<string name="create_title">Create</string>
|
<string name="create_title">Create</string>
|
||||||
<string name="create_ai">AI</string>
|
<string name="create_ai">AI</string>
|
||||||
@@ -217,4 +220,31 @@
|
|||||||
<string name="friend_chat_no_network_title">Offline…</string>
|
<string name="friend_chat_no_network_title">Offline…</string>
|
||||||
<string name="friend_chat_no_network_subtitle">Check your network to connect to this universe</string>
|
<string name="friend_chat_no_network_subtitle">Check your network to connect to this universe</string>
|
||||||
<string name="Reload">Reload</string>
|
<string name="Reload">Reload</string>
|
||||||
|
|
||||||
|
<!-- Login page -->
|
||||||
|
<string name="join_party_carnival">Join the party, let\'s celebrate together</string>
|
||||||
|
|
||||||
|
<!-- Tab labels -->
|
||||||
|
<string name="tab_recommend">Recommend</string>
|
||||||
|
<string name="tab_short_video">Short Video</string>
|
||||||
|
<string name="tab_news">News</string>
|
||||||
|
|
||||||
|
<!-- Block Confirm Dialog -->
|
||||||
|
<string name="confirm_block_user">Confirm block %1$s?</string>
|
||||||
|
<string name="block_description_1">They won\'t be able to send you messages or find your profile or content</string>
|
||||||
|
<string name="block_description_2">They won\'t receive a notification that you blocked them</string>
|
||||||
|
<string name="block_description_3">You can unblock them anytime in "Settings"</string>
|
||||||
|
|
||||||
|
<!-- Chat Settings -->
|
||||||
|
<string name="chat_settings">Chat Settings</string>
|
||||||
|
<string name="chat_theme_settings">Set Chat Theme</string>
|
||||||
|
<string name="custom_background">Custom Background</string>
|
||||||
|
<string name="select_from_gallery">Select from Gallery</string>
|
||||||
|
<string name="featured_backgrounds">Featured Backgrounds</string>
|
||||||
|
<string name="previewing_custom_background">Previewing Custom Background</string>
|
||||||
|
<string name="each_theme_unique_experience">Each theme has its own unique experience</string>
|
||||||
|
<string name="select_apply_to_use_theme">Select "Apply" to use this theme</string>
|
||||||
|
<string name="tap_cancel_to_preview_other_themes">Tap "Cancel" to preview other themes</string>
|
||||||
|
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||