| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <?php
- /**
- * The create view file of doc module of ZenTaoPMS.
- * @copyright Copyright 2024 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
- * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Sun Hao<sunhao@easycorp.ltd>
- * @package doc
- * @link https://www.zentao.net
- */
- namespace zin;
- jsVar('isTutorialMode', common::isTutorialMode());
- include 'lefttree.html.php';
- $headingActions = array('class' => 'gap-3 pr-1', 'items' => array());
- if(!common::isTutorialMode()) $headingActions['items'][] = array('type' => 'secondary', 'class' => 'save-draft', 'text' => $lang->doc->saveDraft, 'btnType' => 'submit');
- $headingActions['items'][] = array('type' => 'primary', 'class' => 'btn-wide release-btn', 'text' => $lang->doc->release, 'url' => '#modalBasicInfo', 'data-toggle' => 'modal');
- $basicInfoModal = modal
- (
- set::title($lang->doc->release . $lang->doc->common),
- set::id('modalBasicInfo'),
- set::bodyClass('form form-horz'),
- on::change('[name=space],[name=product],[name=execution]')->call('loadObjectModules', jsRaw('event')),
- on::change('[name=lib]')->call('loadLibModules', jsRaw('event')),
- on::change('[name=project]')->call('loadExecutions', jsRaw('event')),
- on::change('[name=lib],[name^=users]', 'checkLibPriv'),
- $lib->type == 'project' ? formRow
- (
- formGroup
- (
- setClass('w-1/2'),
- set::label($lang->doc->project),
- set::required(true),
- set::control(array('control' => 'picker', 'name' => 'project', 'items' => $objects, 'required' => true, 'value' => isset($execution) ? $execution->project : $objectID))
- ),
- ($this->app->tab == 'doc' and $config->vision == 'rnd') ? formGroup
- (
- setClass('w-1/2'),
- set::label($lang->doc->execution),
- set::control(array('control' => 'picker', 'name' => 'execution', 'items' => $executions, 'value' => isset($execution) ? $objectID : ''))
- ) : null
- ) : null,
- ($lib->type == 'execution') ? formGroup
- (
- set::width('1/2'),
- set::label($lang->doc->execution),
- set::required(true),
- set::control(array('control' => 'picker', 'name' => 'execution', 'items' => $objects, 'required' => true, 'value' => $lib->execution))
- ) : null,
- ($lib->type == 'product') ? formGroup
- (
- set::width('1/2'),
- set::label($lang->doc->product),
- set::required(true),
- set::control(array('control' => 'picker', 'name' => 'product', 'items' => $objects, 'required' => true, 'value' => $objectID))
- ) : null,
- isset($spaces) ? formGroup
- (
- set::width('1/2'),
- set::label($lang->doc->space),
- set::required(true),
- set::control(array('control' => 'picker', 'name' => 'space', 'items' => $spaces, 'required' => true, 'value' => $objectID, 'disabled' => $lib->type == 'mine'))
- ) : null,
- formGroup
- (
- setData('libType', $lib->type),
- set::width('1/2'),
- set::label($lang->doc->lib),
- set::required(true),
- picker(set::name('lib'), set::items($libs), set::value(isset($libs[$libID]) ? $libID : ''), set::required(true))
- ),
- formGroup
- (
- set::width('1/2'),
- set::label($lang->doc->module),
- picker(set::name('module'), set::items($optionMenu), set::value($moduleID), set::required(true))
- ),
- formGroup
- (
- setClass('flex items-center preserve-on-morph'),
- set::label($lang->doc->title),
- set::name('title'),
- set::control('input'),
- set::required(),
- on::change()->do('$("#showTitle").val($("#title").val())')
- ),
- formGroup
- (
- set::label($lang->doc->keywords),
- set::control('input'),
- set::name('keywords')
- ),
- formGroup
- (
- setStyle('min-height', 'auto'),
- set::label($lang->doc->files),
- fileSelector()
- ),
- formGroup
- (
- set::label($lang->doc->mailto),
- mailto(set::items($users))
- ),
- formGroup
- (
- set::label($lang->doclib->control),
- radioList
- (
- set::name('acl'),
- set::items($lang->doc->aclList),
- set::value($objectType == 'mine' ? 'private' : 'open'),
- on::change('toggleWhiteList')
- )
- ),
- formGroup
- (
- setID('whiteListBox'),
- setClass('hidden'),
- set::label($lang->doc->whiteList),
- div
- (
- setClass('w-full check-list'),
- inputGroup
- (
- setClass('w-full'),
- $lang->doc->groupLabel,
- picker
- (
- set::name('groups[]'),
- set::items($groups),
- set::multiple(true)
- )
- ),
- div
- (
- setClass('w-full'),
- userPicker(set::label($lang->doc->userLabel), set::items($users))
- )
- )
- ),
- formRow
- (
- div
- (
- setClass('form-actions form-group no-label'),
- btn(set::type('primary'), set::btnType('submit'), setClass('saveBasicInfoBtn'), $lang->doc->release)
- )
- )
- );
- $handleSubmitForm = <<<'JS'
- function(e)
- {
- const isDraft = $(e.submitter).hasClass('save-draft');
- const $showTitle = $('#showTitle');
- if(isDraft && !$showTitle.val().length)
- {
- zui.Modal.alert($showTitle.data('titleHint')).then(() => $showTitle[0].focus());
- return false;
- }
- $(e.target).removeClass('has-changed').find('input[name=status]').val(isDraft ? 'draft' : 'normal');
- const pageEditor = $('#docEditor').zui('pageEditor');
- if(pageEditor) return pageEditor.syncData().then(() => true);
- }
- JS;
- formBase
- (
- setID('docForm'),
- setData('unsavedConfirm', $lang->doc->confirmLeaveOnEdit),
- set::actions(false),
- set::ajax(array('beforeSubmit' => jsRaw($handleSubmitForm), 'onFail' => jsRaw('() => $("#docForm").addClass("has-changed")'))),
- set::morph(),
- on::change('#showTitle,zen-editor')->once()->do('$element.addClass("has-changed")'),
- panel
- (
- setClass('doc-form preserve-on-morph'),
- set::headingActions($headingActions),
- set::headingClass('py-3'),
- set::bodyClass('p-0 border-t'),
- to::heading
- (
- input
- (
- setID('showTitle'),
- setClass('ring-0 text-xl font-bold px-0'),
- setData('title-hint', sprintf($lang->error->notempty, $lang->doc->title)),
- set::maxlength(100),
- set::placeholder($lang->doc->titlePlaceholder),
- on::init()->do('$element.on("change input", () => {$("#title").val($element.val()).removeClass("has-error");$("#titleTip").remove();})')
- )
- ),
- $docType === 'doc' ? pageEditor
- (
- set::_id('docEditor'),
- set::name('content'),
- set::size('auto'),
- set::resizable(false),
- set::placeholder($lang->noticePasteImg)
- ) : editor
- (
- set::name('content'),
- set::size('full'),
- set::resizable(false),
- set::placeholder($lang->noticePasteImg)
- )
- ),
- formHidden('status', 'normal'),
- formHidden('contentType', $docType),
- formHidden('type', 'text'),
- $basicInfoModal
- );
|