'use strict';
goog.provide('Blockly.JavaScript.Time');
goog.require('Blockly.JavaScript');
Blockly.CustomBlocks = Blockly.CustomBlocks || [];
Blockly.CustomBlocks.push('Time');
Blockly.Time = {
HUE: 270,
blocks: {}
};
// if time greater, less, between
// --- time compare --------------------------------------------------
Blockly.Time.blocks['time_compare_ex'] =
''
+ ' '
+ ' '
+ ' '
+ ' '
+ ' '
+ ' '
+ ' 12:00'
+ ' '
+ ' '
+ ' '
+ ' '
+ ' '
+ ' 18:00'
+ ' '
+ ' '
+ ' '
+ ' '
+ ' 14:00'
+ ' '
+ ' '
+ '';
Blockly.Blocks['time_compare_ex'] = {
init: function() {
this.appendDummyInput('TIME_TEXT')
.appendField(Blockly.Words['time_compare_ex'][systemLang]);
this.appendDummyInput('USE_ACTUAL_TIME')
.appendField(new Blockly.FieldCheckbox('TRUE', function (option) {
this.sourceBlock_.updateShape_(undefined, option);
}), 'USE_ACTUAL_TIME');
this.appendDummyInput()
.appendField(Blockly.Words['time_compare_is_ex'][systemLang]);
this.appendDummyInput('OPTION')
.appendField(new Blockly.FieldDropdown([
[Blockly.Words['time_compare_lt'][systemLang], '<'],
[Blockly.Words['time_compare_le'][systemLang], '<='],
[Blockly.Words['time_compare_gt'][systemLang], '>'],
[Blockly.Words['time_compare_ge'][systemLang], '>='],
[Blockly.Words['time_compare_eq'][systemLang], '=='],
[Blockly.Words['time_compare_bw'][systemLang], 'between'],
[Blockly.Words['time_compare_nb'][systemLang], 'not between']
], function (option) {
this.sourceBlock_.updateShape_((option === 'between' || option === 'not between'));
}), 'OPTION');
this.appendDummyInput()
.appendField(' ');
this.appendValueInput('START_TIME');
this.setInputsInline(true);
//this.setPreviousStatement(true, null);
//this.setNextStatement(true, null);
this.setOutput(true, 'Boolean');
this.setColour(Blockly.Time.HUE);
this.setTooltip(Blockly.Words['time_compare_ex_tooltip'][systemLang]);
this.setHelpUrl(Blockly.Words['time_compare_ex_help'][systemLang]);
},
mutationToDom: function() {
var container = document.createElement('mutation');
var option = this.getFieldValue('OPTION');
var use_actual_time = this.getFieldValue('USE_ACTUAL_TIME');
container.setAttribute('end_time', (option === 'between' || option === 'not between') ? 'true' : 'false');
container.setAttribute('actual_time', (use_actual_time === 'TRUE') ? 'true' : 'false');
return container;
},
domToMutation: function(xmlElement) {
this.updateShape_(xmlElement.getAttribute('end_time') === 'true', xmlElement.getAttribute('actual_time') === 'true');
},
updateShape_: function(isBetween, useActualTime) {
if (isBetween === undefined) {
isBetween = (this.getFieldValue('OPTION') === 'between' || this.getFieldValue('OPTION') === 'not between');
}
// Add or remove a delay Input.
var inputExists = this.getInput('END_TIME');
if (isBetween) {
if (!inputExists) {
inputExists = this.getInput('CUSTOM_TIME');
if (inputExists) {
this.removeInput('CUSTOM_TIME');
this.removeInput('CUSTOM_TEXT');
}
this.appendDummyInput('AND')
.appendField(Blockly.Words['time_compare_and'][systemLang]);
var input = this.appendValueInput('END_TIME');
var shadow = this.workspace.newBlock('text');
shadow.setShadow(true);
shadow.outputConnection.connect(input.connection);
shadow.setFieldValue('18:00', 'TEXT');
shadow.initSvg();
shadow.render();
}
} else if (inputExists) {
this.removeInput('END_TIME');
this.removeInput('AND');
}
if (useActualTime === undefined) {
useActualTime = this.getFieldValue('USE_ACTUAL_TIME') === 'TRUE';
}
inputExists = this.getInput('CUSTOM_TIME');
if (!useActualTime) {
this.getInput('TIME_TEXT').fieldRow[0].setText(Blockly.Words['time_compare_custom_ex'][systemLang]);
if (!inputExists) {
this.appendDummyInput('CUSTOM_TEXT')
.appendField(Blockly.Words['time_compare_ex_custom'][systemLang]);
this.appendValueInput('CUSTOM_TIME');
}
} else if (inputExists) {
this.getInput('TIME_TEXT').fieldRow[0].setText(Blockly.Words['time_compare_ex'][systemLang]);
this.removeInput('CUSTOM_TIME');
this.removeInput('CUSTOM_TEXT');
}
}
};
Blockly.JavaScript['time_compare_ex'] = function(block) {
var option = block.getFieldValue('OPTION');
var start_time = Blockly.JavaScript.valueToCode(block, 'START_TIME', Blockly.JavaScript.ORDER_ATOMIC);
var end_time = Blockly.JavaScript.valueToCode(block, 'END_TIME', Blockly.JavaScript.ORDER_ATOMIC);
var time = Blockly.JavaScript.valueToCode(block, 'CUSTOM_TIME', Blockly.JavaScript.ORDER_ATOMIC);
if (!end_time) end_time = null;
if (!time) time = null;
return ['compareTime(' + start_time + ', ' + end_time + ', "' + option + '", ' + time + ')', Blockly.JavaScript.ORDER_ATOMIC];
};
// if time greater, less, between
// --- time compare --------------------------------------------------
Blockly.Time.blocks['time_compare'] =
''
+ ' '
+ ' '
+ ' '
+ ' '
+ ' '
+ ' '
+ ' '
+ '';
Blockly.Blocks['time_compare'] = {
init: function() {
this.appendDummyInput()
.appendField(Blockly.Words['time_compare'][systemLang]);
this.appendDummyInput('OPTION')
.appendField(new Blockly.FieldDropdown([
[Blockly.Words['time_compare_lt'][systemLang], "<"],
[Blockly.Words['time_compare_le'][systemLang], "<="],
[Blockly.Words['time_compare_gt'][systemLang], ">"],
[Blockly.Words['time_compare_ge'][systemLang], ">="],
[Blockly.Words['time_compare_eq'][systemLang], "=="],
[Blockly.Words['time_compare_bw'][systemLang], "between"],
[Blockly.Words['time_compare_nb'][systemLang], "not between"]
], function (option) {
this.sourceBlock_.updateShape_((option === 'between' || option === 'not between'));
}), 'OPTION');
this.appendDummyInput()
.appendField(' ');
this.appendDummyInput('START_TIME')
.appendField(new Blockly.FieldTextInput('12:00'), 'START_TIME');
this.setInputsInline(true);
//this.setPreviousStatement(true, null);
//this.setNextStatement(true, null);
this.setOutput(true, 'Boolean');
this.setColour(Blockly.Time.HUE);
this.setTooltip(Blockly.Words['time_compare_tooltip'][systemLang]);
this.setHelpUrl(Blockly.Words['time_compare_help'][systemLang]);
},
mutationToDom: function() {
var container = document.createElement('mutation');
var option = this.getFieldValue('OPTION');
container.setAttribute('end_time', (option === 'between' || option === 'not between') ? 'true' : 'false');
return container;
},
domToMutation: function(xmlElement) {
this.updateShape_(xmlElement.getAttribute('end_time') === 'true');
},
updateShape_: function(isBetween) {
// Add or remove a delay Input.
var inputExists = this.getInput('END_TIME');
if (isBetween) {
if (!inputExists) {
this.appendDummyInput('AND')
.appendField(Blockly.Words['time_compare_and'][systemLang]);
this.appendDummyInput('END_TIME')
.appendField(new Blockly.FieldTextInput('18:00'), 'END_TIME');
}
} else if (inputExists) {
this.removeInput('END_TIME');
this.removeInput('AND');
}
}
};
Blockly.JavaScript['time_compare'] = function(block) {
var option = block.getFieldValue('OPTION');
var start_time = block.getFieldValue('START_TIME');
var end_time = block.getFieldValue('END_TIME');
if (!end_time) end_time = null;
return ['compareTime("' + start_time + '", "' + end_time + '", "' + option + '")', Blockly.JavaScript.ORDER_ATOMIC];
};
// --- get time --------------------------------------------------
Blockly.Words['time_get_yyyy.mm.dd'] .format = 'YYYY.MM.DD';
Blockly.Words['time_get_yyyy/mm/dd'] .format = 'YYYY/MM/DD';
Blockly.Words['time_get_yy.mm.dd'] .format = 'YY.MM.DD';
Blockly.Words['time_get_yy/mm/dd'] .format = 'YY/MM/DD';
Blockly.Words['time_get_dd.mm.yyyy'] .format = 'DD.MM.YYYY';
Blockly.Words['time_get_dd/mm/yyyy'] .format = 'DD/MM/YYYY';
Blockly.Words['time_get_dd.mm.yy'] .format = 'DD.MM.YY';
Blockly.Words['time_get_dd/mm/yy'] .format = 'DD/MM/YY';
Blockly.Words['time_get_mm/dd/yyyy'] .format = 'MM/DD/YYYY';
Blockly.Words['time_get_mm/dd/yy'] .format = 'MM/DD/YY';
Blockly.Words['time_get_dd.mm'] .format = 'DD.MM.';
Blockly.Words['time_get_dd/mm'] .format = 'DD/MM';
Blockly.Words['time_get_mm.dd'] .format = 'MM.DD';
Blockly.Words['time_get_mm/dd'] .format = 'MM/DD';
Blockly.Words['time_get_hh_mm'] .format = 'hh:mm';
Blockly.Words['time_get_hh_mm_ss'] .format = 'hh:mm:ss';
Blockly.Words['time_get_hh_mm_ss.sss'].format = 'hh:mm:ss.sss';
Blockly.Time.blocks['time_get'] =
''
+ ' '
+ ' '
+ ' '
+ ' '
+ ' '
+ ' '
+ ' '
+ '';
Blockly.Blocks['time_get'] = {
init: function() {
this.appendDummyInput()
.appendField(Blockly.Words['time_get'][systemLang]);
this.appendDummyInput('OPTION')
.appendField(new Blockly.FieldDropdown([
[Blockly.Words['time_get_object'][systemLang] , 'object'],
[Blockly.Words['time_get_ms'][systemLang] , 'ms'],
[Blockly.Words['time_get_s'][systemLang] , 's'],
[Blockly.Words['time_get_sid'][systemLang] , 'sid'],
[Blockly.Words['time_get_m'][systemLang] , 'm'],
[Blockly.Words['time_get_mid'][systemLang] , 'mid'],
[Blockly.Words['time_get_h'][systemLang] , 'h'],
[Blockly.Words['time_get_d'][systemLang] , 'd'],
[Blockly.Words['time_get_M'][systemLang] , 'M'],
[Blockly.Words['time_get_Mt'][systemLang] , 'Mt'],
[Blockly.Words['time_get_Mts'][systemLang] , 'Mts'],
[Blockly.Words['time_get_y'][systemLang] , 'y'],
[Blockly.Words['time_get_fy'][systemLang] , 'fy'],
[Blockly.Words['time_get_wdt'][systemLang] , 'wdt'],
[Blockly.Words['time_get_wdts'][systemLang] , 'wdts'],
[Blockly.Words['time_get_wd'][systemLang] , 'wd'],
[Blockly.Words['time_get_custom'][systemLang] , 'custom'],
[Blockly.Words['time_get_yyyy.mm.dd'][systemLang] , [Blockly.Words['time_get_yyyy.mm.dd'] .format]],
[Blockly.Words['time_get_yyyy/mm/dd'][systemLang] , [Blockly.Words['time_get_yyyy/mm/dd'] .format]],
[Blockly.Words['time_get_yy.mm.dd'][systemLang] , [Blockly.Words['time_get_yy.mm.dd'] .format]],
[Blockly.Words['time_get_yy/mm/dd'][systemLang] , [Blockly.Words['time_get_yy/mm/dd'] .format]],
[Blockly.Words['time_get_dd.mm.yyyy'][systemLang] , [Blockly.Words['time_get_dd.mm.yyyy'] .format]],
[Blockly.Words['time_get_dd/mm/yyyy'][systemLang] , [Blockly.Words['time_get_dd/mm/yyyy'] .format]],
[Blockly.Words['time_get_dd.mm.yy'][systemLang] , [Blockly.Words['time_get_dd.mm.yy'] .format]],
[Blockly.Words['time_get_dd/mm/yy'][systemLang] , [Blockly.Words['time_get_dd/mm/yy'] .format]],
[Blockly.Words['time_get_mm/dd/yyyy'][systemLang] , [Blockly.Words['time_get_mm/dd/yyyy'] .format]],
[Blockly.Words['time_get_mm/dd/yy'][systemLang] , [Blockly.Words['time_get_mm/dd/yy'] .format]],
[Blockly.Words['time_get_dd.mm'][systemLang] , [Blockly.Words['time_get_dd.mm'] .format]],
[Blockly.Words['time_get_dd/mm'][systemLang] , [Blockly.Words['time_get_dd/mm'] .format]],
[Blockly.Words['time_get_mm.dd'][systemLang] , [Blockly.Words['time_get_mm.dd'] .format]],
[Blockly.Words['time_get_mm/dd'][systemLang] , [Blockly.Words['time_get_mm/dd'] .format]],
[Blockly.Words['time_get_hh_mm'][systemLang] , [Blockly.Words['time_get_hh_mm'] .format]],
[Blockly.Words['time_get_hh_mm_ss'][systemLang] , [Blockly.Words['time_get_hh_mm_ss'] .format]],
[Blockly.Words['time_get_hh_mm_ss.sss'][systemLang] , [Blockly.Words['time_get_hh_mm_ss.sss'].format]]
], function (option) {
this.sourceBlock_.updateShape_(option === 'custom', option === 'wdt' || option === 'wdts' || option === 'Mt' || option === 'Mts');
}), 'OPTION');
this.setInputsInline(true);
this.setOutput(true);
this.setColour(Blockly.Time.HUE);
this.setTooltip(Blockly.Words['time_get_tooltip'][systemLang]);
this.setHelpUrl(Blockly.Words['time_get_help'][systemLang]);
},
mutationToDom: function() {
var container = document.createElement('mutation');
var option = this.getFieldValue('OPTION');
container.setAttribute('format', option === 'custom' ? 'true' : 'false');
container.setAttribute('language', option === 'wdt' || option === 'wdts' || option === 'Mt' || option === 'Mts' ? 'true' : 'false');
return container;
},
domToMutation: function(xmlElement) {
this.updateShape_(xmlElement.getAttribute('format') === 'true', xmlElement.getAttribute('language') === 'true');
},
updateShape_: function(isFormat, isLanguage) {
// Add or remove a delay Input.
var inputExists = this.getInput('FORMAT');
if (isFormat) {
if (!inputExists) {
this.appendDummyInput('FORMAT')
.appendField(' ')
.appendField(new Blockly.FieldTextInput(Blockly.Words['time_get_default_format'][systemLang]), 'FORMAT');
}
} else if (inputExists) {
this.removeInput('FORMAT');
}
inputExists = this.getInput('LANGUAGE');
if (isLanguage) {
if (!inputExists) {
var languages;
if (systemLang === 'en') {
languages = [['in english', 'en'], ['auf deutsch', 'de'], ['на русском', 'ru']];
} else if (systemLang === 'de') {
languages = [['auf deutsch', 'de'], ['in english', 'en'], ['на русском', 'ru']];
} else if (systemLang === 'ru') {
languages = [['на русском', 'ru'], ['in english', 'en'], ['auf deutsch', 'de']];
} else {
languages = [['in english', 'en'], ['auf deutsch', 'de'], ['на русском', 'ru']];
}
this.appendDummyInput('LANGUAGE')
.appendField(new Blockly.FieldDropdown(languages), 'LANGUAGE');
}
} else if (inputExists) {
this.removeInput('LANGUAGE');
}
}
};
Blockly.JavaScript['time_get'] = function(block) {
var option = block.getFieldValue('OPTION');
var format = block.getFieldValue('FORMAT');
var lang = block.getFieldValue('LANGUAGE');
var code;
if (option === 'object') {
code = '(new Date().getTime())';
} else if (option === 'ms') {
code = '(new Date().getMilliseconds())';
} else if (option === 's') {
code = '(new Date().getSeconds())';
} else if (option === 'sid') {
code = '(new Date().getHours() * 3600 + new Date().getMinutes() * 60 + new Date().getSeconds())';
} else if (option === 'm') {
code = '(new Date().getMinutes())';
} else if (option === 'mid') {
code = '(function () {var v = new Date(); return v.getHours() * 60 + v.getMinutes();})()';
} else if (option === 'h') {
code = '(new Date().getHours())';
} else if (option === 'd') {
code = '(new Date().getDate())';
} else if (option === 'M') {
code = '(new Date().getMonth() + 1)';
} else if (option === 'Mt') {
code = 'formatDate(new Date(), "OO", "' + lang + '")';
} else if (option === 'Mts') {
code = 'formatDate(new Date(), "O", "' + lang + '")';
} else if (option === 'y') {
code = '(new Date().getYear())';
} else if (option === 'fy') {
code = '(new Date().getFullYear())';
} else if (option === 'wdt') {
code = 'formatDate(new Date(), "WW", "' + lang + '")';
} else if (option === 'wdts') {
code = 'formatDate(new Date(), "W", "' + lang + '")';
} else if (option === 'wd') {
code = '(new Date().getDay() === 0 ? 7 : new Date().getDay())';
} else if (option === 'custom') {
code = 'formatDate(new Date(), "' + format + '")';
} else {
code = 'formatDate(new Date(), "' + option + '")';
}
return [code, Blockly.JavaScript.ORDER_ATOMIC];
};
// --- get astro time --------------------------------------------------
Blockly.Time.blocks['time_astro'] =
''
+ ' '
+ ' '
+ ' '
+ ' '
+ '';
Blockly.Blocks['time_astro'] = {
init: function() {
this.appendDummyInput()
.appendField(Blockly.Words['time_astro'][systemLang]);
this.appendDummyInput('TYPE')
.appendField(new Blockly.FieldDropdown([
[Blockly.Words['astro_sunriseText'][systemLang], 'sunrise'],
[Blockly.Words['astro_sunriseEndText'][systemLang], 'sunriseEnd'],
[Blockly.Words['astro_goldenHourEndText'][systemLang], 'goldenHourEnd'],
[Blockly.Words['astro_solarNoonText'][systemLang], 'solarNoon'],
[Blockly.Words['astro_goldenHourText'][systemLang], 'goldenHour'],
[Blockly.Words['astro_sunsetStartText'][systemLang], 'sunsetStart'],
[Blockly.Words['astro_sunsetText'][systemLang], 'sunset'],
[Blockly.Words['astro_duskText'][systemLang], 'dusk'],
[Blockly.Words['astro_nauticalDuskText'][systemLang], 'nauticalDusk'],
[Blockly.Words['astro_nightText'][systemLang], 'night'],
[Blockly.Words['astro_nightEndText'][systemLang], 'nightEnd'],
[Blockly.Words['astro_nauticalDawnText'][systemLang], 'nauticalDawn'],
[Blockly.Words['astro_dawnText'][systemLang], 'dawn'],
[Blockly.Words['astro_nadirText'][systemLang], 'nadir']
]), 'TYPE');
this.appendDummyInput('OFFSET')
.appendField(Blockly.Words['time_astro_offset'][systemLang])
.appendField(new Blockly.FieldTextInput('0'), 'OFFSET');
this.setInputsInline(true);
this.setOutput(true);
this.setColour(Blockly.Time.HUE);
this.setTooltip(Blockly.Words['time_astro_tooltip'][systemLang]);
this.setHelpUrl(Blockly.Words['time_astro_help'][systemLang]);
}
};
Blockly.JavaScript['time_astro'] = function(block) {
var type = block.getFieldValue('TYPE');
var offset = parseFloat(block.getFieldValue('OFFSET'));
return ['getAstroDate("' + type + '", undefined, ' + offset + ')', Blockly.JavaScript.ORDER_ATOMIC];
};