Giter Site home page Giter Site logo

Returning the Book Entity about booky HOT 2 OPEN

Urkman avatar Urkman commented on August 14, 2024 1
Returning the Book Entity

from booky.

Comments (2)

wilks7 avatar wilks7 commented on August 14, 2024

I am having a similar question/issue, I have the following and can't pass a value:

struct ChatAppEntity: AppEntity {
    let id: UUID
    @Property(title: "Title") var title: String

    init(chat: ChatEntity){
        self.id = UUID()
        self.title = chat.title
    }
}

struct OpenChatIntent: AppIntent {
    @Parameter(title: "Chat") var chat: ChatAppEntity?
    
    @MainActor
    func perform() async throws -> some ProvidesDialog {
        if let chat, let chatEntity: ChatEntity = try? CoreData.shared.fetch(with: chat.id) {
            NavigationManager.shared.navigateTo(chat: chatEntity)
        } else {
            NavigationManager.shared.navigateToList()
        }
        return .result(dialog: "Okay, opening.")
    }
}


struct StartChatIntent: AppIntent {
    static var openAppWhenRun = false

    @Parameter(title: "Title", description: "A title for the new chat", requestValueDialog: "What should the name be?")
    var title: String

    @MainActor
    func perform() async throws -> some ReturnsValue & ProvidesDialog {
        let appEntity = ChatAppEntity(chat)
        return .result(value: appEntity, dialog: "Added \(appEntity.title)")
    }
}

I don't understand how to use the RetunsValue in another AppIntent? I tried changing the perform's return type to IntentResult but I can't initialize OpenChatIntent with my value:

    @MainActor
    func perform() async throws -> some IntentResult {
        let chat: ChatEntity = CoreData.shared.createChat(title)
        let appEntity = ChatAppEntity(chat)
        return .result(value: appEntity, opensIntent: OpenChatIntent(chat: appEntity), dialog: "Added \(appEntity.title)")
    }

Is there a different variable declaration I need to declare on OpenChatIntent so it can accept the AppEntity value?

from booky.

 avatar commented on August 14, 2024

Parameter is not resolving its repeating same question. do you have any ideas?

from booky.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.