2017 © Pedro Peláez
 

library nette-front-editor

Front editor extension for Nette Framework

image

geniv/nette-front-editor

Front editor extension for Nette Framework

  • Wednesday, May 9, 2018
  • by geniv
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Front editor

Installation

$ composer require geniv/nette-front-editor

or, (*1)

"geniv/nette-front-editor": ">=1.0.0"

require:, (*2)

"php": ">=7.0.0",
"nette/nette": ">=2.4.0",
"geniv/nette-general-form": ">=1.0.0",
"geniv/nette-identity": ">=1.0.0"

Include in application

neon configure:, (*3)

# front editor
frontEditor:
#   autowired: true
#   formContainer: FrontEditor\FormContainer
#   adminLink: "admin/%routerPrefix.adminBaseUrl%"

neon configure extension:, (*4)

extensions:
    frontEditor: FrontEditor\Bridges\Nette\Extension

front editor v.1:

presenters:, (*5)

use FrontEditorControl;

//$this->template->frontEditorEnable = $this->isFrontEditorEnable();
//$frontEditor->setAcl($this->isFrontEditorEnable());
//$frontEditor->getFrontEditorEnableHash();

//<a n:href="FrontEditorDisable!" n:if="$frontEditorEnable" class="ajax">odhlasi se z edit modu</a>
//{control frontEditor.'-identText1'}

protected function createComponentFrontEditor(FrontEditor $frontEditor): FrontEditor
{
    $frontEditor->setTemplatePath(__DIR__ . '/templates/frontEditor.latte');
    $frontEditor->setAcl($this->user->isAllowed($this->getName(), 'edit'));
    $frontEditor->setData($this['config']->getEditor(static::IDENTIFIER));
    $frontEditor->onSuccess[] = function (Form $form, array $values) {
        try {
            if ($this['config']->setEditor(static::IDENTIFIER, $values['content'])) {
                $this->flashMessage($this->translator->translate('front-editor#onsuccess'), 'success');
            }
        } catch (\Dibi\Exception $e) {
            $this->flashMessage($e->getMessage(), 'danger');
        }
        $this->redirect('this');
    };
    return $frontEditor;
}

usage:, (*6)

{control frontEditor}

front editor v.2:

presenters front:, (*7)

use FrontEditorControl;

protected function startup()
{
    parent::startup();

    $this->template->frontEditorEnable = $this->isFrontEditorEnable();
}

protected function createComponentFrontEditor(FrontEditor $frontEditor): Multiplier
{
    $frontEditor->setTemplatePath(__DIR__ . '/templates/frontEditor.latte');
    $frontEditor->setAcl($this->isFrontEditorEnable());

    return new Multiplier(function ($indexName) use ($frontEditor) {
        $data = $this['config']->getDataByIdent($indexName);
        if (!$data) {
            $this['config']->setEditor($indexName, $indexName); // create if not exists
            return $frontEditor;
        }
        // set type and add variable to frontEditor
        $frontEditor->getFormContainer()->setType($data['type']);
        $frontEditor->addVariableTemplate('type', $data['type']);

        $frontEditor->setData($data['content']);
        $frontEditor->onSuccess[] = function (Form $form, array $values) use ($data) {
            try {
                if ($this['config']->editData($data['id'], ['content' => $values['content']])) {
                    $this->flashMessage('done', 'success');
                }
            } catch (\Dibi\Exception $e) {
                $this->flashMessage($e->getMessage(), 'danger');
            }
            $this->redirect('this');
        };
        return clone $frontEditor;
    });
}

usage front:, (*8)

<a n:href="FrontEditorDisable!" n:if="$frontEditorEnable" class="ajax">logout edit mode</a>

{control frontEditor.'-identText1'}

front editor v.3:

presenters front:, (*9)

use FrontEditorControl;

protected function startup()
{
    parent::startup();

    $this->template->frontEditorEnable = $this->isFrontEditorEnable();
}

protected function createComponentFrontEditor(IFrontEditor $frontEditor): IFrontEditor
{
    $frontEditor->setTemplatePath(__DIR__ . '/templates/frontEditor.latte');
    $frontEditor->setTemplatePathLink(__DIR__ . '/templates/frontEditorLink.latte');
    $frontEditor->setAcl($this->isFrontEditorEnable());

    $frontEditor->onLoadData = function ($identification) use ($frontEditor) {
        if ($identification) {
            $data = $this['config']->getDataByIdent($identification);
            $frontEditor->getFormContainer()->setType($data['type']);
            $frontEditor->addVariableTemplate('type', $data['type']);
            return $data;
        }
        return null;
    };

     $frontEditor->onLogout[] = function () {
        $this->handleFrontEditorDisable();
    };

    $frontEditor->onSuccess[] = function (Form $form, array $values) {
        try {
            if ($this['config']->editData((int) $values['id'], ['content' => $values['content']])) {
                $this['config']->cleanCache();
                $this->flashMessage($this->translator->translate('front-editor#onsuccess'), 'success');
            } else {
                $this->flashMessage($this->translator->translate('front-editor#onsuccess-fail'), 'danger');
            }
        } catch (\Dibi\Exception $e) {
            $this->flashMessage($e->getMessage(), 'danger');
        }
        $this->redirect('this');
    };
    return $frontEditor;
}

usage front:, (*10)

{control frontEditor:link 'identText1'} 
{control config:editor 'identText1'}

{control frontEditor}

front editor admin:

presenters admin:, (*11)

use FrontEditorControl;

$this->template->frontEditorEnableLink = $this->getFrontEditorEnableLink();

usage admin:, (*12)

<a href="{$baseUrl}/../{$frontEditorEnableLink}" title="{_'layout-front-editor-enable'}">link</a>

The Versions

09/05 2018

dev-master

9999999-dev

Front editor extension for Nette Framework

  Sources   Download

MIT

The Requires

 

by Radek Frystak

editor nette front geniv

09/05 2018

v1.0.1

1.0.1.0

Front editor extension for Nette Framework

  Sources   Download

MIT

The Requires

 

by Radek Frystak

editor nette front geniv

09/05 2018

dev-develop

dev-develop

Front editor extension for Nette Framework

  Sources   Download

MIT

The Requires

 

by Radek Frystak

editor nette front geniv

08/05 2018

v1.0.0

1.0.0.0

Front editor extension for Nette Framework

  Sources   Download

MIT

The Requires

 

by Radek Frystak

editor nette front geniv