4

HTML/TS/CSS由于 Angular 2 或 Angular 4 需要为每个组件编写太多代码。如果我将 Pattern lab 与 Angular 4 一起使用会怎样?

我认为使用 Pattern Lab 需要更多的维护,我们需要在其中编写更多代码来维护 Pattern lab 中的分子/原子和 JSON 文件。

您能否建议使用 Angular 2/4 的 Pattern Lab 好不好?

任何帮助将不胜感激!

4

2 回答 2

0

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

于 2018-12-12T06:58:51.393 回答
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");
         }
    }

})();
于 2018-07-05T12:36:01.713 回答