mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Update version and API.
This commit is contained in:
parent
c4979bdd27
commit
da77bcde04
@ -118,9 +118,9 @@ class IndexController extends Controller
|
|||||||
/**
|
/**
|
||||||
* @return \Illuminate\Contracts\Foundation\Application|Factory|View
|
* @return \Illuminate\Contracts\Foundation\Application|Factory|View
|
||||||
*/
|
*/
|
||||||
public function emptyIndex()
|
public function emptyIndex(?string $objectType = null)
|
||||||
{
|
{
|
||||||
return view('accounts.empty-index');
|
return view('accounts.empty-index', compact('objectType'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -133,6 +133,11 @@ class IndexController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function index(Request $request, string $objectType)
|
public function index(Request $request, string $objectType)
|
||||||
{
|
{
|
||||||
|
// temp catch for layout.
|
||||||
|
if ('v2' === config('firefly.layout')) {
|
||||||
|
return $this->emptyIndex($objectType);
|
||||||
|
}
|
||||||
|
|
||||||
$objectType = $objectType ?? 'asset';
|
$objectType = $objectType ?? 'asset';
|
||||||
$subTitle = (string) trans(sprintf('firefly.%s_accounts', $objectType));
|
$subTitle = (string) trans(sprintf('firefly.%s_accounts', $objectType));
|
||||||
$subTitleIcon = config(sprintf('firefly.subIconsByIdentifier.%s', $objectType));
|
$subTitleIcon = config(sprintf('firefly.subIconsByIdentifier.%s', $objectType));
|
||||||
|
@ -75,6 +75,7 @@ class ShowController extends Controller
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show an account.
|
* Show an account.
|
||||||
*
|
*
|
||||||
@ -89,6 +90,13 @@ class ShowController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function show(Request $request, Account $account, Carbon $start = null, Carbon $end = null)
|
public function show(Request $request, Account $account, Carbon $start = null, Carbon $end = null)
|
||||||
{
|
{
|
||||||
|
$objectType = config(sprintf('firefly.shortNamesByFullName.%s', $account->accountType->type));
|
||||||
|
|
||||||
|
// temp catch for layout.
|
||||||
|
if ('v2' === config('firefly.layout')) {
|
||||||
|
return view('accounts.empty-index', compact('objectType'));
|
||||||
|
}
|
||||||
|
|
||||||
if (!$this->isEditableAccount($account)) {
|
if (!$this->isEditableAccount($account)) {
|
||||||
return $this->redirectAccountToAccount($account); // @codeCoverageIgnore
|
return $this->redirectAccountToAccount($account); // @codeCoverageIgnore
|
||||||
}
|
}
|
||||||
@ -103,7 +111,6 @@ class ShowController extends Controller
|
|||||||
}
|
}
|
||||||
$location = $this->repository->getLocation($account);
|
$location = $this->repository->getLocation($account);
|
||||||
$attachments = $this->repository->getAttachments($account);
|
$attachments = $this->repository->getAttachments($account);
|
||||||
$objectType = config(sprintf('firefly.shortNamesByFullName.%s', $account->accountType->type));
|
|
||||||
$today = new Carbon;
|
$today = new Carbon;
|
||||||
$subTitleIcon = config(sprintf('firefly.subIconsByIdentifier.%s', $account->accountType->type));
|
$subTitleIcon = config(sprintf('firefly.subIconsByIdentifier.%s', $account->accountType->type));
|
||||||
$page = (int) $request->get('page');
|
$page = (int) $request->get('page');
|
||||||
|
@ -60,6 +60,7 @@ class General extends AbstractExtension
|
|||||||
$this->activeRouteStrict(),
|
$this->activeRouteStrict(),
|
||||||
$this->activeRoutePartial(),
|
$this->activeRoutePartial(),
|
||||||
$this->activeRoutePartialObjectType(),
|
$this->activeRoutePartialObjectType(),
|
||||||
|
$this->menuOpenRoutePartial(),
|
||||||
$this->formatDate(),
|
$this->formatDate(),
|
||||||
$this->getMetaField(),
|
$this->getMetaField(),
|
||||||
$this->hasRole(),
|
$this->hasRole(),
|
||||||
@ -89,9 +90,32 @@ class General extends AbstractExtension
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Will return "menu-open" when a part of the route matches the argument.
|
||||||
|
* ie. "accounts" will match "accounts.index".
|
||||||
|
*
|
||||||
|
* @return TwigFunction
|
||||||
|
*/
|
||||||
|
protected function menuOpenRoutePartial(): TwigFunction
|
||||||
|
{
|
||||||
|
return new TwigFunction(
|
||||||
|
'menuOpenRoutePartial',
|
||||||
|
static function (): string {
|
||||||
|
$args = func_get_args();
|
||||||
|
$route = $args[0]; // name of the route.
|
||||||
|
$name = Route::getCurrentRoute()->getName() ?? '';
|
||||||
|
if (!(false === strpos($name, $route))) {
|
||||||
|
return 'menu-open';
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function will return "active" when the current route matches the first argument (even partly)
|
* This function will return "active" when the current route matches the first argument (even partly)
|
||||||
* but, the variable $what has been set and matches the second argument.
|
* but, the variable $objectType has been set and matches the second argument.
|
||||||
*
|
*
|
||||||
* @return TwigFunction
|
* @return TwigFunction
|
||||||
*/
|
*/
|
||||||
|
@ -143,8 +143,8 @@ return [
|
|||||||
],
|
],
|
||||||
|
|
||||||
//'encryption' => null === env('USE_ENCRYPTION') || true === env('USE_ENCRYPTION'),
|
//'encryption' => null === env('USE_ENCRYPTION') || true === env('USE_ENCRYPTION'),
|
||||||
'version' => '5.3.0',
|
'version' => '5.3.1',
|
||||||
'api_version' => '1.2.0',
|
'api_version' => '1.3.0',
|
||||||
'db_version' => 15,
|
'db_version' => 15,
|
||||||
'maxUploadSize' => 1073741824, // 1 GB
|
'maxUploadSize' => 1073741824, // 1 GB
|
||||||
'send_error_message' => env('SEND_ERROR_MESSAGE', true),
|
'send_error_message' => env('SEND_ERROR_MESSAGE', true),
|
||||||
@ -168,7 +168,7 @@ return [
|
|||||||
'update_endpoint' => 'https://version.firefly-iii.org/index.json',
|
'update_endpoint' => 'https://version.firefly-iii.org/index.json',
|
||||||
'send_telemetry' => env('SEND_TELEMETRY', false),
|
'send_telemetry' => env('SEND_TELEMETRY', false),
|
||||||
'telemetry_endpoint' => 'https://telemetry.firefly-iii.org',
|
'telemetry_endpoint' => 'https://telemetry.firefly-iii.org',
|
||||||
'layout' => env('FIREFLY_III_LAYOUT', 'v1'),
|
'layout' => envNonEmpty('FIREFLY_III_LAYOUT', 'v1'),
|
||||||
'update_minimum_age' => 6,
|
'update_minimum_age' => 6,
|
||||||
'default_location' => [
|
'default_location' => [
|
||||||
'longitude' => env('MAP_DEFAULT_LONG', '5.916667'),
|
'longitude' => env('MAP_DEFAULT_LONG', '5.916667'),
|
||||||
|
Loading…
Reference in New Issue
Block a user