带角度4的图案实验室

时间:2017-10-09 06:55:24

标签: javascript angular patternlab.io

由于Angular 2或Angular 4需要在每个Component HTML/TS/CSS中写入太多代码。如果我将Pattern lab与Angular 4一起使用怎么办?

我认为使用模式实验室需要更多维护,我们需要在此编写更多代码来维护分子/原子以及模式实验室中的JSON文件。

你能否建议使用带有角度2/4的模式实验室是否良好?

任何帮助都会受到赞赏!

2 个答案:

答案 0 :(得分:0)

1) Yarn install

2) Yarn add angular

3) resources->assets->js->admin->app.module.js

4) app.module.js

      (function () {
                    'use strict';

                    var app = angular.module('App', [
                            'app.S1'
                    ], function ($httpProvider) {
        $httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-          urlencoded';
             $httpProvider.defaults.headers.post['X-Requested-With'] = 'XMLHttpRequest';
        $httpProvider.defaults.headers.put['Content-Type'] = 'application/x-www-form-       urlencoded';
            $httpProvider.defaults.headers.put['X-Requested-With'] = 'XMLHttpRequest';
        }).config(['$qProvider', function ($qProvider) {
            $qProvider.errorOnUnhandledRejections(false);
        }]);
    })();


5) Add dependency in webpackmix



mix.scripts([
         'node_modules/angular/angular.min.js'
],'public/js/main.plugin.js');

mix.babel([
             /*Main module for all*/
    'resources/assets/js/admin/app.module.js',

                /*Controller and services*/
            'resources/assets/js/admin/S1/S1.module.js',
            'resources/assets/js/admin/S1/S1.js',
],'public/js/admin.plugin.js');


6)  make folder in admin with name S1.

7) resources->assets->js->admin->S1->S1.module.js

8) S1.module.js


    (function(){
                'use strict';
                angular.module('app.S1', []);
    })();

9) resources->assets->js->admin->S1->S1.js

10)  S1.js

(function(){
    'use strict';

    angular.module('app.S1')
            .controller('s1Controller', s1Controller);

    /* @ngInject */
    function s1Controller($scope){
        /*jshint validthis: true */
         var vm = this;

         activate();

         function activate(){
             console.log("here call");
         }
    }

})();

答案 1 :(得分:0)

这取决于您的项目要求。如果两个以上的Web开发人员要同时工作,则意味着您需要彼此共享UI组件。此外,还需要针对不同的设计领域进行定制。因此,原子设计可帮助您创建UX / UI的最小部分。从原子,有机物开始,分子很容易变成模板。