Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New list blocks #230

Draft
wants to merge 54 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
81eeebd
Create index.js
inventionpro Jun 25, 2023
cac5705
Update index.js
inventionpro Jun 25, 2023
8e761a0
Update index.js
inventionpro Jun 25, 2023
6b3dc28
Create concat.js
inventionpro Jun 25, 2023
781d23b
Update concat.js
inventionpro Jun 25, 2023
a702e39
Update concat.js
inventionpro Jun 25, 2023
3c11755
Update concat.js
inventionpro Jun 25, 2023
b9e49e7
Update index.js
inventionpro Jun 25, 2023
5b70d36
Update concat.js
inventionpro Jun 25, 2023
7fbe8d2
Update concat.js
inventionpro Jun 25, 2023
7792005
Create copywithin.js
inventionpro Jun 25, 2023
0e97420
Update index.js
inventionpro Jun 25, 2023
fd5b60f
Update index.js
inventionpro Jun 26, 2023
f3cb67d
Create every.js
inventionpro Jun 26, 2023
a7a7318
Update every.js
inventionpro Jun 26, 2023
ec42e95
Update every.js
inventionpro Jun 26, 2023
0ab6027
Update every.js
inventionpro Jun 26, 2023
86ec0b6
Create every_element.js
inventionpro Jun 26, 2023
4cf4238
Create every_index.js
inventionpro Jun 26, 2023
b38db0a
Update index.js
inventionpro Jun 26, 2023
711cdd0
Update every_index.js
inventionpro Jun 26, 2023
6bde59e
Update every_index.js
inventionpro Jun 26, 2023
5f17d88
Update every_element.js
inventionpro Jun 26, 2023
877055b
Update every_element.js
inventionpro Jun 26, 2023
bf1b9f8
Update toolbox.js
inventionpro Jun 26, 2023
c06dc52
Update toolbox.js
inventionpro Jun 26, 2023
7b55077
Update toolbox.js
inventionpro Jun 26, 2023
65b614c
Update toolbox.js
inventionpro Jun 26, 2023
4fd5315
Update toolbox.js
inventionpro Jun 26, 2023
1d2d0d4
Update concat.js
inventionpro Jun 26, 2023
bc2c353
Update copywithin.js
inventionpro Jun 26, 2023
44b7a19
Update every.js
inventionpro Jun 26, 2023
fca0273
Update every_element.js
inventionpro Jun 26, 2023
3f365c7
Update every_index.js
inventionpro Jun 26, 2023
c5cc477
Create flat.js
inventionpro Jun 26, 2023
6d93652
Update index.js
inventionpro Jun 26, 2023
2454c9c
Update toolbox.js
inventionpro Jun 26, 2023
1d708e2
Update toolbox.js
inventionpro Jun 26, 2023
9cba5fe
Update index.js
inventionpro Jun 26, 2023
96249d6
Create foreach.js
inventionpro Jun 26, 2023
442fdcb
Update foreach.js
inventionpro Jun 26, 2023
126950a
Create foreach-elemnt.js
inventionpro Jun 26, 2023
890caf8
Rename foreach-elemnt.js to foreach-element.js
inventionpro Jun 26, 2023
0a84459
Rename foreach-element.js to foreach_element.js
inventionpro Jun 26, 2023
5135ec7
Update index.js
inventionpro Jun 26, 2023
fbfe789
Update index.js
inventionpro Jun 26, 2023
e595031
Update every_index.js
inventionpro Jun 26, 2023
e4634de
Update every_element.js
inventionpro Jun 26, 2023
b4a775b
Update foreach_element.js
inventionpro Jun 26, 2023
92ece9a
Update foreach.js
inventionpro Jun 26, 2023
cc6b75f
Update toolbox.js
inventionpro Jun 26, 2023
45e37a9
Update foreach.js
inventionpro Jun 26, 2023
ae64ebe
Update flat.js
inventionpro Jun 26, 2023
bf3a39a
Merge branch 'master' into patch-4
inventionpro Aug 16, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/blocks/invention/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
import "./fsh/"
import "./Other/"
import "./lists/"
38 changes: 38 additions & 0 deletions src/blocks/invention/lists/concat.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import Blockly from "blockly/core";

