summaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/components/env-main-info/env-main-info.js
blob: d866c0e9082fada5fd547e622e73ceb1716fb27d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) and others /
//                                                                                      /
// All rights reserved. This program and the accompanying materials                     /
// are made available under the terms of the Apache License, Version 2.0                /
// which accompanies this distribution, and is available at                             /
// http://www.apache.org/licenses/LICENSE-2.0                                           /
/////////////////////////////////////////////////////////////////////////////////////////
/*
 * Template Component: EnvMainInfo
 */

//import { Meteor } from 'meteor/meteor';
import { Template } from 'meteor/templating';
import { ReactiveDict } from 'meteor/reactive-dict';
import * as R from 'ramda';

import '/imports/ui/components/input-model/input-model';
import '/imports/ui/components/select-model/select-model';
import { createInputArgs } from '/imports/ui/lib/input-model';
import { createSelectArgs } from '/imports/ui/lib/select-model';
import { Constants } from '/imports/api/constants/constants';

import './env-main-info.html';

/*
 * Lifecycles
 */

Template.EnvMainInfo.onCreated(function () {
  let instance = this;

  instance.state = new ReactiveDict();
  instance.state.setDefault({
    action: null,
  });

  instance.autorun(function () {
    let action = Template.currentData().action;
    instance.state.set('action', action);

    instance.subscribe('constants');
  });

});

/*
Template.EnvironmentWizard.rendered = function(){
};
*/
 
/*
 * Helpers
 */

Template.EnvMainInfo.helpers({
  /*
  createInputArgs: function (params) {
    let instance = Template.instance();
    return {
      context: params.hash.context,
      key: params.hash.key,
      type: params.hash.type,
      placeholder: params.hash.placeholder,
      setModel: instance.data.setModel 
    };
  }*/
  createInputArgs: createInputArgs,

  createSelectArgs: createSelectArgs,

  distributionOptions: function () {
    let item = Constants.findOne({ name: 'distributions' });
    if (R.isNil(item)) { return []; }
    return item.data;
  },

  /* depracated 
  networkOptions: function () {
    let item = Constants.findOne({ name: 'network_plugins' });
    if (R.isNil(item))  { return []; }
    return item.data;
  },
  */
 
  typeDriversOptions: function () {
    let item = Constants.findOne({ name: 'type_drivers' });
    if (R.isNil(item))  { return []; }
    return item.data;
  },
 
  mechanismDriversOptions: function () {
    let item = Constants.findOne({ name: 'mechanism_drivers' });
    if (R.isNil(item))  { return []; }
    return item.data;
  },
 
  isFieldDisabled: function (fieldName, globalDisabled) {
    let instance = Template.instance();
    if (globalDisabled) { return true; }

    return  isDisabledByField(fieldName, instance.state.get('action'));
  }
});

/*
 * Events
 */

Template.EnvMainInfo.events({
  'click .sm-next-button': function () {
    let instance = Template.instance();
    instance.data.onNextRequested(); 
  }
});

function isDisabledByField(fieldName, actionName) {
  if (R.contains(fieldName, ['name', 'distribution']) && actionName !== 'insert') {
    return true;
  }
  
  return false;
}