Skip to content

t2 setup

Nikolaj Ivancic edited this page Apr 2, 2016 · 2 revisions

Note: this document is a copy of the matching KendoUI Aurelia document. It needs to be updated to describe related Syncfusion EJ document


Similarly to the Setup page of the Application developers tutorial section, let's do something very simple as the first step in showing how to use the Aurelia skeleton plugin to create the initial few "wrappers" for KendoUI controls. Get it from here and use the Download ZIP method so we do not have to deal with Git issues in this simple context. After downloading this application, extract its content into the folder conveniently named skeleton-plugin-kendo and use these instructions to build this code.

2.1 Plan of actions (stated as "steps" below)

In order to simplify this set of tutorials we will take a slight tack away from the "embedded application" approach described in introduction section of the About this application help page. In order to verify the correctness of our wrappers code, we will use the application developed in the App developers tutorials, to act in the role of the "consumer" of our newly created wrappers. Here is how to we do this:

Having the standard Aurelia Skeleton Plugin installed (unzipped) and built, we need to do several changes to get everything ready for development of KendoUI components



Image 1

Step 1

Replace the original content of the src folder with the folders and (empty) files shown on Image 2 below:



Image 2

We will define the content for autocomplete.js, button.js, chart.js and grid.js files in subsequent tutorials pages, starting with Autocomplete component first.

Step 2

Replace the complete content of the package.json file with the content of this package.json file. Make sure that you replace all references to https://github.com/aurelia-ui-toolkits/skeleton-plugin-kendo with the "path" to your own repository to be used in the course of these tutorials.

Step 3

Edit the "root level" config.js file and ensure that the lines 8, 9 and 15 are as shown in the code section below (in particular is is the line 15 - 'kendo-ui/*': 'vendors/*' that sets this project to use the settings defined in the "HAVING KENDOUI ALREADY: VENDORS" tab on the Installation page)

System.config({
  defaultJSExtensions: true,
  transpiler: "babel",
  babelOptions: {
    "optional": [
      "runtime",
      "optimisation.modules.system",
      "es7.decorators",
      "es7.classProperties"
    ]
  },
  paths: {
    "github:*": "jspm_packages/github/*",
    "npm:*": "jspm_packages/npm/*",
    "kendo-ui/*": "vendors/*"
  },

  map: {
    "aurelia-binding": "npm:[email protected]",
    "aurelia-bootstrapper": "npm:[email protected]",
    "aurelia-dependency-injection": "npm:[email protected]",
    "aurelia-framework": "npm:[email protected]",
    ...



Step 4

Add the the following code to define the file index.js - this is the plugin's interface to the consumer application, used for plugin initialization.

import {Aurelia} from 'aurelia-framework';
import * as LogManager from 'aurelia-logging';
let logger = LogManager.getLogger('aurelia-kendoui-plugin');
import {KendoConfigBuilder} from './config-builder';
import 'jquery';

export function configure(aurelia: Aurelia, configCallback?: (builder: KendoConfigBuilder) => void) {
  let builder = new KendoConfigBuilder();

  if (configCallback !== undefined && typeof(configCallback) === 'function') {
    configCallback(builder);
  }

    // Provide core if nothing was specified
  if (builder.resources.length === 0) {
    logger.warn('Nothing specified for kendo configuration - using defaults for Kendo Core');
    builder.core();
  }

    // Pull the data off the builder
  let resources = builder.resources;

  if (builder.useGlobalResources) {
    aurelia.globalResources(resources);
  }
}



Step 5

Add the the following code to define the file config-builder.js - this is the tool that creates the final content of the index.js - interface to the consumer application, used for plugin initialization.

/**
* Configure the Aurelia-KendoUI-plugin
*/
export class KendoConfigBuilder {

  resources: string[] = [];
  useGlobalResources: boolean = true;

  /**
  * Globally register all Kendo Core wrappers
  */
  core(): KendoConfigBuilder {
    this.kendoAutoComplete()
      .kendoButton()
      .kendoTemplateSupport();
    return this;
  }

  /**
  * Globally register all Kendo Core and Kendo Pro wrappers
  */
  pro(): KendoConfigBuilder {
    this.core()
      .kendoGrid()
      .kendoChart();
    return this;
  }

  /**
  * Don't globalize any resources
  * Allows you to import wrappers yourself via <require></require>
  */
  withoutGlobalResources(): KendoConfigBuilder {
    this.useGlobalResources = false;
    return this;
  }

    /**
  * Registers value converters (wrappers around kendo functions)
  */
  useValueConverters(): KendoConfigBuilder {
    this.resources.push('valueconverters/valueconverters');
    return this;
  }

  /**
  * Adds kendo templating support
  */
  kendoTemplateSupport(): KendoConfigBuilder {
    this.resources.push('common/k-template');
    return this;
  }

  kendoAutoComplete(): KendoConfigBuilder {
    this.resources.push('autocomplete/autocomplete');
    return this;
  }

  kendoButton(): KendoConfigBuilder {
    this.resources.push('button/button');
    return this;
  }

  kendoGrid(): KendoConfigBuilder {
    this.resources.push('grid/grid');
    this.resources.push('grid/k-col');
    return this;
  }

  kendoChart(): KendoConfigBuilder {
    this.resources.push('chart/chart');
    return this;
  }
}



Step 6

This is not an action step - it is rather a reminder that the document Bridge utilities has the explanations and the code for all functionality that Aurelia UI Toolkits team created to simplify the process of building this bridge.



#### Next page: [Autocomplete component](#/help/docs/bridge_developers_tutorials/3._autocomplete_component)