const blockName = "inv_list_concat";

const blockData = {
"message0": "concat %1 and %2",
"args0": [
{
"type": "input_value",
"name": "one",
"check": "Array"
},
{
"type": "input_value",
"name": "two",
"check": "Array"
}
],
"inputsInline": true,
"output": "Array",
"colour": "#745ba5",
"tooltip": "Returns a list that contains the elements of the imputed lists",
"helpUrl": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat"
}

Blockly.Blocks[blockName] = {
init: function() {
this.jsonInit(blockData);
}
};

Blockly.JavaScript[blockName] = function(block) {
var value_one = Blockly.JavaScript.valueToCode(block, 'one', Blockly.JavaScript.ORDER_ATOMIC);
var value_two = Blockly.JavaScript.valueToCode(block, 'two', Blockly.JavaScript.ORDER_ATOMIC);

var code = `${value_one}.concat(${value_two})`;
return [code, Blockly.JavaScript.ORDER_NONE];
};
50 changes: 50 additions & 0 deletions src/blocks/invention/lists/copywithin.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import Blockly from "blockly/core";

const blockName = "inv_list_copywithin";

const blockData = {
"message0": "copy within array %1 target %2 start %3 end %4",
"args0": [
{
"type": "input_value",
"name": "one",
"check": "Array"
},
{
"type": "input_value",
"name": "two",
"check": "Number"
},
{
"type": "input_value",
"name": "three",
"check": "Number"
},
{
"type": "input_value",
"name": "four",
"check": "Number"
}
],
"inputsInline": true,
"output": "Array",
"colour": "#745ba5",
"tooltip": "idk what this does use help url",
"helpUrl": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/copyWithin"
}

Blockly.Blocks[blockName] = {
init: function() {
this.jsonInit(blockData);
}
};

Blockly.JavaScript[blockName] = function(block) {
var value_one = Blockly.JavaScript.valueToCode(block, 'one', Blockly.JavaScript.ORDER_ATOMIC);
var value_two = Blockly.JavaScript.valueToCode(block, 'two', Blockly.JavaScript.ORDER_ATOMIC);
var value_three = Blockly.JavaScript.valueToCode(block, 'three', Blockly.JavaScript.ORDER_ATOMIC);
var value_four = Blockly.JavaScript.valueToCode(block, 'four', Blockly.JavaScript.ORDER_ATOMIC);

var code = `${value_one}.copyWithin(${value_two}, ${value_three}, ${value_four})`;
return [code, Blockly.JavaScript.ORDER_NONE];
};
40 changes: 40 additions & 0 deletions src/blocks/invention/lists/every.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import Blockly from "blockly/core";

const blockName = "inv_list_every";

const blockData = {
"message0": "on list %1 every value follows %2 ?",
"args0": [
{
"type": "input_value",
"name": "one",
"check": "Array"
},
{
"type": "input_value",
"name": "two",
"check": "Boolean"
}
],
"inputsInline": true,
"output": "Boolean",
"colour": "#745ba5",
"tooltip": "Tells you if every element on the list follows a test (boolean)",
"helpUrl": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every"
}

Blockly.Blocks[blockName] = {
init: function() {
this.jsonInit(blockData);
}
};

Blockly.JavaScript[blockName] = function(block) {
var value_one = Blockly.JavaScript.valueToCode(block, 'one', Blockly.JavaScript.ORDER_ATOMIC);
var value_two = Blockly.JavaScript.valueToCode(block, 'two', Blockly.JavaScript.ORDER_ATOMIC);

var code = `${value_one}.every(function(element, index, array) {
return ${value_two}
})`;
return [code, Blockly.JavaScript.ORDER_NONE];
};
24 changes: 24 additions & 0 deletions src/blocks/invention/lists/every_element.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import Blockly from "blockly/core";

const blockName = "inv_list_every_element";

