Git Product home page Git Product logo

sublimeui5's Introduction

SublimeUI5

Sublime Text Package for SAPUI5/OpenUI5

Basic instructions

  • Go to your Sublime Text 2(3)/Packages directory (Check Preferences -> Browse Packages to find the location)
  • Git clone this repo.
  • Install STProjectMaker to enable templating. Ctrl-Shift-P Install STProjectMaker.
  • Add the following to the STProjectMaker User settings (Preferences -> Package Settings -> Project Maker) so that it can find the SublimeUI5 templates: { "template_path": "c:\\\\[sublime_install]\\\\Data\\\\Packages\\\\SublimeUI5\\\\Templates\\\\" } (Note that escaping of slashes is necessary on Windows)
  • Project -> Create Project or Ctrl-Shift-N to select a template.
  • Profit!

Introduction

SAPUI5 (Open Source version: OpenUI5) is a UI framework for modern HTML5 applications.

Works in Sublime Text 2 and Sublime Text 3.

Whatever others might tell you, you don't need to use Eclipse to develop apps in SAPUI5. If, like me, you use Sublime Text, you can use this package to help you. It contains snippets and templates for UI5. For more information on Sublime Text snippets, see the snippet documentation, and for more information on templates, see the STProjectMaker plugin, which I use to power the templates. Both snippets and templates make writing code by hand easier. At least for me.

Screencast

I've recorded a quick screencast to introduce you to the snippet and template usage with SublimeUI5: SublimeUI5 - Snippets & Templates for SAPUI5/OpenUI5.

Snippets

There are JavaScript, HTML and XML snippets, the latter being for building views in XML. I've made a stab at organising them along the same lines as the UI5 namespaces, with extra extensions to denote language or format.

For example, the snippet for the XML view based control 'IconTabBar' is in the Snippets/sap/m/ folder and is called IconTabBar.xml.sublime-snippet. All Sublime Text snippets end with the 'sublime-snippet' extension; I've added 'xml' to denote that this one is XML, and the IconTabBar camelcasing follows the actual control name standard too.

Here's what the snippet looks like:

<snippet>
    <tabTrigger>IconTabBar</tabTrigger>
    <scope>text.html, source.js</scope>
    <description>sap.m.IconTabBar JS</description>
    <content><![CDATA[
new sap.m.IconTabBar({
    items: [
        ${1:}
    ]
})
]]></content>
</snippet>

You can see the actual content that will be inserted (within the <![CDATA[...]]> section) and there's a placeholder which you'll be able to tab to and enter what you want, after you've invoked the snippet. Have a look at the screencase mentioned earlier to see how snippet insertion works. The snippet is only triggered in HTML and JavaScript contexts (see the <scope/> element), and to trigger it, you type "IconTabBar" and hit the key (see the <tabTrigger/> element).

There's also, in the same folder, IconTabBar.js.sublime-snippet. That's a JavaScript equivalent.

There are also some snippets in the jQuery.sap space, notably a few 'utility' ones such as log.js.sublime-snippet, which will help you generate a jQuery.sap.log.error|warning|info|debug('...') statement.

Note that regardless of which folder or subfolder any given snippet is in, Sublime Text will find it and make it available to you.

Templates

With the STProjectMaker you can have ready-built applications created for you, having specified where it should live, and some parameters that you might want to use (to replace placeholder variables for, say, your namespace, for example).

For the time being, I've fleshed out a set of configured templates, based on various UI5 application fundamentals:

  • Whether the views will be XML based (X) or JavaScript based (J) (not looking at HTML or JSON views yet)
  • Whether the root control will be sap.m.App for a smartphone-only style application, (A) or sap.m.SplitApp, for a split-screen master/detail scenario, commonly found in SAP Fiori (S)
  • Whether a Component-based application approach is to be used (C) or not (N)
  • Which navigation mechanism is to be employed; one based on the EventBus (E), or one based on Routing (R)

With this I've come up with short codes based on the letters above. The first couple of templates that I've created and made available as a first go are:

  • XACE - XML views, App-based, with Component, using EventBus for navigation.

  • XSCE - XML views, SplitApp-based, with Component, using EventBus for navigation.

Have a look in the Templates folder for more details.

Documentation on how to use the templates is coming soon!

sublimeui5's People

Contributors

qmacro avatar js1972 avatar fabiopagoti avatar derzyklop avatar thilo-dev avatar

Watchers

James Cloos avatar Hemendra Sabharwal avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.