将Highcharts集成到Ember应用程序中

时间:2014-06-17 18:03:43

标签: ember.js highcharts ember-app-kit ember-cli

我发现这个recent article详细说明了如何使用默认的Ember集成Highcharts。我知道还有另外一篇关于同一主题的帖子,不过这也是在默认的Ember中完成的。

我正在尝试修改此代码以使用Ember App Kit和/或Ember-CLI

根据帖子,我使用了以下代码:

可重复使用的视图

HighChartsView = Ember.View.extend
  tagName: 'div'
  classNames: [ 'highcharts' ]
  chartConfig = {}

  setConfig: (type)->
    config = {
      chart:
        type: type
      title:
        text: @title || 'Highcharts'
      xAxis:
        categories: @dataset.categories || []
      yAxis:
        title:
          text: @yAxisTitle
      series: @series()
    }
    # Merge highcharts config if it is present
    Ember.merge(config, @highChartConfig) if @highChartConfig
    @set('chartConfig', config)

  series: ->
    @dataset.data

  prepareConfig: ->
    # if custom config is present then directly set it to chartConfig
    if @customHighChartConfig
      @set('chartConfig', @customHighChartConfig)
    else
      type = @type || 'line'
      @setConfig(type)

  didInsertElement: ->
    @prepareConfig()
    @renderHighchart()

  renderHighchart: ->
    @$().highcharts(@chartConfig)

`export default HighChartsView`

(此文件以high -charts-view.coffee的形式保存在我的根视图文件夹中)

图表数据:

dashData = Ember.ArrayController.extend
  dataset: {
    categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun','Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
    data: [{
      name: 'Tokyo',
      data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
    }, {
      name: 'New York',
      data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
    }, {
      name: 'Berlin',
      data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]
    }, {
      name: 'London',
      data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
    }]
  }

`export default dashData`

(这段代码是一个索引控制器,但我不知道放在哪里......但我认为它需要相对于图表出现的实际页面?即控制器/帐户/索引)

该示例还定义了一个单独的索引控制器

App.IndexController = Ember.ArrayController.extend
    highChartConfig: {
      yAxis: {
        title: {
            text: 'Temperature (°C)'
        },
        plotLines: [{
            value: 0,
            width: 1,
            color: '#808080'
        }]
      },
      tooltip: {
          valueSuffix: '°C'
        }
      }

(我还假设它应该是上面显示的同一个索引控制器的一部分?)

在模板中调用视图:

{{ view HighChartsView dataset=dataset highChartConfig=highChartConfig title="Sample Analytics" type="line" }}

(这位于我的/ accounts / index模板中)

我遇到了Assertion Failed错误,因为它无法找到路径HighChartsView。

我猜我没有正确命名我的文件,或者没有将文件放在正确的目录中并且解析器没有正确编译它们?还有一个问题是我发现的博客文章也不是很冗长,所以没有太多的背景来试图弄清楚应该/不应该发生什么......

1 个答案:

答案 0 :(得分:1)

k,所以在这种情况下,我会说你可能想要改变一些事情,首先,视图需要引用,

  {{view 'HighCharts' dataset=dataset highChartConfig=highChartConfig title="Sample Analytics" type="line" }}

其中两个数据集看起来应该是从路径返回的模型的一部分。

让我们从启动器的应用程序路径/控制器/模板中完成所有操作。

路由,它们用于管理状态http://emberjs.com/guides/routing/

var ApplicationRoute = Ember.Route.extend({
  model: function(){
    return {
      dataSet: this.dataSet,
      highChartConfig: this.highChartConfig
    }
  },
  dataSet:{},
  highChartConfig:{}
});

控制器,用于修饰模板的模型和/或逻辑。 Ember Handlebars not automatically putting model in scope

var ApplicationController = Ember.ObjectController.extend();