Live Stream Interaction

Interaksi antara Merchant (hawker) dan Customer lewat fitur live streaming.

sequenceDiagram
    actor M as Merchant (Hawker)
    participant App as SendMerchant App
    participant Stream as Live Stream
    participant CApp as Send App
    actor C as Customer

    M->>App: Login → Go Live
    App->>Stream: Start livestream
    Note over M,Stream: Merchant masak sambil streaming

    C->>CApp: Browse active livestreams
    CApp->>Stream: Show list live hawkers
    C->>Stream: Tap livestream

    loop Live Interaction
        C->>Stream: Chat / tanya menu
        Stream->>M: Show chat
        M->>Stream: Balas / interaksi
    end

    C->>CApp: Lihat menu items
    C->>CApp: Add to cart
    C->>CApp: Place order

    CApp->>Stream: Order notification
    Stream->>M: Order masuk
    M->>App: Accept order
    M->>Stream: Siapkan makanan

    Note over M: Merchant bisa engage<br/>lebih aktif → order rate lebih tinggi
diagrams/customers/09-livestream-interaction.md
# Live Stream Interaction

Interaksi antara Merchant (hawker) dan Customer lewat fitur live streaming.

```mermaid
sequenceDiagram
    actor M as Merchant (Hawker)
    participant App as SendMerchant App
    participant Stream as Live Stream
    participant CApp as Send App
    actor C as Customer

    M->>App: Login → Go Live
    App->>Stream: Start livestream
    Note over M,Stream: Merchant masak sambil streaming

    C->>CApp: Browse active livestreams
    CApp->>Stream: Show list live hawkers
    C->>Stream: Tap livestream

    loop Live Interaction
        C->>Stream: Chat / tanya menu
        Stream->>M: Show chat
        M->>Stream: Balas / interaksi
    end

    C->>CApp: Lihat menu items
    C->>CApp: Add to cart
    C->>CApp: Place order

    CApp->>Stream: Order notification
    Stream->>M: Order masuk
    M->>App: Accept order
    M->>Stream: Siapkan makanan

    Note over M: Merchant bisa engage<br/>lebih aktif → order rate lebih tinggi
```