firefly-iii/app/Support/ExpandedForm.php

469 lines
15 KiB
PHP
Raw Normal View History

<?php
/**
* ExpandedForm.php
2020-02-16 06:56:52 -06:00
* Copyright (c) 2019 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
2017-10-21 01:40:00 -05:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 01:40:00 -05:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2017-10-21 01:40:00 -05:00
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace FireflyIII\Support;
use Amount as Amt;
2015-05-26 01:17:58 -05:00
use Eloquent;
use FireflyIII\Support\Form\FormSupport;
2015-02-24 14:10:25 -06:00
use Illuminate\Support\Collection;
2018-07-02 08:37:56 -05:00
use Log;
use Throwable;
/**
2017-11-15 05:25:49 -06:00
* Class ExpandedForm.
2018-07-15 03:00:08 -05:00
*
2018-07-28 03:45:16 -05:00
* @SuppressWarnings(PHPMD.TooManyMethods)
2019-08-17 03:47:29 -05:00
*
2019-07-31 09:53:09 -05:00
* @codeCoverageIgnore
*/
class ExpandedForm
{
use FormSupport;
/**
2018-03-11 10:24:07 -05:00
* @param string $name
* @param mixed $value
* @param array $options
2018-04-07 15:23:16 -05:00
*
* @return string
*
2018-04-07 15:23:16 -05:00
*/
2018-07-23 14:49:15 -05:00
public function amountNoCurrency(string $name, $value = null, array $options = null): string
2018-04-07 15:23:16 -05:00
{
2018-07-23 14:49:15 -05:00
$options = $options ?? [];
2018-04-07 15:23:16 -05:00
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
$options['step'] = 'any';
unset($options['currency'], $options['placeholder']);
// make sure value is formatted nicely:
if (null !== $value && '' !== $value) {
$value = round($value, 8);
}
try {
$html = view('form.amount-no-currency', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render amountNoCurrency(): %s', $e->getMessage()));
$html = 'Could not render amountNoCurrency.';
}
2018-04-07 15:23:16 -05:00
return $html;
}
/**
2018-04-27 23:23:13 -05:00
* @param string $name
* @param int $value
* @param mixed $checked
* @param array $options
*
* @return string
*
*/
2018-07-23 14:49:15 -05:00
public function checkbox(string $name, int $value = null, $checked = null, array $options = null): string
{
2018-07-23 14:49:15 -05:00
$options = $options ?? [];
$value = $value ?? 1;
2018-07-26 22:03:37 -05:00
$options['checked'] = true === $checked;
2018-04-22 04:29:20 -05:00
2018-08-05 11:59:15 -05:00
if (app('session')->has('preFilled')) {
2018-04-22 04:29:20 -05:00
$preFilled = session('preFilled');
$options['checked'] = $preFilled[$name] ?? $options['checked'];
}
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
unset($options['placeholder'], $options['autocomplete'], $options['class']);
try {
$html = view('form.checkbox', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render checkbox(): %s', $e->getMessage()));
$html = 'Could not render checkbox.';
}
return $html;
}
/**
2018-04-27 23:23:13 -05:00
* @param string $name
* @param mixed $value
* @param array $options
*
* @return string
*
*/
2018-07-23 14:49:15 -05:00
public function date(string $name, $value = null, array $options = null): string
{
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
2015-06-22 11:50:54 -05:00
unset($options['placeholder']);
try {
$html = view('form.date', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render date(): %s', $e->getMessage()));
$html = 'Could not render date.';
}
return $html;
}
2016-01-20 08:23:36 -06:00
/**
2018-04-27 23:23:13 -05:00
* @param string $name
* @param array $options
2016-01-20 08:23:36 -06:00
*
* @return string
*
2016-01-20 08:23:36 -06:00
*/
2018-07-23 14:49:15 -05:00
public function file(string $name, array $options = null): string
2016-01-20 08:23:36 -06:00
{
2018-07-23 14:49:15 -05:00
$options = $options ?? [];
2016-01-20 08:23:36 -06:00
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
try {
$html = view('form.file', compact('classes', 'name', 'label', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render file(): %s', $e->getMessage()));
$html = 'Could not render file.';
}
2016-01-20 08:23:36 -06:00
return $html;
}
2015-04-03 15:54:21 -05:00
/**
2018-04-27 23:23:13 -05:00
* @param string $name
* @param mixed $value
* @param array $options
2015-04-03 15:54:21 -05:00
*
* @return string
*
2015-04-03 15:54:21 -05:00
*/
2018-07-23 14:49:15 -05:00
public function integer(string $name, $value = null, array $options = null): string
2015-04-03 15:54:21 -05:00
{
2018-07-23 14:49:15 -05:00
$options = $options ?? [];
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
$options['step'] = '1';
try {
$html = view('form.integer', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render integer(): %s', $e->getMessage()));
$html = 'Could not render integer.';
}
2015-04-03 15:54:21 -05:00
return $html;
}
2015-03-02 13:05:28 -06:00
/**
2018-04-27 23:23:13 -05:00
* @param string $name
* @param mixed $value
* @param array $options
2015-03-02 13:05:28 -06:00
*
* @return string
*
2015-03-02 13:05:28 -06:00
*/
2018-07-23 14:49:15 -05:00
public function location(string $name, $value = null, array $options = null): string
2015-03-02 13:05:28 -06:00
{
2018-07-23 14:49:15 -05:00
$options = $options ?? [];
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
try {
$html = view('form.location', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render location(): %s', $e->getMessage()));
$html = 'Could not render location.';
}
2015-03-02 13:05:28 -06:00
return $html;
}
2016-04-27 12:21:47 -05:00
/**
2016-04-29 10:29:13 -05:00
* @param \Illuminate\Support\Collection $set
2016-04-27 12:21:47 -05:00
*
* @return array
2019-08-17 03:47:29 -05:00
*
2016-04-27 12:21:47 -05:00
*/
public function makeSelectListWithEmpty(Collection $set): array
{
2016-05-20 01:00:35 -05:00
$selectList = [];
2016-04-27 12:21:47 -05:00
$selectList[0] = '(none)';
$fields = ['title', 'name', 'description'];
2015-03-07 02:21:06 -06:00
/** @var Eloquent $entry */
2015-02-24 14:10:25 -06:00
foreach ($set as $entry) {
2018-04-02 07:50:17 -05:00
$entryId = (int)$entry->id;
2015-05-25 00:14:04 -05:00
$title = null;
2015-02-24 14:10:25 -06:00
foreach ($fields as $field) {
2017-11-15 05:25:49 -06:00
if (isset($entry->$field) && null === $title) {
2015-02-24 14:10:25 -06:00
$title = $entry->$field;
}
}
2015-05-25 00:14:04 -05:00
$selectList[$entryId] = $title;
2015-02-24 14:10:25 -06:00
}
return $selectList;
}
/**
* @param string $name
* @param mixed $value
* @param array $options
*
* @return string
*/
2018-07-23 14:49:15 -05:00
public function nonSelectableAmount(string $name, $value = null, array $options = null): string
{
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
$options['step'] = 'any';
2018-04-02 07:50:17 -05:00
$selectedCurrency = $options['currency'] ?? Amt::getDefaultCurrency();
2018-03-29 12:01:47 -05:00
unset($options['currency'], $options['placeholder']);
// make sure value is formatted nicely:
2017-11-15 05:25:49 -06:00
if (null !== $value && '' !== $value) {
$value = round($value, $selectedCurrency->decimal_places);
}
try {
$html = view('form.non-selectable-amount', compact('selectedCurrency', 'classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render nonSelectableAmount(): %s', $e->getMessage()));
$html = 'Could not render nonSelectableAmount.';
}
return $html;
}
2017-11-03 00:58:39 -05:00
/**
* @param string $name
* @param mixed $value
* @param array $options
2017-11-03 00:58:39 -05:00
*
* @return string
*
2017-11-03 00:58:39 -05:00
*/
2018-07-23 14:49:15 -05:00
public function number(string $name, $value = null, array $options = null): string
2017-11-03 00:58:39 -05:00
{
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
$options['step'] = 'any';
unset($options['placeholder']);
try {
$html = view('form.number', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render number(): %s', $e->getMessage()));
$html = 'Could not render number.';
}
2017-11-03 00:58:39 -05:00
return $html;
}
2018-08-04 10:30:47 -05:00
/**
2018-08-05 11:59:15 -05:00
* @param string $type
2018-08-04 10:30:47 -05:00
* @param string $name
*
* @return string
*
*/
2018-08-05 11:59:15 -05:00
public function optionsList(string $type, string $name): string
2018-08-04 10:30:47 -05:00
{
try {
2018-08-05 11:59:15 -05:00
$html = view('form.options', compact('type', 'name'))->render();
2018-08-04 10:30:47 -05:00
} catch (Throwable $e) {
2018-08-05 11:59:15 -05:00
Log::debug(sprintf('Could not render select(): %s', $e->getMessage()));
$html = 'Could not render optionsList.';
2018-08-04 10:30:47 -05:00
}
return $html;
}
/**
2018-04-27 23:23:13 -05:00
* @param string $name
* @param array $options
*
* @return string
*
*/
2018-08-05 11:59:15 -05:00
public function password(string $name, array $options = null): string
{
2018-08-05 11:59:15 -05:00
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
try {
2018-08-05 11:59:15 -05:00
$html = view('form.password', compact('classes', 'name', 'label', 'options'))->render();
} catch (Throwable $e) {
2018-08-05 11:59:15 -05:00
Log::debug(sprintf('Could not render password(): %s', $e->getMessage()));
$html = 'Could not render password.';
}
return $html;
}
2016-04-25 11:43:09 -05:00
2016-12-20 10:14:43 -06:00
/**
2018-08-05 11:59:15 -05:00
* Function to render a percentage.
*
2018-04-27 23:23:13 -05:00
* @param string $name
* @param mixed $value
* @param array $options
2016-12-20 10:14:43 -06:00
*
* @return string
*
2016-12-20 10:14:43 -06:00
*/
2018-08-05 11:59:15 -05:00
public function percentage(string $name, $value = null, array $options = null): string
2016-12-20 10:14:43 -06:00
{
2018-08-05 11:59:15 -05:00
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
$options['step'] = 'any';
unset($options['placeholder']);
try {
2018-08-05 11:59:15 -05:00
$html = view('form.percentage', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
2018-08-05 11:59:15 -05:00
Log::debug(sprintf('Could not render percentage(): %s', $e->getMessage()));
$html = 'Could not render percentage.';
}
2016-12-20 10:14:43 -06:00
return $html;
}
2015-03-02 13:05:28 -06:00
/**
2018-04-27 23:23:13 -05:00
* @param string $name
* @param mixed $value
* @param array $options
2015-03-02 13:05:28 -06:00
*
* @return string
*
2015-03-02 13:05:28 -06:00
*/
2018-07-23 14:49:15 -05:00
public function staticText(string $name, $value, array $options = null): string
2015-03-02 13:05:28 -06:00
{
2016-01-20 08:23:36 -06:00
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
try {
$html = view('form.static', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render staticText(): %s', $e->getMessage()));
$html = 'Could not render staticText.';
}
2015-03-02 13:05:28 -06:00
return $html;
}
/**
2018-04-27 23:23:13 -05:00
* @param string $name
* @param mixed $value
* @param array $options
*
* @return string
*
*/
2018-07-23 14:49:15 -05:00
public function text(string $name, $value = null, array $options = null): string
{
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
try {
$html = view('form.text', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render text(): %s', $e->getMessage()));
$html = 'Could not render text.';
}
return $html;
}
/**
2018-04-27 23:23:13 -05:00
* @param string $name
* @param mixed $value
* @param array $options
*
* @return string
*
*/
2018-07-23 14:49:15 -05:00
public function textarea(string $name, $value = null, array $options = null): string
{
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
$options['rows'] = 4;
2018-08-05 11:59:15 -05:00
if (null === $value) {
$value = '';
}
try {
$html = view('form.textarea', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render textarea(): %s', $e->getMessage()));
$html = 'Could not render textarea.';
}
return $html;
}
/**
* @param null $value
* @param array|null $options
*
* @return string
*/
public function objectGroup($value = null, array $options = null): string
{
$name = 'object_group';
$label = $this->label($name, $options);
$options = $this->expandOptionArray($name, $label, $options);
$classes = $this->getHolderClasses($name);
$value = $this->fillFieldValue($name, $value);
$options['rows'] = 4;
if (null === $value) {
$value = '';
}
try {
$html = view('form.object_group', compact('classes', 'name', 'label', 'value', 'options'))->render();
} catch (Throwable $e) {
Log::debug(sprintf('Could not render objectGroup(): %s', $e->getMessage()));
$html = 'Could not render objectGroup.';
}
return $html;
}
2015-03-29 01:14:32 -05:00
}