繁体   English   中英

如何从 LiveView Phoenix 更新 LiveComponent

[英]how to update LiveComponent from LiveView Phoenix

我有一个LV作为..

page_live.ex

defmodule EverdeployWeb.PageLive do
  use EverdeployWeb, :live_view

  def mount(_params, session, socket) do
    if connected?(socket), do: send(self(), :add_branches)
    {:ok, assign(socket, current_user: session["current_user"], evercam_server_branches: [], loading: true)}
  end

  def handle_info(:add_branches, socket) do
    {:noreply, assign(socket, evercam_server_branches: Github.branches("evercam-server2"), loading: false)}
  end
end

在 html.leex 我有

<section id="cd-timeline" class="cd-container">
  <%= if @loading, do: "loading", else: "" %> 
  <%= for branch <- @evercam_server_branches do %>
    <%= live_component @socket, Server, id: branch.sha, branch: branch %>
  <% end %>
</section>

Server LiveComponent我有

<div class="cd-timeline-block">
  <div class="cd-timeline-img cd-picture">
    loading
  </div>

  <div class="cd-timeline-content">
    <h2><%= @branch.branch_name %></h2>
    <p>loading</p>
    <a href="#0" class="cd-read-more">Deploy</a>
    <span class="cd-date">loading</span>
  </div>
</div>

由于 LV 将挂载evercam_server_branches并将其发送到:live_view我只显示branch_name其他值将来自其他方法。

这基本上是Github.branch(repo, branch)但我不确定在哪里调用此方法并更新所有正在加载的值,现在在Server上,我将更新它们将从branch/2方法返回的值。

:live_view加载时一样。 我只想显示一个带有分支名称和加载图标的屏幕,然后在获取branch/2值后更新服务器。

我正在寻找方法,我怎么能在这里打电话

defmodule Server do
  use Phoenix.LiveComponent

end

并更新Server值?

您可以使用“mount”中的计时器调用更新 function,检查:

https://hexdocs.pm/phoenix_live_view/Phoenix.LiveView.html#connected?/1-examples

接下来,您需要通过send_update/2 https://hexdocs.pm/phoenix_live_view/Phoenix.LiveView.html#send_update/2更新每个组件

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM