firefly-iii/app/Support/ExpandedForm.php

475 lines
16 KiB
PHP
Raw Normal View History

<?php
2022-12-29 12:42:26 -06:00
/**
* 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\Exceptions\FireflyException;
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;
2021-03-21 03:15:40 -05:00
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param mixed $value
* @param array|null $options
2018-04-07 15:23:16 -05:00
*
* @return string
*/
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:
2021-07-04 00:58:11 -05:00
//if (null !== $value && '' !== $value) {
//$value = round((float)$value, 8);
//}
try {
$html = view('form.amount-no-currency', compact('classes', 'name', 'label', 'value', 'options'))->render();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
2021-02-13 13:04:18 -06:00
Log::error(sprintf('Could not render amountNoCurrency(): %s', $e->getMessage()));
$html = 'Could not render amountNoCurrency.';
throw new FireflyException($html, 0, $e);
}
2018-04-07 15:23:16 -05:00
return $html;
}
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param int|null $value
* @param mixed $checked
* @param array|null $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();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
Log::debug(sprintf('Could not render checkbox(): %s', $e->getMessage()));
$html = 'Could not render checkbox.';
throw new FireflyException($html, 0, $e);
}
return $html;
}
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param mixed $value
* @param array|null $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();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
Log::debug(sprintf('Could not render date(): %s', $e->getMessage()));
$html = 'Could not render date.';
throw new FireflyException($html, 0, $e);
}
return $html;
}
2016-01-20 08:23:36 -06:00
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param array|null $options
2016-01-20 08:23:36 -06:00
*
* @return string
*/
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();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
Log::debug(sprintf('Could not render file(): %s', $e->getMessage()));
$html = 'Could not render file.';
throw new FireflyException($html, 0, $e);
}
2016-01-20 08:23:36 -06:00
return $html;
}
2015-04-03 15:54:21 -05:00
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param mixed $value
* @param array|null $options
2015-04-03 15:54:21 -05:00
*
* @return string
*/
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();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
Log::debug(sprintf('Could not render integer(): %s', $e->getMessage()));
$html = 'Could not render integer.';
throw new FireflyException($html, 0, $e);
}
2015-04-03 15:54:21 -05:00
return $html;
}
2015-03-02 13:05:28 -06:00
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param mixed $value
* @param array|null $options
2015-03-02 13:05:28 -06:00
*
* @return string
*/
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();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
Log::debug(sprintf('Could not render location(): %s', $e->getMessage()));
$html = 'Could not render location.';
throw new FireflyException($html, 0, $e);
}
2015-03-02 13:05:28 -06:00
return $html;
}
2016-04-27 12:21:47 -05:00
/**
2022-12-29 12:42:26 -06:00
* @param 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) {
2022-12-31 06:32:42 -06:00
// All Eloquent models have an ID
$entryId = (int)$entry->id; // @phpstan-ignore-line
2021-04-11 23:16:00 -05:00
$current = $entry->toArray();
2015-05-25 00:14:04 -05:00
$title = null;
2015-02-24 14:10:25 -06:00
foreach ($fields as $field) {
2021-04-11 23:16:00 -05:00
if (array_key_exists($field, $current) && null === $title) {
2022-10-30 23:53:36 -05:00
$title = $current[$field];
2015-02-24 14:10:25 -06:00
}
}
2015-05-25 00:14:04 -05:00
$selectList[$entryId] = $title;
2015-02-24 14:10:25 -06:00
}
2021-07-04 00:58:11 -05:00
2015-02-24 14:10:25 -06:00
return $selectList;
}
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param mixed $value
* @param array|null $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) {
2021-07-04 00:58:11 -05:00
// $value = round((float)$value, $selectedCurrency->decimal_places);
}
try {
$html = view('form.non-selectable-amount', compact('selectedCurrency', 'classes', 'name', 'label', 'value', 'options'))->render();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
Log::debug(sprintf('Could not render nonSelectableAmount(): %s', $e->getMessage()));
$html = 'Could not render nonSelectableAmount.';
throw new FireflyException($html, 0, $e);
}
return $html;
}
2017-11-03 00:58:39 -05:00
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param mixed $value
* @param array|null $options
2017-11-03 00:58:39 -05:00
*
* @return string
*/
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();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
Log::debug(sprintf('Could not render number(): %s', $e->getMessage()));
$html = 'Could not render number.';
throw new FireflyException($html, 0, $e);
}
2017-11-03 00:58:39 -05:00
return $html;
}
2021-03-21 03:15:40 -05:00
/**
2022-12-29 12:42:26 -06:00
* @param null $value
* @param array|null $options
2021-03-21 03:15:40 -05:00
*
* @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();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
2021-03-21 03:15:40 -05:00
Log::debug(sprintf('Could not render objectGroup(): %s', $e->getMessage()));
$html = 'Could not render objectGroup.';
throw new FireflyException($html, 0, $e);
2021-03-21 03:15:40 -05:00
}
return $html;
}
2018-08-04 10:30:47 -05:00
/**
2022-12-29 12:42:26 -06:00
* @param string $type
* @param string $name
2018-08-04 10:30:47 -05:00
*
* @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 {
$html = view('form.options', compact('type', 'name'))->render();
2022-10-30 23:53:36 -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.';
throw new FireflyException($html, 0, $e);
2018-08-04 10:30:47 -05:00
}
return $html;
}
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param array|null $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 {
$html = view('form.password', compact('classes', 'name', 'label', 'options'))->render();
2022-10-30 23:53:36 -05:00
} 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.';
throw new FireflyException($html, 0, $e);
}
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.
*
2022-12-29 12:42:26 -06:00
* @param string $name
* @param mixed $value
* @param array|null $options
2016-12-20 10:14:43 -06:00
*
* @return string
*/
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 {
$html = view('form.percentage', compact('classes', 'name', 'label', 'value', 'options'))->render();
2022-10-30 23:53:36 -05:00
} 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.';
throw new FireflyException($html, 0, $e);
}
2016-12-20 10:14:43 -06:00
return $html;
}
2015-03-02 13:05:28 -06:00
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param mixed $value
* @param array|null $options
2015-03-02 13:05:28 -06:00
*
* @return string
*/
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();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
Log::debug(sprintf('Could not render staticText(): %s', $e->getMessage()));
$html = 'Could not render staticText.';
throw new FireflyException($html, 0, $e);
}
2015-03-02 13:05:28 -06:00
return $html;
}
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param mixed $value
* @param array|null $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();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
Log::debug(sprintf('Could not render text(): %s', $e->getMessage()));
$html = 'Could not render text.';
throw new FireflyException($html, 0, $e);
}
return $html;
}
/**
2022-12-29 12:42:26 -06:00
* @param string $name
* @param mixed $value
* @param array|null $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();
2022-10-30 23:53:36 -05:00
} catch (Throwable $e) {
Log::debug(sprintf('Could not render textarea(): %s', $e->getMessage()));
$html = 'Could not render textarea.';
throw new FireflyException($html, 0, $e);
}
return $html;
}
2015-03-29 01:14:32 -05:00
}