| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace Dcat\Admin\Grid\Column;
- use Dcat\Admin\Widgets\Tooltip;
- use Illuminate\Contracts\Support\Renderable;
- use Illuminate\Support\Str;
- class Help implements Renderable
- {
- /**
- * @var string
- */
- protected $message = '';
- /**
- * @var string
- */
- protected $style;
- /**
- * @var null
- */
- protected $placement;
- /**
- * Help constructor.
- *
- * @param string $message
- */
- public function __construct($message = '', ?string $style = null, ?string $placement = null)
- {
- $this->message = value($message);
- $this->style = $style;
- $this->placement = $placement;
- }
- /**
- * Render help header.
- *
- * @return string
- */
- public function render()
- {
- $class = 'grid-column-help-'.Str::random(8);
- $tooltip = Tooltip::make('.'.$class);
- if (in_array($this->style, ['green', 'blue', 'red', 'purple'])) {
- $tooltip->{$this->style}();
- }
- if (in_array($this->placement, ['bottom', 'left', 'right', 'top'])) {
- $tooltip->{$this->placement}();
- }
- return <<<HELP
- <a href="javascript:void(0);" class="{$class} feather icon-help-circle" data-title="{$this->message}"></a>
- HELP;
- }
- }
|