使用elm-reactor和Elm嵌入HTML?

时间:2016-12-26 16:22:40

标签: elm elm-reactor

所以我一起尝试Elm和WebRTC。但是对于WebRTC,我需要一些互操作到javascript。所以我为WebRTC和main.js创建了一个带有所需脚本的index.html。

但是,我正在使用榆树反应堆。哪个超级好看。但是没有main.js.我可以使用elm-make创建它,但之后我必须手动更新它。

那么,有没有办法让榆树反应堆与嵌入式榆树一起工作?

注意:我正在使用Elm 0.18,最新的写作。

3 个答案:

答案 0 :(得分:4)

截至今天(0.18.0),正式您无法使用 elm-reactor 将您的应用程序嵌入到自定义HTML中。如果没有额外的设置,也无法使用 elm-reactor 进行端口订阅。

考虑使用Create Elm Appalternatives.

之类的内容

答案 1 :(得分:4)

您可能需要查看elm-live

它与elm-reactor具有相同的选项,但您可以使用自己的index.html

答案 2 :(得分:1)

如果您愿意破解,use your own index.html with elm reactor完全可能。只需将以下内容放在index.html文件中并在reactor中打开它(例如http://localhost:8000/src/index.html):

<html>

<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <link rel="stylesheet" href="styles.css"><!-- Put your styles in folder with index.html -->
</head>

<body>
  <div style="width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #9A9A9A; font-family: &#39;Source Sans Pro&#39;;">
    <div style="font-size: 3em;">Building your project!</div>
    <img src="/_reactor/waiting.gif">
    <div style="font-size: 1em">With new projects, I need a bunch of extra time to download packages.</div>
  </div>
</body>

<!-- Fonts and external JS and styles are available, I've put Ace for example -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.4/ace.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.4/theme-chrome.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.4/worker-lua.js"></script>

<!-- Put the name of your app here (my sources place in `src` forder) -->
<script type="text/javascript" src="/_compile/src/YourApp.elm"></script>

<!-- Removes splash and starts elm app. -->
<script type="text/javascript">
while (document.body.firstChild) {
  document.body.removeChild(document.body.firstChild);
}
runElmProgram();
</script>

</html>

如果您想使用端口或标记,请使用the following example(您需要Elm.App.fullscreen(flags)等来使用端口,但runElmProgram()显示错误):

<!doctype html>
<meta charset=utf-8>
<title>a title</title>
<link href=/bundle.css rel=stylesheet>
<body></body>
<script src="/_compile/Main.elm"></script> <!-- this will fail in production -->
<script src="/elm-bundle.js"></script> <!-- this will fail in development -->
<script>
var app
var flags = {}

try {
  app = Elm.App.fullscreen(flags)

  /* app.ports is now available */
} catch (e) {
  // this will run in case there are compile errors:
  var stylesheets = document.querySelectorAll('link')
  for (var i = 0; i < stylesheets.length; i++) {
    stylesheets[i].parentNode.removeChild(stylesheets[i])
  }
  runElmProgram()
}
</script>