const blockData = {
"message0": "current element on every",
"args0": [],
"inputsInline": true,
"output": null,
"colour": "#745ba5",
"tooltip": "Element currently being selected (for the every list block)",
"helpUrl": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every"
}

Blockly.Blocks[blockName] = {
init: function() {
this.jsonInit(blockData);
}
};

Blockly.JavaScript[blockName] = function() {
var code = `element`;
return [code, Blockly.JavaScript.ORDER_NONE];
};
24 changes: 24 additions & 0 deletions src/blocks/invention/lists/every_index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import Blockly from "blockly/core";

const blockName = "inv_list_every_index";

const blockData = {
"message0": "current index on every",
"args0": [],
"inputsInline": true,
"output": "Number",
"colour": "#745ba5",
"tooltip": "Index of the element currently being selected (for the every list block)",
"helpUrl": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every"
}

Blockly.Blocks[blockName] = {
init: function() {
this.jsonInit(blockData);
}
};

Blockly.JavaScript[blockName] = function() {
var code = `index`;
return [code, Blockly.JavaScript.ORDER_NONE];
};
38 changes: 38 additions & 0 deletions src/blocks/invention/lists/flat.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import Blockly from "blockly/core";

const blockName = "inv_list_flat";

const blockData = {
"message0": "flaten list %1 with depth %2",
"args0": [
{
"type": "input_value",
"name": "one",
"check": "Array"
},
{
"type": "input_value",
"name": "two",
"check": "Number"
}
],
"inputsInline": true,
"output": "Array",
"colour": "#745ba5",
"tooltip": "Makes arrays stored as arrays part of the main array, depth is optional",
"helpUrl": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flat"
}

Blockly.Blocks[blockName] = {
init: function() {
this.jsonInit(blockData);
}
};

Blockly.JavaScript[blockName] = function(block) {
var value_one = Blockly.JavaScript.valueToCode(block, 'one', Blockly.JavaScript.ORDER_ATOMIC);
var value_two = Blockly.JavaScript.valueToCode(block, 'two', Blockly.JavaScript.ORDER_ATOMIC);

var code = `${value_one}.flat(${value_two})`;
return [code, Blockly.JavaScript.ORDER_NONE];
};
40 changes: 40 additions & 0 deletions src/blocks/invention/lists/foreach.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import Blockly from "blockly/core";

const blockName = "inv_list_foreach";

const blockData = {
"message0": "for each in list %1 do %2",
"args0": [
{
"type": "input_value",
"name": "one",
"check": "Array"
},
{
"type": "input_statement",
"name": "two"
}
],
"inputsInline": true,
"previousStatement": null,
"nextStatement": null,
"colour": "#745ba5",
"tooltip": "Same as the one in loops category but code different",
"helpUrl": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach"
}

Blockly.Blocks[blockName] = {
init: function() {
this.jsonInit(blockData);
}
};

Blockly.JavaScript[blockName] = function(block) {
var value_one = Blockly.JavaScript.valueToCode(block, 'one', Blockly.JavaScript.ORDER_ATOMIC);
var statements_two = Blockly.JavaScript.statementToCode(block, 'two');

var code = `${value_one}.forEach(element => {
${statements_two}
})`;
return code;
};
24 changes: 24 additions & 0 deletions src/blocks/invention/lists/foreach_element.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import Blockly from "blockly/core";

const blockName = "inv_list_foreach_element";

const blockData = {
"message0": "current element on foreach",
"args0": [],
"inputsInline": true,
"output": null,
"colour": "#745ba5",
"tooltip": "Element currently being selected (for the foreach list block)",
"helpUrl": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach"
}

Blockly.Blocks[blockName] = {
init: function() {
this.jsonInit(blockData);
}
};

Blockly.JavaScript[blockName] = function() {
var code = `element`;
return [code, Blockly.JavaScript.ORDER_NONE];
};
8 changes: 8 additions & 0 deletions src/blocks/invention/lists/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import "./concat.js"
import "./copywithin.js"
import "./every.js"
import "./every_element.js"
import "./every_index.js"
import "./flat.js"
import "./foreach.js"
import "./foreach_element.js"
Loading