mirror of
https://github.com/Mibew/mibew.git
synced 2025-04-04 07:27:06 +03:00
Use CanteenHTML5 for buttons generation
This commit is contained in:
parent
d446b9a78f
commit
c43fccf297
@ -24,7 +24,8 @@
|
||||
"symfony/config": "2.5.*",
|
||||
"symfony/yaml": "2.5.*",
|
||||
"symfony/translation": "2.5.*",
|
||||
"tedivm/stash": "0.12.*"
|
||||
"tedivm/stash": "0.12.*",
|
||||
"canteen/html5": "1.1.*"
|
||||
},
|
||||
"require-dev": {
|
||||
"squizlabs/php_codesniffer": "1.*"
|
||||
|
@ -19,6 +19,7 @@
|
||||
|
||||
namespace Mibew\Button\Generator;
|
||||
|
||||
use Canteen\HTML5;
|
||||
use Mibew\Asset\Generator\UrlGeneratorInterface as AssetUrlGeneratorInterface;
|
||||
use Mibew\Routing\Generator\SecureUrlGeneratorInterface as RouteUrlGeneratorInterface;
|
||||
use Mibew\Settings;
|
||||
@ -74,14 +75,20 @@ class ImageGenerator extends TextGenerator
|
||||
'&',
|
||||
$this->generateUrl('button', $image_link_args)
|
||||
);
|
||||
$message = "<img src=\"{$image_url}\" border=\"0\" alt=\"\"/>";
|
||||
$image = HTML5\html('img');
|
||||
$image->setAttributes(array(
|
||||
'src' => $image_url,
|
||||
'border' => 0,
|
||||
'alt' => '',
|
||||
));
|
||||
|
||||
$button = "<!-- mibew button -->"
|
||||
. $this->getPopup($message)
|
||||
. $this->getWidgetCode()
|
||||
. "<!-- / mibew button -->";
|
||||
$button = HTML5\html('fragment');
|
||||
$button->addChild(HTML5\html('comment', 'mibew button'));
|
||||
$button->addChild($this->getPopup($image));
|
||||
$button->addChild($this->getWidgetCode());
|
||||
$button->addChild(HTML5\html('comment', '/ mibew button'));
|
||||
|
||||
return $button;
|
||||
return (string)$button;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -140,13 +147,20 @@ class ImageGenerator extends TextGenerator
|
||||
// blocked
|
||||
$widget_data['visitorCookieName'] = VISITOR_COOKIE_NAME;
|
||||
|
||||
// Build additional button code
|
||||
return '<div id="mibewinvitation"></div>'
|
||||
. '<script type="text/javascript" src="'
|
||||
. $this->generateAssetUrl('js/compiled/widget.js')
|
||||
. '"></script>'
|
||||
. '<script type="text/javascript">'
|
||||
. 'Mibew.Widget.init(' . json_encode($widget_data) . ')'
|
||||
. '</script>';
|
||||
$markup = HTML5\html('fragment');
|
||||
$markup->addChild(HTML5\html('div#mibewinvitation'));
|
||||
$markup->addChild(
|
||||
HTML5\html('script')->setAttributes(array(
|
||||
'type' => 'text/javascript',
|
||||
'src' => $this->generateAssetUrl('js/compiled/widget.js'),
|
||||
))
|
||||
);
|
||||
$markup->addChild(
|
||||
HTML5\html('script')
|
||||
->setAttribute('type', 'text/javascript')
|
||||
->addChild('Mibew.Widget.init(' . json_encode($widget_data) . ')')
|
||||
);
|
||||
|
||||
return $markup;
|
||||
}
|
||||
}
|
||||
|
@ -19,6 +19,8 @@
|
||||
|
||||
namespace Mibew\Button\Generator;
|
||||
|
||||
use Canteen\HTML5;
|
||||
|
||||
/**
|
||||
* Generates an Operator's Code field.
|
||||
*/
|
||||
@ -29,19 +31,35 @@ class OperatorCodeGenerator extends AbstractGenerator implements GeneratorInterf
|
||||
*/
|
||||
public function generate()
|
||||
{
|
||||
$js_link = $this->getChatUrlForJs();
|
||||
$popup_options = $this->getPopupOptions();
|
||||
$form = HTML5\html('form');
|
||||
$form->setAttributes(array(
|
||||
'action' => '',
|
||||
'onsubmit' => sprintf(
|
||||
("if(navigator.userAgent.toLowerCase().indexOf('opera') != -1 "
|
||||
. "&& window.event.preventDefault) window.event.preventDefault();"
|
||||
. "this.newWindow = window.open(%s + '&operator_code=' "
|
||||
. "+ document.getElementById('mibewOperatorCodeField').value, 'mibew', '%s');"
|
||||
. "this.newWindow.focus();"
|
||||
. "this.newWindow.opener=window;"
|
||||
. "return false;"),
|
||||
$this->getChatUrlForJs(),
|
||||
$this->getPopupOptions()
|
||||
),
|
||||
'id' => 'mibewOperatorCodeForm',
|
||||
));
|
||||
$form->addChild(HTML5\html(
|
||||
'input',
|
||||
array(
|
||||
'type' => 'text',
|
||||
'id' => 'mibewOperatorCodeField',
|
||||
)
|
||||
));
|
||||
|
||||
$form_on_submit = "if(navigator.userAgent.toLowerCase().indexOf('opera') != -1 "
|
||||
. "&& window.event.preventDefault) window.event.preventDefault();"
|
||||
. "this.newWindow = window.open({$js_link} + '&operator_code=' "
|
||||
. "+ document.getElementById('mibewOperatorCodeField').value, 'mibew', '{$popup_options}');"
|
||||
. "this.newWindow.focus();this.newWindow.opener=window;return false;";
|
||||
$button = HTML5\html('fragment');
|
||||
$button->addChild(HTML5\html('comment', 'mibew operator code field'));
|
||||
$button->addChild($form);
|
||||
$button->addChild(HTML5\html('comment', '/ mibew operator code field'));
|
||||
|
||||
$temp = '<form action="" onsubmit="' . $form_on_submit . '" id="mibewOperatorCodeForm">'
|
||||
. '<input type="text" id="mibewOperatorCodeField" />'
|
||||
. '</form>';
|
||||
|
||||
return "<!-- mibew operator code field -->" . $temp . "<!-- / mibew operator code field -->";
|
||||
return (string)$button;
|
||||
}
|
||||
}
|
||||
|
@ -19,6 +19,8 @@
|
||||
|
||||
namespace Mibew\Button\Generator;
|
||||
|
||||
use Canteen\HTML5;
|
||||
|
||||
/**
|
||||
* Generates a Text button.
|
||||
*/
|
||||
@ -29,9 +31,12 @@ class TextGenerator extends AbstractGenerator implements GeneratorInterface
|
||||
*/
|
||||
public function generate()
|
||||
{
|
||||
return "<!-- mibew text link -->"
|
||||
. $this->getPopup($this->getOption('caption'))
|
||||
. "<!-- / mibew text link -->";
|
||||
$button = HTML5\html('fragment');
|
||||
$button->addChild(HTML5\html('comment', 'mibew text link'));
|
||||
$button->addChild($this->getPopup($this->getOption('caption')));
|
||||
$button->addChild(HTML5\html('comment', '/ mibew text link'));
|
||||
|
||||
return (string)$button;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -41,16 +46,29 @@ class TextGenerator extends AbstractGenerator implements GeneratorInterface
|
||||
*/
|
||||
protected function getPopup($message)
|
||||
{
|
||||
$url = str_replace('&', '&', $this->getChatUrl());
|
||||
$js_url = $this->getChatUrlForJs();
|
||||
$options = $this->getPopupOptions();
|
||||
$title = $this->getOption('title');
|
||||
$link = HTML5\html('a', $message);
|
||||
|
||||
return "<a id=\"mibewAgentButton\" href=\"$url\" target=\"_blank\" "
|
||||
. ($title ? "title=\"$title\" " : "")
|
||||
. "onclick=\"if(navigator.userAgent.toLowerCase().indexOf('opera') != -1 "
|
||||
. "&& window.event.preventDefault) window.event.preventDefault();"
|
||||
. "this.newWindow = window.open($js_url, 'mibew', '$options');"
|
||||
. "this.newWindow.focus();this.newWindow.opener=window;return false;\">$message</a>";
|
||||
$link->setAttributes(array(
|
||||
'id' => 'mibewAgentButton',
|
||||
'href' => str_replace('&', '&', $this->getChatUrl()),
|
||||
'target' => '_blank',
|
||||
'onclick' =>sprintf(
|
||||
("if(navigator.userAgent.toLowerCase().indexOf('opera') != -1 "
|
||||
. "&& window.event.preventDefault) window.event.preventDefault();"
|
||||
. "this.newWindow = window.open(%s, 'mibew', '%s');"
|
||||
. "this.newWindow.focus();"
|
||||
. "this.newWindow.opener=window;"
|
||||
. "return false;"),
|
||||
$this->getChatUrlForJs(),
|
||||
$this->getPopupOptions()
|
||||
),
|
||||
));
|
||||
|
||||
$title = $this->getOption('title');
|
||||
if ($title) {
|
||||
$link->setAttribute('title', $title);
|
||||
}
|
||||
|
||||
return $link;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user