浏览代码

chore(example): remove example file and add links

bergquist 9 年之前
父节点
当前提交
69de3bcfc7

+ 3 - 2
examples/README.md

@@ -1,4 +1,5 @@
 ## Example plugin implementations
 
-datasource:[simple-json-datasource](https://github.com/grafana/simple-json-datasource)
-app:  [example-app](https://github.com/grafana/example-app)
+datasource:[simple-json-datasource](https://github.com/grafana/grafana-simple-json-datasource)
+app:  [example-app](https://github.com/grafana/grafana-example-app)
+panel: [grafana-piechart-panel](https://github.com/grafana/piechart-panel)

+ 0 - 3
examples/boilerplate-es5-panel/css/styles.css

@@ -1,3 +0,0 @@
-.panel-boilerplate-values {
-  text-align: center;
-}

+ 0 - 53
examples/boilerplate-es5-panel/module.js

@@ -1,53 +0,0 @@
-define([
-  'app/plugins/sdk',
-  'lodash',
-  './css/styles.css!'
-], function(sdk, _) {
-
-  var BoilerPlatePanelCtrl = (function(_super) {
-    var self;
-
-    function BoilerPlatePanelCtrl($scope, $injector) {
-      _super.call(this, $scope, $injector);
-
-      this.results = []
-
-      self = this;
-    }
-
-    // you do not need a templateUrl,  you can use a inline template here
-    // BoilerPlatePanelCtrl.template = '<h2>boilerplate</h2>';
-
-    // all panel static assets can be accessed via 'public/plugins/<plugin-id>/<file>
-    BoilerPlatePanelCtrl.templateUrl = 'panel.html';
-
-    BoilerPlatePanelCtrl.prototype = Object.create(_super.prototype);
-    BoilerPlatePanelCtrl.prototype.constructor = BoilerPlatePanelCtrl;
-
-    BoilerPlatePanelCtrl.prototype.refreshData = function(datasource) {
-      this.issueQueries(datasource)
-        .then(function(result) {
-          self.results = [];
-          _.each(result.data, function(target) {
-            var last = _.last(target.datapoints)
-            self.results.push(last[0]);
-          });
-
-          self.render();
-        });
-    }
-
-    BoilerPlatePanelCtrl.prototype.render = function() {
-      this.values = this.results.join(',');
-    }
-
-    return BoilerPlatePanelCtrl;
-
-  })(sdk.MetricsPanelCtrl);
-
-
-  return {
-    PanelCtrl: BoilerPlatePanelCtrl
-  };
-});
-

+ 0 - 7
examples/boilerplate-es5-panel/panel.html

@@ -1,7 +0,0 @@
-<h2 class="text-center">
-	Basic panel
-</h2>
-
-<p class="panel-boilerplate-values">{{ctrl.values}}</p>
-
-

+ 0 - 6
examples/boilerplate-es5-panel/plugin.json

@@ -1,6 +0,0 @@
-{
-  "type": "panel",
-  "name": "Panel Boilerplate",
-  "id": "panel-boilerplate-es5",
-  "staticRoot": "."
-}