diff --git a/@salix/app/src/app.js b/@salix/app/src/app.js index a4cf9ee7c..6f2c434cc 100644 --- a/@salix/app/src/app.js +++ b/@salix/app/src/app.js @@ -1,3 +1,6 @@ import {bootstrap} from './bootstrap'; -import * as spliting from './spliting' +import * as spliting from './spliting'; +import * as routes from './routes'; + + bootstrap(); diff --git a/@salix/app/src/bootstrap.js b/@salix/app/src/bootstrap.js index cb1dcaf4a..0c9980703 100644 --- a/@salix/app/src/bootstrap.js +++ b/@salix/app/src/bootstrap.js @@ -13,5 +13,5 @@ export const bootstrap = () => { if (!_element) { throw new Error("element is not defined"); } - ng.bootstrap(_element, [NAME]); + ng.bootstrap(_element, [NAME]); }; \ No newline at end of file diff --git a/@salix/app/src/package.json b/@salix/app/src/package.json new file mode 100644 index 000000000..626726422 --- /dev/null +++ b/@salix/app/src/package.json @@ -0,0 +1,10 @@ +{ + "name": "@salix/core", + "version": "0.0.0", + "description": "", + "main": "index.js", + "repository": { + "type": "git", + "url": "http://git.verdnatura.es:/salix" + } +} diff --git a/@salix/app/src/routes.js b/@salix/app/src/routes.js new file mode 100644 index 000000000..4259fcd63 --- /dev/null +++ b/@salix/app/src/routes.js @@ -0,0 +1,21 @@ +import * as core from '@salix/core'; +import * as spliting from './spliting'; + + +core.module.config(function($stateProvider, $urlRouterProvider) { + + $urlRouterProvider.otherwise("/"); + + $stateProvider + .state('index', { + url: "/index", + template :'', + resolve: { + loader: function($ocLazyLoad, $q){ + return $q((resolve) => { + spliting.crud($ocLazyLoad, resolve); + }); + } + } + }) +}); diff --git a/@salix/app/src/spliting.js b/@salix/app/src/spliting.js index d0cbc59a1..36cf3121d 100644 --- a/@salix/app/src/spliting.js +++ b/@salix/app/src/spliting.js @@ -1,19 +1,20 @@ -const crud = () => { +export const crud = (lazy, resolve) => { require.ensure([], () => { - require('@salix/crud') + var module = require('@salix/crud'); + resolve(lazy.load({name:'crud'})); }, "salix.crud"); }; -const compras = () => { +export const compras = () => { require.ensure([], () => { require('@salix/compras') }, "salix.compras"); }; -const ventas = () => { +export const ventas = () => { require.ensure([], () => { require('@salix/ventas') }, "salix.ventas"); }; -const pagos = () => { +export const pagos = () => { require.ensure([], () => { require('@salix/pagos') }, "salix.pagos"); diff --git a/@salix/core/src/button/button.bt.js b/@salix/core/src/button/button.bt.js index bffd70bd1..7312e96b3 100644 --- a/@salix/core/src/button/button.bt.js +++ b/@salix/core/src/button/button.bt.js @@ -13,7 +13,7 @@ export function factory() { return { template: template, default: { - texto: DEFAULT_TEXT, + text: DEFAULT_TEXT, className: DEFAULT_CLASS, enabled: 'true', typeName: 'button' diff --git a/@salix/core/src/button/button.mt.html b/@salix/core/src/button/button.mt.html index 0ff8edbeb..211963288 100644 --- a/@salix/core/src/button/button.mt.html +++ b/@salix/core/src/button/button.mt.html @@ -1,3 +1,3 @@ - \ No newline at end of file diff --git a/@salix/core/src/button/button.mt.js b/@salix/core/src/button/button.mt.js index d1b28ced1..9f053d63f 100644 --- a/@salix/core/src/button/button.mt.js +++ b/@salix/core/src/button/button.mt.js @@ -13,7 +13,7 @@ export function factory() { return { template: template, default: { - texto: DEFAULT_TEXT, + text: DEFAULT_TEXT, className: DEFAULT_CLASS, enabled: 'true', typeName: 'button' diff --git a/@salix/core/src/check/check.bt.html b/@salix/core/src/check/check.bt.html new file mode 100644 index 000000000..4505aeb41 --- /dev/null +++ b/@salix/core/src/check/check.bt.html @@ -0,0 +1,2 @@ + + diff --git a/@salix/core/src/check/check.bt.js b/@salix/core/src/check/check.bt.js new file mode 100644 index 000000000..a5cf0bd45 --- /dev/null +++ b/@salix/core/src/check/check.bt.js @@ -0,0 +1 @@ +// por definir diff --git a/@salix/core/src/check/check.js b/@salix/core/src/check/check.js new file mode 100644 index 000000000..e6b3e282d --- /dev/null +++ b/@salix/core/src/check/check.js @@ -0,0 +1,18 @@ +import {module as _module} from '../module'; +import * as resolveFactory from '../resolveDefaultComponents'; +import * as util from '../util'; + +const _NAME = 'check'; +export const NAME = util.getName(_NAME); + +directive.$inject =[resolveFactory.NAME]; +export function directive (resolve){ + return{ + require:'E', + template: function(_,attr){ + return resolve.getTemplate(_NAME, attr); + } + } +} + +_module.directive(NAME,directive); diff --git a/@salix/core/src/check/check.mt.html b/@salix/core/src/check/check.mt.html new file mode 100644 index 000000000..13d98afe2 --- /dev/null +++ b/@salix/core/src/check/check.mt.html @@ -0,0 +1,3 @@ + + *[text]* + diff --git a/@salix/core/src/check/check.mt.js b/@salix/core/src/check/check.mt.js new file mode 100644 index 000000000..5c043ad4b --- /dev/null +++ b/@salix/core/src/check/check.mt.js @@ -0,0 +1,23 @@ +import {module as _module} from '../module'; +import * as util from '../util'; +import * as constant from '../constants'; +import template from './check.mt.html'; + +const _NAME = 'check'; +const DEFAULT_TEXT = 'check'; +const DEFAULT_CLASS = 'mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect'; + +export const NAME = util.getFactoryName(_NAME + constant.MATERIAL_DESIGN_FRAMEWORK); + +export function factory() { + return { + template: template, + default: { + text: DEFAULT_TEXT, + enabled: 'true', + className: DEFAULT_CLASS + } + } +} + +_module.factory(NAME, factory); diff --git a/@salix/core/src/core.js b/@salix/core/src/core.js index 511f8e75b..244e3735a 100644 --- a/@salix/core/src/core.js +++ b/@salix/core/src/core.js @@ -1,10 +1,22 @@ /** * export public module */ -export {NAME} from './module'; +export * from './module'; export * from './util'; export {NAME as RESOLVEDEFAULTCOMPONENT, ResolveDefaultComponent} from './resolveDefaultComponents' export {NAME as INTERPOLATE,Interpolate} from './interpolate' export {NAME as BUTTON,directive as ButtonDirective} from './button/button' export {NAME as BUTTONMT,factory as buttonmt} from './button/button.mt' export {NAME as BUTTONBT,factory as buttonbt} from './button/button.bt' +export {NAME as CHECK,directive as CheckDirective} from './check/check' +export {NAME as CHECKMT,factory as checknmt} from './check/check.mt' +export {NAME as CHECKBT,factory as checkbt} from './check/check.bt' +export {NAME as RADIO,directive as RadioDirective} from './radio/radio' +export {NAME as RADIOMT,factory as radionmt} from './radio/radio.mt' +export {NAME as RADIOBT,factory as radiobt} from './radio/radio.bt' +export {NAME as TEXTFIELD,directive as TextfieldDirective} from './textfield/textfield' +export {NAME as TEXTFIELDMT,factory as textfieldmt} from './textfield/textfield.mt' +export {NAME as TEXTFIELDBT,factory as textfieldbt} from './textfield/textfield.bt' +export {NAME as LABEL,directive as LabelDirective} from './label/label' +export {NAME as LABELMT,factory as labelmt} from './label/label.mt' +export {NAME as LABELBT,factory as labelbt} from './label/label.bt' \ No newline at end of file diff --git a/@salix/core/src/interpolate.js b/@salix/core/src/interpolate.js index f65e54dcb..cdcc387ff 100644 --- a/@salix/core/src/interpolate.js +++ b/@salix/core/src/interpolate.js @@ -1,16 +1,54 @@ import {module as _module} from './module'; import * as util from './util'; +import {ng} from '@salix/vendor' export const NAME = util.getProviderName('interpolate'); -export class Interpolate -{ - contructor (){ - this._startSymbol='*['; - - this._endSymbol = ']'; + + function minErr(){ + } + function stringify(value) { + if (value == null) { // null || undefined + return ''; + } + switch (typeof value) { + case 'string': + break; + case 'number': + value = '' + value; + break; + default: + value = angular.toJson(value); + } + + return value; + } + + var $interpolateMinErr =ng.angular.$interpolateMinErr = ng.$$minErr('$interpolate'); + + $interpolateMinErr.throwNoconcat = function (text) { + throw $interpolateMinErr('noconcat', + 'Error while interpolating: {0}\nStrict Contextual Escaping disallows ' + + 'interpolations that concatenate multiple expressions when a trusted value is ' + + 'required. See http://docs.angularjs.org/api/ng.$sce', text); + }; + + $interpolateMinErr.interr = function (text, err) { + return $interpolateMinErr('interr', 'Can\'t interpolate: {0}\n{1}', text, err.toString()); + }; + + + +export class Interpolate +{ + constructor (){ + this._startSymbol='*['; + + this._endSymbol = ']*'; + } + set startSymbol (value) { if (value) { this._startSymbol = value; @@ -27,20 +65,22 @@ export class Interpolate } else { return this._endSymbol; } - }; + }; + $get($parse, $exceptionHandler, $sce) { var startSymbolLength = this._startSymbol.length, endSymbolLength = this._endSymbol.length, escapedStartRegexp = new RegExp(this._startSymbol.replace(/./g, escape), 'g'), - escapedEndRegexp = new RegExp(this._endSymbol.replace(/./g, escape), 'g'); + escapedEndRegexp = new RegExp(this._endSymbol.replace(/./g, escape), 'g'), + self = this; function escape(ch) { return '\\\\\\' + ch; } function unescapeText(text) { - return text.replace(escapedStartRegexp, this._startSymbol). - replace(escapedEndRegexp, this._endSymbol); + return text.replace(escapedStartRegexp, self._startSymbol). + replace(escapedEndRegexp, self._endSymbol); } // TODO: this is the same as the constantWatchDelegate in parse.js @@ -52,10 +92,10 @@ export class Interpolate return unwatch; } - function $interpolate(text, mustHaveExpression, trustedContext, allOrNothing) - { + function $interpolate(text, mustHaveExpression, trustedContext, allOrNothing) + { // Provide a quick exit and simplified result function for text with no interpolation - if (!text.length || text.indexOf(this._startSymbol) === -1) + if (!text.length || text.indexOf(self._startSymbol) === -1) { var constantInterp; if (!mustHaveExpression) { @@ -80,12 +120,12 @@ export class Interpolate expressionPositions = []; while (index < textLength) { - if (((startIndex = text.indexOf(this._startSymbol, index)) !== -1) && - ((endIndex = text.indexOf(this._endSymbol, startIndex + this._startSymbolLength)) !== -1)) { + if (((startIndex = text.indexOf(self._startSymbol, index)) !== -1) && + ((endIndex = text.indexOf(self._endSymbol, startIndex + startSymbolLength)) !== -1)) { if (index !== startIndex) { concat.push(unescapeText(text.substring(index, startIndex))); } - exp = text.substring(startIndex + this._startSymbolLength, endIndex); + exp = text.substring(startIndex + startSymbolLength, endIndex); expressions.push(exp); parseFns.push($parse(exp, parseStringifyInterceptor)); index = endIndex + endSymbolLength; @@ -158,10 +198,10 @@ export class Interpolate $interpolate.endSymbol = function () { return endSymbol; }; - + return $interpolate; } } -_module.provider(NAME, Interpolate); +_module.provider(NAME, () => new Interpolate()); diff --git a/@salix/core/src/label/label.bt.html b/@salix/core/src/label/label.bt.html new file mode 100644 index 000000000..4505aeb41 --- /dev/null +++ b/@salix/core/src/label/label.bt.html @@ -0,0 +1,2 @@ + + diff --git a/@salix/core/src/label/label.bt.js b/@salix/core/src/label/label.bt.js new file mode 100644 index 000000000..a5cf0bd45 --- /dev/null +++ b/@salix/core/src/label/label.bt.js @@ -0,0 +1 @@ +// por definir diff --git a/@salix/core/src/label/label.js b/@salix/core/src/label/label.js new file mode 100644 index 000000000..fb59785d3 --- /dev/null +++ b/@salix/core/src/label/label.js @@ -0,0 +1,18 @@ +import {module as _module} from '../module'; +import * as resolveFactory from '../resolveDefaultComponents'; +import * as util from '../util'; + +const _NAME = 'label'; +export const NAME = util.getName(_NAME); + +directive.$inject =[resolveFactory.NAME]; +export function directive (resolve){ + return{ + require:'E', + template: function(_,attr){ + return resolve.getTemplate(_NAME, attr); + } + } +} + +_module.directive(NAME,directive); diff --git a/@salix/core/src/label/label.mt.html b/@salix/core/src/label/label.mt.html new file mode 100644 index 000000000..9f95f13b3 --- /dev/null +++ b/@salix/core/src/label/label.mt.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/@salix/core/src/label/label.mt.js b/@salix/core/src/label/label.mt.js new file mode 100644 index 000000000..3d1144510 --- /dev/null +++ b/@salix/core/src/label/label.mt.js @@ -0,0 +1,20 @@ +import {module as _module} from '../module'; +import * as util from '../util'; +import * as constant from '../constants'; +import template from './label.mt.html'; + +const _NAME = 'label'; +const DEFAULT_TEXT = 'label'; + +export const NAME = util.getFactoryName(_NAME + constant.MATERIAL_DESIGN_FRAMEWORK); + +export function factory() { + return { + template: template, + default: { + text: DEFAULT_TEXT + } + } +} + +_module.factory(NAME, factory); diff --git a/@salix/core/src/module.js b/@salix/core/src/module.js index 43b13f444..a3391528c 100644 --- a/@salix/core/src/module.js +++ b/@salix/core/src/module.js @@ -5,3 +5,4 @@ const DEPENDENCIES = getVendorDependencies(vendors) export const NAME = getModuleName('core'); export const module = vendors.ng.module(NAME,DEPENDENCIES); + diff --git a/@salix/core/src/radio/radio.bt.html b/@salix/core/src/radio/radio.bt.html new file mode 100644 index 000000000..4505aeb41 --- /dev/null +++ b/@salix/core/src/radio/radio.bt.html @@ -0,0 +1,2 @@ + + diff --git a/@salix/core/src/radio/radio.bt.js b/@salix/core/src/radio/radio.bt.js new file mode 100644 index 000000000..a5cf0bd45 --- /dev/null +++ b/@salix/core/src/radio/radio.bt.js @@ -0,0 +1 @@ +// por definir diff --git a/@salix/core/src/radio/radio.js b/@salix/core/src/radio/radio.js new file mode 100644 index 000000000..b84ffce6e --- /dev/null +++ b/@salix/core/src/radio/radio.js @@ -0,0 +1,18 @@ +import {module as _module} from '../module'; +import * as resolveFactory from '../resolveDefaultComponents'; +import * as util from '../util'; + +const _NAME = 'radio'; +export const NAME = util.getName(_NAME); + +directive.$inject =[resolveFactory.NAME]; +export function directive (resolve){ + return{ + require:'E', + template: function(_,attr){ + return resolve.getTemplate(_NAME, attr); + } + } +} + +_module.directive(NAME,directive); diff --git a/@salix/core/src/radio/radio.mt.html b/@salix/core/src/radio/radio.mt.html new file mode 100644 index 000000000..0d9e7e77c --- /dev/null +++ b/@salix/core/src/radio/radio.mt.html @@ -0,0 +1,2 @@ + + *[text]* diff --git a/@salix/core/src/radio/radio.mt.js b/@salix/core/src/radio/radio.mt.js new file mode 100644 index 000000000..1fee7e597 --- /dev/null +++ b/@salix/core/src/radio/radio.mt.js @@ -0,0 +1,23 @@ +import {module as _module} from '../module'; +import * as util from '../util'; +import * as constant from '../constants'; +import template from './radio.mt.html'; + +const _NAME = 'radio'; +const DEFAULT_TEXT = 'radio'; +const DEFAULT_CLASS = 'mdl-radio mdl-js-radio mdl-js-ripple-effect'; + +export const NAME = util.getFactoryName(_NAME + constant.MATERIAL_DESIGN_FRAMEWORK); + +export function factory() { + return { + template: template, + default: { + text: DEFAULT_TEXT, + enabled: 'true', + className: DEFAULT_CLASS + } + } +} + +_module.factory(NAME, factory); diff --git a/@salix/core/src/resolveDefaultComponents.js b/@salix/core/src/resolveDefaultComponents.js index 563361f74..4013a77d2 100644 --- a/@salix/core/src/resolveDefaultComponents.js +++ b/@salix/core/src/resolveDefaultComponents.js @@ -1,37 +1,39 @@ import {module as _module} from './module'; import * as util from './util'; import constant from './constants'; -import interpolate from './interpolate'; +import Interpolate from './interpolate'; export const NAME = util.getProviderName('ResolveDefaultComponent'); export class ResolveDefaultComponent { constructor(){ - this._name="mt"; + this._frameworkName="mt"; } set frameworkName(value){ //mt or bt this._frameworkName = value; } - $get($injector,interpolate){ + $get($injector,vnInterpolate){ //Service Locator return { getTemplate:function(name ,attr){ + this._frameworkName="mt"; let _name = util.getFactoryName( name + this._frameworkName); - let defaultfactory = $injector.has(_name) ? $injector.get():undefined; // vnbutonmtFactory + let defaultfactory = $injector.has(_name) ? $injector.get(_name):undefined; // vnbutonmtFactory if(!defaultfactory) { - throw new Error("factoty is not defined"); + throw new Error("factory is not defined"); } let defaultValues = defaultfactory.default; let template = defaultfactory.template; let scope = Object.assign(defaultValues || {},attr||{}); - return template && interpolate(template)(scope); + return template && vnInterpolate(template)(scope); } }; } } -_module.provider(NAME,ResolveDefaultComponent) +// _module.provider(NAME,ResolveDefaultComponent) +_module.provider(NAME,() => new ResolveDefaultComponent()); \ No newline at end of file diff --git a/@salix/core/src/textfield/textfield.bt.html b/@salix/core/src/textfield/textfield.bt.html new file mode 100644 index 000000000..4505aeb41 --- /dev/null +++ b/@salix/core/src/textfield/textfield.bt.html @@ -0,0 +1,2 @@ + + diff --git a/@salix/core/src/textfield/textfield.bt.js b/@salix/core/src/textfield/textfield.bt.js new file mode 100644 index 000000000..a5cf0bd45 --- /dev/null +++ b/@salix/core/src/textfield/textfield.bt.js @@ -0,0 +1 @@ +// por definir diff --git a/@salix/core/src/textfield/textfield.js b/@salix/core/src/textfield/textfield.js new file mode 100644 index 000000000..8cdbfe128 --- /dev/null +++ b/@salix/core/src/textfield/textfield.js @@ -0,0 +1,18 @@ +import {module as _module} from '../module'; +import * as resolveFactory from '../resolveDefaultComponents'; +import * as util from '../util'; + +const _NAME = 'textfield'; +export const NAME = util.getName(_NAME); + +directive.$inject =[resolveFactory.NAME]; +export function directive (resolve){ + return{ + require:'E', + template: function(_,attr){ + return resolve.getTemplate(_NAME, attr); + } + } +} + +_module.directive(NAME,directive); diff --git a/@salix/core/src/textfield/textfield.mt.html b/@salix/core/src/textfield/textfield.mt.html new file mode 100644 index 000000000..03c055503 --- /dev/null +++ b/@salix/core/src/textfield/textfield.mt.html @@ -0,0 +1,4 @@ +
+ + +
\ No newline at end of file diff --git a/@salix/core/src/textfield/textfield.mt.js b/@salix/core/src/textfield/textfield.mt.js new file mode 100644 index 000000000..7caf83369 --- /dev/null +++ b/@salix/core/src/textfield/textfield.mt.js @@ -0,0 +1,25 @@ +import {module as _module} from '../module'; +import * as util from '../util'; +import * as constant from '../constants'; +import template from './textfield.mt.html'; + +const _NAME = 'textfield'; +const DEFAULT_TEXT = 'text'; +const DEFAULT_CLASS = 'mdl-textfield__input'; +const DEFAULT_TYPE = 'text'; + +export const NAME = util.getFactoryName(_NAME + constant.MATERIAL_DESIGN_FRAMEWORK); + +export function factory() { + return { + template: template, + default: { + text: DEFAULT_TEXT, + enabled: 'enabled', + className: DEFAULT_CLASS, + type: DEFAULT_TYPE + } + } +} + +_module.factory(NAME, factory); diff --git a/@salix/crud/.gitignore b/@salix/crud/.gitignore new file mode 100644 index 000000000..b512c09d4 --- /dev/null +++ b/@salix/crud/.gitignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/@salix/crud/index.js b/@salix/crud/index.js index 9044df30e..9d8de2297 100644 --- a/@salix/crud/index.js +++ b/@salix/crud/index.js @@ -1,3 +1 @@ -import * as vendors from '@salix/vendor' -import * as core from '@salix/core' -console.log('crud'); \ No newline at end of file +export * from './src/crud'; \ No newline at end of file diff --git a/@salix/crud/package.json b/@salix/crud/package.json new file mode 100644 index 000000000..3f8fd3f3c --- /dev/null +++ b/@salix/crud/package.json @@ -0,0 +1,10 @@ +{ + "name": "@salix/crud", + "version": "0.0.0", + "description": "", + "main": "index.js", + "repository": { + "type": "git", + "url": "http://git.verdnatura.es:/salix" + } +} diff --git a/@salix/crud/src/crud.js b/@salix/crud/src/crud.js new file mode 100644 index 000000000..7d4627b16 --- /dev/null +++ b/@salix/crud/src/crud.js @@ -0,0 +1,4 @@ +export * from './module'; +export * from './customer/routes'; + +export {NAME as CUSTOMER_INDEX, COMPONENT as CUSTOMER_INDEX_COMPONENT} from './customer/index' \ No newline at end of file diff --git a/@salix/crud/src/customer/index/index.html b/@salix/crud/src/customer/index/index.html new file mode 100644 index 000000000..bf833f5d0 --- /dev/null +++ b/@salix/crud/src/customer/index/index.html @@ -0,0 +1 @@ +
index from component
\ No newline at end of file diff --git a/@salix/crud/src/customer/index/index.js b/@salix/crud/src/customer/index/index.js new file mode 100644 index 000000000..3f404ca5a --- /dev/null +++ b/@salix/crud/src/customer/index/index.js @@ -0,0 +1,14 @@ +import template from './index.html'; +import {module} from '../../module'; + +export const NAME = 'customerAdd'; +export const COMPONENT = { + template: template, + controller: function() { + this.user = {name: 'world'}; + } +}; + +module.component(NAME, COMPONENT); + + diff --git a/@salix/crud/src/customer/routes.js b/@salix/crud/src/customer/routes.js new file mode 100644 index 000000000..92032b153 --- /dev/null +++ b/@salix/crud/src/customer/routes.js @@ -0,0 +1,31 @@ +import * as core from '@salix/core'; +import * as index from './index'; + +core.module.config(function($stateProvider, $urlRouterProvider) { + + $urlRouterProvider.otherwise("/"); + + $stateProvider + .state('index', { + url: "/index", + component: index.CUSTOMER_INDEX, + resolve:{ + load:function(){ + console.log('hello'); + } + } + }) + .state('add', { + url: "/add", + template: "
add
" + }) + .state('edit', { + url: "/edit", + template: "
edit
" + }) + .state('delete', { + url: "/delete", + template: "
delete
" + }) + +}); diff --git a/@salix/crud/src/module.js b/@salix/crud/src/module.js new file mode 100644 index 000000000..39bbd2108 --- /dev/null +++ b/@salix/crud/src/module.js @@ -0,0 +1,12 @@ +import * as vendors from '@salix/vendor'; +import * as core from '@salix/core'; + +//import {getModuleName,getVendorDependencies} from './util'; + +export const NAME = 'crud'; +export const module = vendors.ng.module(NAME,[]); + + + + + diff --git a/@salix/vendor/src/angular-vendor.js b/@salix/vendor/src/angular-vendor.js index 8196ff52a..e18821ded 100644 --- a/@salix/vendor/src/angular-vendor.js +++ b/@salix/vendor/src/angular-vendor.js @@ -2,5 +2,7 @@ import * as _angular from 'angular'; export const ng = { module: _angular.module, - bootstrap: _angular.bootstrap + bootstrap: _angular.bootstrap, + $$minErr :_angular.$$minErr, + angular:_angular } diff --git a/@salix/vendor/src/materialdesignlite-vendor.js b/@salix/vendor/src/materialdesignlite-vendor.js new file mode 100644 index 000000000..7765281a9 --- /dev/null +++ b/@salix/vendor/src/materialdesignlite-vendor.js @@ -0,0 +1,4 @@ +import * as _materialdesignlite from 'material-design-lite'; +import * as css from 'material-design-lite/material.min.css'; + +export const materialdesignlite = _materialdesignlite; \ No newline at end of file diff --git a/@salix/vendor/src/vendor.js b/@salix/vendor/src/vendor.js index 343a9365a..5d9cded94 100644 --- a/@salix/vendor/src/vendor.js +++ b/@salix/vendor/src/vendor.js @@ -1,3 +1,4 @@ export * from './angular-vendor'; export * from './oclazyload-vendor'; -export * from './uirouter-vendor'; \ No newline at end of file +export * from './uirouter-vendor'; +export * from './materialdesignlite-vendor'; \ No newline at end of file diff --git a/index.html b/index.html index 48130766f..b506e8e60 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,16 @@ - - Salix + Salix -
- {{1+1}} -
- +
+
+ index + add + edit + delete +
+ diff --git a/npm-debug.log b/npm-debug.log deleted file mode 100644 index dc027a8b7..000000000 --- a/npm-debug.log +++ /dev/null @@ -1,26 +0,0 @@ -0 info it worked if it ends with ok -1 verbose cli [ '/usr/bin/nodejs', '/usr/bin/npm', 'run', 'dev' ] -2 info using npm@1.4.21 -3 info using node@v4.4.7 -4 verbose run-script [ 'predev', 'dev', 'postdev' ] -5 info predev salix-app@1.0.0 -6 info dev salix-app@1.0.0 -7 verbose unsafe-perm in lifecycle true -8 info salix-app@1.0.0 Failed to exec dev script -9 error salix-app@1.0.0 dev: `webpack --progress --colors --watch` -9 error Exit status 1 -10 error Failed at the salix-app@1.0.0 dev script. -10 error This is most likely a problem with the salix-app package, -10 error not with npm itself. -10 error Tell the author that this fails on your system: -10 error webpack --progress --colors --watch -10 error You can get their info via: -10 error npm owner ls salix-app -10 error There is likely additional logging output above. -11 error System Linux 4.7.0-1-amd64 -12 error command "/usr/bin/nodejs" "/usr/bin/npm" "run" "dev" -13 error cwd /home/juan/Proyectos/salix -14 error node -v v4.4.7 -15 error npm -v 1.4.21 -16 error code ELIFECYCLE -17 verbose exit [ 1, true ] diff --git a/package.json b/package.json index 20e5a8c38..9478c538e 100644 --- a/package.json +++ b/package.json @@ -10,20 +10,23 @@ }, "dependencies": { "angular": "^1.5.8", - "angular-ui-router": "^0.3.1", - "oclazyload": "^1.0.9" + "angular-ui-router": "^1.0.0-beta.3", + "material-design-lite": "^1.2.1", + "oclazyload": "^0.6.3" }, "devDependencies": { + "gulp": "^3.9.1", + "gulp-jsoncombine": "^1.0.3", "webpack": "*", "webpack-dev-server": "*", - "babel-core": "*", - "babel-preset-es2015": "*", - "babel-loader": "*", "raw-loader": "*", - "gulp": "^3.9.1", - "gulp-jsoncombine": "^1.0.3" + "css-loader": "^0.25.0", + "style-loader": "^0.13.1", + "babel-loader": "*", + "babel-core": "*", + "babel-preset-es2015": "*" }, "scripts": { - "dev": "webpack --progress --colors --watch" + "build": "webpack --progress --colors --watch" } } diff --git a/webpack.config.js b/webpack.config.js index d1693911e..2738ae85e 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -28,6 +28,9 @@ module.exports = },{ test: /\.json$/, loader: 'json' + },{ + test: /\.css$/, + loader: 'style!css' } ] },