summaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/components/mt-select/mt-select.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/imports/ui/components/mt-select/mt-select.js')
-rw-r--r--ui/imports/ui/components/mt-select/mt-select.js91
1 files changed, 0 insertions, 91 deletions
diff --git a/ui/imports/ui/components/mt-select/mt-select.js b/ui/imports/ui/components/mt-select/mt-select.js
deleted file mode 100644
index 95190e2..0000000
--- a/ui/imports/ui/components/mt-select/mt-select.js
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * Template Component: MtSelect
- */
-
-//import { Meteor } from 'meteor/meteor';
-import { Template } from 'meteor/templating';
-import { SimpleSchema } from 'meteor/aldeed:simple-schema';
-import * as R from 'ramda';
-//import { ReactiveDict } from 'meteor/reactive-dict';
-
-import './mt-select.html';
-
-/*
- * Lifecycles
- */
-
-Template.MtSelect.onCreated(function() {
- let instance = this;
-
- instance.autorun(function () {
- let data = Template.currentData();
-
- instance.autorun(function () {
- new SimpleSchema({
- classStr: { type: String, optional: true },
- selectedValue: { type: String, optional: true },
- isDisabled: { type: Boolean, optional: true },
- options: { type: [Object], blackbox: true },
- onInput: { type: Object, blackbox: true },
- size: { type: Number, optional: true },
- }).validate(data);
- });
- });
-
- instance.autorun(function () {
- let data = Template.currentData();
-
- instance.onInput = function (value) {
- R.when(R.pipe(R.isNil, R.not), x => x(value))(R.path(['onInput', 'fn'], data));
- };
- });
-});
-
-/*
-Template.MtSelect.rendered = function() {
-};
-*/
-
-/*
- * Events
- */
-
-Template.MtSelect.events({
- 'change .sm-mt-select': function (event, instance) {
- event.preventDefault();
- event.stopPropagation();
-
- let value = R.pipe(R.head, R.prop('value'))(event.target.selectedOptions);
- instance.onInput(value);
- },
-});
-
-/*
- * Helpers
- */
-
-Template.MtSelect.helpers({
- attrsSelect: function (isDisabled, size) {
- let attrs = {};
- if (isDisabled) {
- attrs = R.assoc('disabled', 'disabled', attrs);
- }
-
- if (size) {
- attrs = R.assoc('size', size, attrs);
- }
-
- return attrs;
- },
-
- attrOptSelected: function (currentValue, selectedValue) {
- let attrs = {};
- if (currentValue === selectedValue) {
- attrs = R.assoc('selected', 'selected', attrs);
- }
- return attrs;
- },
-
-}); // helpers
-
-