Today we'll start to make products list page. For output product info we'll use md-card directive and children directives to show product image and other pieces of product info....
JavaScript
AngularJS + AngularJS Material + WooCommerce API. Create filter and delete order
We will finish Orders page in this lesson. We'll create filter for order status output and write method for order delete. Notice to create filter in AngularJS you need to call framework filter method, which returns function, handling input parameter and return it in...
AngularJS + AngularJS Material + WooCommerce API. Orders list page template
Last lesson we got orders list from our Woocommerce e-shop. Today we will make the template for rendering orders list using AngularJS Material. AngularJS has its own template system - the layout system, based on flex layout. Also it has capability to create responsive...
AngularJS + AngularJS Material + WooCommerce API. Request example
In this lesson we'll make first request to woocommerce api, getting all our shop orders....
AngularJS + AngularJS Material + WooCommerce API. App routing
We continue creating web application with WooCommerce API, AngularJS and AngularJS Material. Today we'll make configuration for our app. For routing configuration in AngularJS apps $routeProvider is using. Also for human readable urls we will use $locationProvider...
AngularJS + AngluaJS Material + WooCommerce API. Project file structure
In this lesson we'll resume simple dashboard creation based on WooCommerce API with using AngularJS and AngularJS Material. Today we'll define project file structure, include all required scripts and styles...
New javascript features overview. Part three
In last part of new javascript features lessons we will talk about modules. Modules let us to create more structured code. It's important to understand, modules can be exported and imported. Keywords export and import use for it....
New javascript features overview. Part two
In last lesson we began considering new modern javascript features.Today we'll consider another of it. Today we will talk about async/await - the new way to work with promises; new javascript data structure - Map and Set and also "syntax sugar" - classes....
New javascript features overview. Part one
JavaScript is extension of ECMAScript language. One of the largest ECMAScript update for developers is ECMAScript 2015 (ECMAScript 6). Today we'll consider some of new features of ECMAScript. In this lesson we'll look at some modern Javascript features: variables (new...