2014-10-05 08:27:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Firefly\Form;
|
|
|
|
|
|
|
|
|
|
|
|
use Firefly\Exception\FireflyException;
|
|
|
|
use Illuminate\Support\MessageBag;
|
|
|
|
|
|
|
|
class Form
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $name
|
|
|
|
* @param null $value
|
|
|
|
* @param array $options
|
|
|
|
* @return string
|
|
|
|
* @throws FireflyException
|
|
|
|
*/
|
2014-10-05 19:29:25 +02:00
|
|
|
public static function ffInteger($name, $value = null, array $options = [])
|
|
|
|
{
|
|
|
|
$options['step'] = '1';
|
|
|
|
return self::ffInput('number', $name, $value, $options);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function ffCheckbox($name, $value = 1, $checked = null, $options = [])
|
|
|
|
{
|
|
|
|
$options['checked'] = $checked ? true : null;
|
|
|
|
return self::ffInput('checkbox', $name, $value, $options);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function ffAmount($name, $value = null, array $options = [])
|
2014-10-05 08:27:18 +02:00
|
|
|
{
|
|
|
|
$options['step'] = 'any';
|
|
|
|
$options['min'] = '0.01';
|
2014-10-05 19:29:25 +02:00
|
|
|
return self::ffInput('amount', $name, $value, $options);
|
2014-10-05 08:27:18 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-10-05 19:29:25 +02:00
|
|
|
/**
|
|
|
|
* @param $name
|
|
|
|
* @param null $value
|
|
|
|
* @param array $options
|
|
|
|
* @return string
|
|
|
|
* @throws FireflyException
|
|
|
|
*/
|
2014-10-05 08:27:18 +02:00
|
|
|
public static function ffDate($name, $value = null, array $options = [])
|
|
|
|
{
|
|
|
|
return self::ffInput('date', $name, $value, $options);
|
|
|
|
}
|
|
|
|
|
2014-10-05 19:29:25 +02:00
|
|
|
/**
|
|
|
|
* @param $name
|
|
|
|
* @param null $value
|
|
|
|
* @param array $options
|
|
|
|
* @return string
|
|
|
|
* @throws FireflyException
|
|
|
|
*/
|
|
|
|
public static function ffTags($name, $value = null, array $options = [])
|
|
|
|
{
|
|
|
|
$options['data-role'] = 'tagsinput';
|
|
|
|
return self::ffInput('text', $name, $value, $options);
|
|
|
|
}
|
|
|
|
|
2014-10-05 08:27:18 +02:00
|
|
|
/**
|
|
|
|
* @param $name
|
|
|
|
* @param array $list
|
|
|
|
* @param null $selected
|
|
|
|
* @param array $options
|
|
|
|
* @return string
|
|
|
|
* @throws FireflyException
|
|
|
|
*/
|
|
|
|
public static function ffSelect($name, array $list = [], $selected = null, array $options = [])
|
|
|
|
{
|
|
|
|
return self::ffInput('select', $name, $selected, $options, $list);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $name
|
|
|
|
* @param null $value
|
|
|
|
* @param array $options
|
|
|
|
* @return string
|
|
|
|
* @throws FireflyException
|
|
|
|
*/
|
|
|
|
public static function ffText($name, $value = null, array $options = array())
|
|
|
|
{
|
|
|
|
return self::ffInput('text', $name, $value, $options);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-10-05 19:29:25 +02:00
|
|
|
public static function label($name)
|
|
|
|
{
|
|
|
|
$labels = [
|
|
|
|
'amount_min' => 'Amount (min)',
|
|
|
|
'amount_max' => 'Amount (max)',
|
|
|
|
'match' => 'Matches on',
|
|
|
|
'repeat_freq' => 'Repetition',
|
|
|
|
'account_from_id' => 'Account from',
|
|
|
|
'account_to_id' => 'Account to',
|
|
|
|
'account_id' => 'Asset account'
|
|
|
|
];
|
|
|
|
|
|
|
|
return isset($labels[$name]) ? $labels[$name] : str_replace('_',' ',ucfirst($name));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-10-05 08:27:18 +02:00
|
|
|
/**
|
|
|
|
* @param $type
|
|
|
|
* @param $name
|
|
|
|
* @param null $value
|
|
|
|
* @param array $options
|
|
|
|
* @param array $list
|
|
|
|
* @return string
|
|
|
|
* @throws FireflyException
|
|
|
|
*/
|
|
|
|
public static function ffInput($type, $name, $value = null, array $options = array(), $list = [])
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* add some defaults to this method:
|
|
|
|
*/
|
|
|
|
$options['class'] = 'form-control';
|
|
|
|
$options['id'] = 'ffInput_' . $name;
|
|
|
|
$options['autocomplete'] = 'off';
|
2014-10-05 19:29:25 +02:00
|
|
|
$label = self::label($name);
|
2014-10-05 08:27:18 +02:00
|
|
|
/*
|
|
|
|
* Make label and placeholder look nice.
|
|
|
|
*/
|
2014-10-05 19:29:25 +02:00
|
|
|
$options['placeholder'] = ucfirst($name);
|
2014-10-05 08:27:18 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the value.
|
|
|
|
*/
|
|
|
|
if (!is_null(\Input::old($name))) {
|
|
|
|
/*
|
|
|
|
* Old value overrules $value.
|
|
|
|
*/
|
|
|
|
$value = \Input::old($name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get errors, warnings and successes from session:
|
|
|
|
*/
|
|
|
|
/** @var MessageBag $errors */
|
|
|
|
$errors = \Session::get('errors');
|
|
|
|
|
|
|
|
/** @var MessageBag $warnings */
|
|
|
|
$warnings = \Session::get('warnings');
|
|
|
|
|
|
|
|
/** @var MessageBag $successes */
|
|
|
|
$successes = \Session::get('successes');
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If errors, add some more classes.
|
|
|
|
*/
|
|
|
|
switch (true) {
|
|
|
|
case (!is_null($errors) && $errors->has($name)):
|
|
|
|
$classes = 'form-group has-error has-feedback';
|
|
|
|
break;
|
|
|
|
case (!is_null($warnings) && $warnings->has($name)):
|
|
|
|
$classes = 'form-group has-warning has-feedback';
|
|
|
|
break;
|
|
|
|
case (!is_null($successes) && $successes->has($name)):
|
|
|
|
$classes = 'form-group has-success has-feedback';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$classes = 'form-group';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add some HTML.
|
|
|
|
*/
|
|
|
|
$html = '<div class="' . $classes . '">';
|
|
|
|
$html .= '<label for="' . $options['id'] . '" class="col-sm-4 control-label">' . $label . '</label>';
|
|
|
|
$html .= '<div class="col-sm-8">';
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Switch input type:
|
|
|
|
*/
|
2014-10-05 19:29:25 +02:00
|
|
|
unset($options['label']);
|
2014-10-05 08:27:18 +02:00
|
|
|
switch ($type) {
|
|
|
|
case 'text':
|
|
|
|
$html .= \Form::input('text', $name, $value, $options);
|
|
|
|
break;
|
2014-10-05 19:29:25 +02:00
|
|
|
case 'amount':
|
2014-10-05 08:27:18 +02:00
|
|
|
$html .= '<div class="input-group"><div class="input-group-addon">€</div>';
|
|
|
|
$html .= \Form::input('number', $name, $value, $options);
|
|
|
|
$html .= '</div>';
|
2014-10-05 19:29:25 +02:00
|
|
|
break;
|
|
|
|
case 'number':
|
|
|
|
$html .= \Form::input('number', $name, $value, $options);
|
|
|
|
break;
|
|
|
|
case 'checkbox':
|
|
|
|
$checked = $options['checked'];
|
|
|
|
unset($options['checked'], $options['placeholder'], $options['autocomplete'], $options['class']);
|
|
|
|
$html .= '<div class="checkbox"><label>';
|
|
|
|
$html .= \Form::checkbox($name, $value, $checked, $options);
|
|
|
|
$html .= '</label></div>';
|
|
|
|
|
|
|
|
|
2014-10-05 08:27:18 +02:00
|
|
|
break;
|
|
|
|
case 'date':
|
|
|
|
$html .= \Form::input('date', $name, $value, $options);
|
|
|
|
break;
|
|
|
|
case 'select':
|
|
|
|
$html .= \Form::select($name, $list, $value, $options);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new FireflyException('Cannot handle type "' . $type . '" in FFFormBuilder.');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If errors, respond to them:
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!is_null($errors)) {
|
|
|
|
if ($errors->has($name)) {
|
|
|
|
$html .= '<span class="glyphicon glyphicon-remove form-control-feedback"></span>';
|
|
|
|
$html .= '<p class="text-danger">' . e($errors->first($name)) . '</p>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
unset($errors);
|
|
|
|
/*
|
|
|
|
* If warnings, respond to them:
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!is_null($warnings)) {
|
|
|
|
if ($warnings->has($name)) {
|
|
|
|
$html .= '<span class="glyphicon glyphicon-warning-sign form-control-feedback"></span>';
|
|
|
|
$html .= '<p class="text-warning">' . e($warnings->first($name)) . '</p>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
unset($warnings);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If successes, respond to them:
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!is_null($successes)) {
|
|
|
|
if ($successes->has($name)) {
|
|
|
|
$html .= '<span class="glyphicon glyphicon-ok form-control-feedback"></span>';
|
|
|
|
$html .= '<p class="text-success">' . e($successes->first($name)) . '</p>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
unset($successes);
|
|
|
|
|
|
|
|
$html .= '</div>';
|
|
|
|
$html .= '</div>';
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|