Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
7e43867c
Commit
7e43867c
authored
Aug 31, 2017
by
bbaer
Browse files
added qfq.fabric.js to grunt
parent
be4b7ff2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Gruntfile.js
View file @
7e43867c
...
...
@@ -10,6 +10,7 @@ module.exports = function (grunt) {
'
javascript/src/Element/*.js
'
,
'
javascript/src/*.js
'
];
var
js_plugins
=
'
javascript/src/Plugins/*.js
'
;
// Project configuration.
grunt
.
initConfig
({
...
...
@@ -385,6 +386,22 @@ module.exports = function (grunt) {
}
]
},
qfqPlugins
:
{
files
:
[
{
src
:
js_plugins
,
expand
:
true
,
dest
:
"
js/
"
,
flatten
:
true
},
{
src
:
js_plugins
,
expand
:
true
,
dest
:
typo3_js
,
flatten
:
true
}
]
}
},
uglify
:
{
...
...
@@ -394,6 +411,10 @@ module.exports = function (grunt) {
build
:
{
src
:
[
'
js/<%= pkg.name %>.debug.js
'
],
dest
:
typo3_js
+
'
<%= pkg.name %>.min.js
'
},
qfqFabric
:
{
src
:
[
'
javascript/src/Plugins/qfq.fabric.js
'
],
dest
:
typo3_js
+
'
qfq.fabric.min.js
'
}
},
jshint
:
{
...
...
javascript/src/Plugins/qfq.fabric.js
0 → 100644
View file @
7e43867c
/**
* Created by bbaer on 5/5/17.
*/
$
(
function
()
{
var
canvas
=
this
.
__canvas
=
new
fabric
.
Canvas
(
'
c
'
,
{
isDrawingMode
:
true
});
var
imageURL
=
"
../mockup/mockData/Scan2a.jpeg
"
;
var
saveOne
=
false
;
var
saveTwo
=
false
;
var
saveThree
=
false
;
fabric
.
Object
.
prototype
.
transparentCorners
=
false
;
function
setBackground
(
imagePath
)
{
fabric
.
Image
.
fromURL
(
imageURL
,
function
(
img
)
{
img
.
set
({
width
:
canvas
.
width
,
height
:
canvas
.
height
,
originX
:
'
left
'
,
originY
:
'
top
'
});
canvas
.
setBackgroundImage
(
img
,
canvas
.
renderAll
.
bind
(
canvas
));
});
}
function
deactivateDrawing
()
{
canvas
.
isDrawingMode
=
false
;
$
(
"
#drawing-mode
"
).
removeClass
(
"
btn-primary
"
);
$
(
"
#drawing-mode
"
).
addClass
(
"
btn-default
"
);
}
setBackground
(
imageURL
);
$
(
"
#clear-canvas
"
).
on
(
"
click
"
,
function
()
{
canvas
.
clear
();
setBackground
(
imageURL
);
});
$
(
"
#drawing-mode
"
).
on
(
"
click
"
,
function
()
{
canvas
.
isDrawingMode
=
!
canvas
.
isDrawingMode
;
console
.
log
(
"
Button pressed
"
);
if
(
canvas
.
isDrawingMode
)
{
$
(
this
).
removeClass
(
"
btn-default
"
);
$
(
this
).
addClass
(
"
btn-primary
"
);
}
else
{
$
(
this
).
removeClass
(
"
btn-primary
"
);
$
(
this
).
addClass
(
"
btn-default
"
);
}
});
$
(
"
#add-text
"
).
on
(
"
click
"
,
function
()
{
var
text
=
new
fabric
.
IText
(
'
type your text here
'
,
{
left
:
100
,
top
:
100
,
editable
:
true
});
canvas
.
add
(
text
);
deactivateDrawing
();
});
$
(
"
#save1
"
).
on
(
"
click
"
,
function
()
{
if
(
!
saveOne
)
{
saveOne
=
canvas
.
toJSON
();
}
else
{
canvas
.
loadFromJSON
(
saveOne
);
}
});
$
(
"
#save2
"
).
on
(
"
click
"
,
function
()
{
if
(
!
saveTwo
)
{
saveTwo
=
canvas
.
toJSON
();
}
else
{
canvas
.
loadFromJSON
(
saveTwo
);
}
});
$
(
"
#save3
"
).
on
(
"
click
"
,
function
()
{
if
(
!
saveThree
)
{
saveThree
=
canvas
.
toJSON
();
}
else
{
canvas
.
loadFromJSON
(
saveThree
);
}
});
$
(
"
#export-svg
"
).
on
(
"
click
"
,
function
()
{
var
svg
=
canvas
.
toSVG
();
console
.
log
(
svg
);
$
(
"
#target-svg
"
).
html
(
svg
);
});
$
(
'
html
'
).
keyup
(
function
(
e
)
{
if
(
e
.
keyCode
==
46
)
{
if
(
canvas
.
getActiveGroup
())
{
canvas
.
getActiveGroup
().
forEachObject
(
function
(
o
)
{
canvas
.
remove
(
o
)
});
canvas
.
discardActiveGroup
().
renderAll
();
}
else
{
canvas
.
remove
(
canvas
.
getActiveObject
());
}
}
});
});
\ No newline at end of file
Write
Preview
Supports
Markdown
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