Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
ardublockly
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
ardublockly
Commits
4db568a9
Commit
4db568a9
authored
Feb 02, 2015
by
Neil Fraser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add help URLs to Block Factory.
parent
984d3559
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
94 additions
and
69 deletions
+94
-69
blockly_uncompressed.js
blockly_uncompressed.js
+66
-65
demos/blockfactory/blocks.js
demos/blockfactory/blocks.js
+28
-4
No files found.
blockly_uncompressed.js
View file @
4db568a9
This source diff could not be displayed because it is too large. You can
view the blob
instead.
demos/blockfactory/blocks.js
View file @
4db568a9
...
...
@@ -62,6 +62,8 @@ Blockly.Blocks['factory_base'] = {
*/
this
.
setTooltip
(
'
Build a custom block by plugging
\n
'
+
'
fields, inputs and other blocks here.
'
);
this
.
setHelpUrl
(
'
https://developers.google.com/blockly/custom-blocks/block-factory
'
);
},
mutationToDom
:
function
()
{
var
container
=
document
.
createElement
(
'
mutation
'
);
...
...
@@ -130,6 +132,7 @@ Blockly.Blocks['input_value'] = {
this
.
setPreviousStatement
(
true
,
'
Input
'
);
this
.
setNextStatement
(
true
,
'
Input
'
);
this
.
setTooltip
(
'
A value socket for horizontal connections.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=71
'
);
},
onchange
:
function
()
{
if
(
!
this
.
workspace
)
{
...
...
@@ -158,6 +161,7 @@ Blockly.Blocks['input_statement'] = {
this
.
setPreviousStatement
(
true
,
'
Input
'
);
this
.
setNextStatement
(
true
,
'
Input
'
);
this
.
setTooltip
(
'
A statement socket for enclosed vertical stacks.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=246
'
);
},
onchange
:
function
()
{
if
(
!
this
.
workspace
)
{
...
...
@@ -180,10 +184,10 @@ Blockly.Blocks['input_dummy'] = {
.
appendField
(
new
Blockly
.
FieldDropdown
(
ALIGNMENT_OPTIONS
),
'
ALIGN
'
);
this
.
setPreviousStatement
(
true
,
'
Input
'
);
this
.
setNextStatement
(
true
,
'
Input
'
);
this
.
setTooltip
(
'
For adding fields on a separate
\n
'
+
'
row with no connections.
\n
'
+
'
Alignment options (left, right, centre)
\n
'
+
this
.
setTooltip
(
'
For adding fields on a separate row with no
'
+
'
connections. Alignment options (left, right, centre)
'
+
'
apply only to multi-line fields.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=293
'
);
}
};
...
...
@@ -197,6 +201,7 @@ Blockly.Blocks['field_static'] = {
this
.
setPreviousStatement
(
true
,
'
Field
'
);
this
.
setNextStatement
(
true
,
'
Field
'
);
this
.
setTooltip
(
'
Static text that serves as a label.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=88
'
);
}
};
...
...
@@ -212,6 +217,7 @@ Blockly.Blocks['field_input'] = {
this
.
setPreviousStatement
(
true
,
'
Field
'
);
this
.
setNextStatement
(
true
,
'
Field
'
);
this
.
setTooltip
(
'
An input field for the user to enter text.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=319
'
);
},
onchange
:
function
()
{
if
(
!
this
.
workspace
)
{
...
...
@@ -234,6 +240,7 @@ Blockly.Blocks['field_angle'] = {
this
.
setPreviousStatement
(
true
,
'
Field
'
);
this
.
setNextStatement
(
true
,
'
Field
'
);
this
.
setTooltip
(
'
An input field for the user to enter an angle.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=372
'
);
},
onchange
:
function
()
{
if
(
!
this
.
workspace
)
{
...
...
@@ -267,6 +274,7 @@ Blockly.Blocks['field_dropdown'] = {
this
.
setNextStatement
(
true
,
'
Field
'
);
this
.
setMutator
(
new
Blockly
.
Mutator
([
'
field_dropdown_option
'
]));
this
.
setTooltip
(
'
Dropdown menu with a list of options.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=386
'
);
this
.
optionCount_
=
3
;
},
mutationToDom
:
function
(
workspace
)
{
...
...
@@ -354,6 +362,7 @@ Blockly.Blocks['field_dropdown_container'] = {
this
.
appendStatementInput
(
'
STACK
'
);
this
.
setTooltip
(
'
Add, remove, or reorder options
\n
'
+
'
to reconfigure this dropdown menu.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=386
'
);
this
.
contextMenu
=
false
;
}
};
...
...
@@ -367,6 +376,7 @@ Blockly.Blocks['field_dropdown_option'] = {
this
.
setPreviousStatement
(
true
);
this
.
setNextStatement
(
true
);
this
.
setTooltip
(
'
Add a new option to the dropdown menu.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=386
'
);
this
.
contextMenu
=
false
;
}
};
...
...
@@ -383,6 +393,7 @@ Blockly.Blocks['field_checkbox'] = {
this
.
setPreviousStatement
(
true
,
'
Field
'
);
this
.
setNextStatement
(
true
,
'
Field
'
);
this
.
setTooltip
(
'
Checkbox field.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=485
'
);
},
onchange
:
function
()
{
if
(
!
this
.
workspace
)
{
...
...
@@ -405,6 +416,7 @@ Blockly.Blocks['field_colour'] = {
this
.
setPreviousStatement
(
true
,
'
Field
'
);
this
.
setNextStatement
(
true
,
'
Field
'
);
this
.
setTooltip
(
'
Colour input field.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=495
'
);
},
onchange
:
function
()
{
if
(
!
this
.
workspace
)
{
...
...
@@ -427,6 +439,7 @@ Blockly.Blocks['field_variable'] = {
this
.
setPreviousStatement
(
true
,
'
Field
'
);
this
.
setNextStatement
(
true
,
'
Field
'
);
this
.
setTooltip
(
'
Dropdown menu for variable names.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=510
'
);
},
onchange
:
function
()
{
if
(
!
this
.
workspace
)
{
...
...
@@ -459,6 +472,7 @@ Blockly.Blocks['field_image'] = {
this
.
setTooltip
(
'
Static image (JPEG, PNG, GIF, SVG, BMP).
\n
'
+
'
Retains aspect ratio regardless of height and width.
\n
'
+
'
Alt text is for when collapsed.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=567
'
);
}
};
...
...
@@ -474,6 +488,7 @@ Blockly.Blocks['type_group'] = {
this
.
setOutput
(
true
,
'
Type
'
);
this
.
setMutator
(
new
Blockly
.
Mutator
([
'
type_group_item
'
]));
this
.
setTooltip
(
'
Allows more than one type to be accepted.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=677
'
);
this
.
typeCount_
=
2
;
},
mutationToDom
:
function
(
workspace
)
{
...
...
@@ -552,6 +567,7 @@ Blockly.Blocks['type_group_container'] = {
.
appendField
(
'
add types
'
);
this
.
appendStatementInput
(
'
STACK
'
);
this
.
setTooltip
(
'
Add, or remove allowed type.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=677
'
);
this
.
contextMenu
=
false
;
}
};
...
...
@@ -565,6 +581,7 @@ Blockly.Blocks['type_group_item'] = {
this
.
setPreviousStatement
(
true
);
this
.
setNextStatement
(
true
);
this
.
setTooltip
(
'
Add a new allowed type.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=677
'
);
this
.
contextMenu
=
false
;
}
};
...
...
@@ -578,6 +595,7 @@ Blockly.Blocks['type_null'] = {
.
appendField
(
'
any
'
);
this
.
setOutput
(
true
,
'
Type
'
);
this
.
setTooltip
(
'
Any type is allowed.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=602
'
);
}
};
...
...
@@ -590,6 +608,7 @@ Blockly.Blocks['type_boolean'] = {
.
appendField
(
'
boolean
'
);
this
.
setOutput
(
true
,
'
Type
'
);
this
.
setTooltip
(
'
Booleans (true/false) are allowed.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=602
'
);
}
};
...
...
@@ -602,6 +621,7 @@ Blockly.Blocks['type_number'] = {
.
appendField
(
'
number
'
);
this
.
setOutput
(
true
,
'
Type
'
);
this
.
setTooltip
(
'
Numbers (int/float) are allowed.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=602
'
);
}
};
...
...
@@ -614,6 +634,7 @@ Blockly.Blocks['type_string'] = {
.
appendField
(
'
string
'
);
this
.
setOutput
(
true
,
'
Type
'
);
this
.
setTooltip
(
'
Strings (text) are allowed.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=602
'
);
}
};
...
...
@@ -626,6 +647,7 @@ Blockly.Blocks['type_list'] = {
.
appendField
(
'
list
'
);
this
.
setOutput
(
true
,
'
Type
'
);
this
.
setTooltip
(
'
Arrays (lists) are allowed.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=602
'
);
}
};
...
...
@@ -638,6 +660,7 @@ Blockly.Blocks['type_other'] = {
.
appendField
(
new
Blockly
.
FieldTextInput
(
''
),
'
TYPE
'
);
this
.
setOutput
(
true
,
'
Type
'
);
this
.
setTooltip
(
'
Custom type to allow.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=702
'
);
}
};
...
...
@@ -649,6 +672,7 @@ Blockly.Blocks['colour_hue'] = {
.
appendField
(
new
Blockly
.
FieldAngle
(
'
0
'
,
this
.
validator
),
'
HUE
'
);
this
.
setOutput
(
true
,
'
Colour
'
);
this
.
setTooltip
(
'
Paint the block with this colour.
'
);
this
.
setHelpUrl
(
'
https://www.youtube.com/watch?v=s2_xaEvcVI0#t=55
'
);
},
validator
:
function
(
text
)
{
// Update the current block's colour to match.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment