formNews.php 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952
  1. <?php
  2. use app\assets\GalleryManagerAsset;
  3. use manager\models\News;
  4. use yii\helpers\Html;
  5. use yii\helpers\ArrayHelper;
  6. use yii\widgets\ActiveForm;
  7. use kartik\datetime\DateTimePicker;
  8. use \app\models\base\Tags;
  9. use \app\models\base\Story;
  10. use \app\models\base\Image;
  11. use \app\models\base\NewsTopic;
  12. use app\models\Authors;
  13. use app\widgets\CropperjsWidget;
  14. use zxbodya\yii2\galleryManager\GalleryManager;
  15. use \app\models\Tagsfilter;
  16. /**
  17. * @var $news News
  18. */
  19. GalleryManagerAsset::register($this);
  20. $cache = Yii::$app->cache;
  21. $tmodel = new Tags();
  22. $session = Yii::$app->session;
  23. $session->open();
  24. $tagsmenu = Yii::$app->cache->getOrSet("tagsmenu",function () use($tmodel){
  25. return $tmodel->find()->rightJoin(['m'=>Tagsfilter::find()], 'm.id = tags.id')->orderBy('sort')->All();
  26. });
  27. //echo $news->text;
  28. ?>
  29. <ul class="nav nav-tabs">
  30. <li class="nav-item">
  31. <a class="nav-link active" data-toggle="tab" href="#edit">Статья</a>
  32. </li>
  33. <li class="nav-item">
  34. <a class="nav-link" data-toggle="tab" href="#comments">Комментарии</a>
  35. </li>
  36. </ul>
  37. <div class="tab-content">
  38. <div class="tab-pane fade show active" id="edit">
  39. <?
  40. // редактор
  41. $form = ActiveForm::begin([
  42. 'id' => 'news-form',
  43. 'options' => ['class' => 'form-horizontal','enctype' => 'multipart/form-data'],]);
  44. //иничиализация
  45. DateTimePicker::widget([
  46. 'name' => 'dt_pub',
  47. 'options' => [],
  48. 'convertFormat' => true,
  49. 'pluginOptions' => [
  50. 'format' => 'd-M-Y H:i ',
  51. 'startDate' => '01-Mar-2000 12:00',
  52. 'todayHighlight' => true
  53. ]
  54. ]);
  55. $tcount = 85;
  56. if( mb_strlen( $news->title ) > 85 ){
  57. $tcount = mb_strlen( $news->title );
  58. }
  59. $model = new Authors();
  60. $authors = $model->findAll(['active' => 'Y']);
  61. //$author = $model->findOne(['id' => $news->author]);
  62. $author = $model->getAuthor($news->author);
  63. $ids = ArrayHelper::getColumn($authors, 'id');
  64. if( !in_array($author->id, $ids) ){
  65. $authors = array_merge($authors, [$author]);
  66. };
  67. $news->commerc = ($news->inscription == 2)?'Y':'N';
  68. $news->mcommerc = ($news->inscription == 1)?'Y':'N';
  69. $news->pcommerc = ($news->inscription == 3)?'Y':'N';
  70. $news->fdzen = ($news['export_rss'] & 1)?'Y':'N';
  71. $news->fmail = ($news['export_rss'] & 2)?'Y':'N';
  72. $nofirst = ($news->flags & 1);
  73. if( isset($uuid) )
  74. {
  75. $news->uid = $uuid;
  76. }else{
  77. $uuid = $news->uid;
  78. }
  79. if($news->isNewRecord)
  80. {
  81. ?>
  82. <div class="info-box">
  83. <span class="info-box-icon bg-info"><i class="far fa-bookmark"></i></span>
  84. <div class="info-box-content">
  85. <span class="info-box-text">Сгенерировал. UUID</span>
  86. <span class="info-box-number"><?=$uuid?></span>
  87. <div class="progress">
  88. <div class="progress-bar bg-info" style="width: 70%"></div>
  89. </div>
  90. <span class="progress-description">
  91. Информация для отладки
  92. </span>
  93. </div>
  94. </div>
  95. <?
  96. }else{
  97. ?>
  98. <div class="info-box">
  99. <span class="info-box-icon bg-info"><i class="far fa-bookmark"></i></span>
  100. <div class="info-box-content">
  101. <span class="info-box-text">ID Новости</span>
  102. <span class="info-box-number"><?=$news->id?></span>
  103. <span class="info-box-text">uid Новости</span>
  104. <span class="info-box-number"><?=$uuid?></span>
  105. <div class="progress">
  106. <div class="progress-bar bg-info" style="width: 70%"></div>
  107. </div>
  108. <span class="progress-description">
  109. Информация для отладки
  110. </span>
  111. </div>
  112. </div>
  113. <input type="hidden" name="News[id]" value="<?=$news->id?>">
  114. <input type="hidden" name="News[alias]" value="<?=$news->alias?>">
  115. <input type="hidden" name="News[photo_name]" id="photo_name" value="<?=$news->photo_name?>">
  116. <?
  117. if( $res = $cache->get("editNews_".$news->id) ){
  118. if( isset( unserialize($res)['author'] ) && unserialize($res)['author'] != Yii::$app->user->identity->profile->name){
  119. //Yii::$app->user->identity->profile->name //self
  120. /*
  121. * Предупреждение о пути истинного
  122. */
  123. ?>
  124. <div class="modal" tabindex="-1" data-show="true" id="editing">
  125. <div class="modal-dialog">
  126. <div class="modal-content">
  127. <div class="modal-header">
  128. <h5 class="modal-title">Заблокированная новость</h5>
  129. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  130. <span aria-hidden="true">&times;</span>
  131. </button>
  132. </div>
  133. <div class="modal-body">
  134. <p>Новость уже открыта в другом окне автором: <?=unserialize($res)['author']?></p>
  135. </div>
  136. <div class="modal-footer">
  137. <a href="/manager/news/list"><button type="button" class="btn btn-secondary">Покинуть новость</button></a>
  138. <button type="button" class="btn btn-primary" data-dismiss="modal">Всё равно войти в новость</button>
  139. </div>
  140. </div>
  141. </div>
  142. </div>
  143. <script>$(function () {$('#editing').modal('show')});</script>
  144. <?
  145. }
  146. }else{
  147. ?>
  148. <script>
  149. $(function () {
  150. $.get( "newsping", { id: <?=$news->id?> }, function(data){} );
  151. });
  152. </script>
  153. <?
  154. }
  155. }
  156. if( $news->errors ){
  157. ?>
  158. <div class="card card-danger">
  159. <div class="card-header">
  160. <h3 class="card-title">Обнаружены ошибки</h3>
  161. <div class="card-tools">
  162. <span class="badge badge-dark">Error</span>
  163. </div>
  164. <!-- /.card-tools -->
  165. </div>
  166. <!-- /.card-header -->
  167. <div class="card-body">
  168. <?=$form->errorSummary($news)?>
  169. </div>
  170. <!-- /.card-body -->
  171. </div>
  172. <!-- /.card -->
  173. <?
  174. }
  175. $_SESSION['ckfinder_url'] = '/images/upload/'.(string)$news->uid;
  176. $_SESSION['KCFINDER']['admin_news'] = true;
  177. ?>
  178. <input type="hidden" name="News[editors]" value="<?=$news->editors?>">
  179. <input type="hidden" name="News[uid]" value="<?=$news->uid?>">
  180. <div class="row"><div class="col">
  181. <div class="row justify-content-between">
  182. <div class="input-group mb-3 col-4">
  183. <div class="input-group-prepend">
  184. <span class="input-group-text" id="basic-addon1" onclick="jQuery('#dt_pub').datetimepicker('show')"><i class="fa fa-calendar"></i></span>
  185. </div>
  186. <input type="text" id="dt_pub" class="col-auto" placeholder="Дата публикации" aria-label="Дата публикации" aria-describedby="basic-addon1" value="<?=date("d-m-Y H:i", strtotime( $news->dt_pub ) )?>" name="News[dt_pub]">
  187. </div>
  188. <?
  189. if( $news->dt_cr ){
  190. ?>
  191. <div class="col-auto mr-md-auto">
  192. <small class="badge badge-secondary">Создан: <i class="far fa-clock"></i> <?=date("d-m-Y H:i", strtotime( $news->dt_cr ) )?></small> <small class="badge badge-secondary">Обновлён: <i class="far fa-clock"></i> <?=date("d-m-Y H:i", strtotime( $news->dt_upd ) )?></small>
  193. </div>
  194. <?
  195. }
  196. ?>
  197. <div class="col-4">
  198. <?/*
  199. 0 => 'НОВОСТЬ',
  200. 1 => 'ВОПРОС ДНЯ',
  201. 2 => 'СТАТЬЯ',
  202. 3 => 'ИНТЕРВЬЮ',
  203. 4 => 'ССЫЛКА',
  204. 5 => 'ПОДКАСТ',
  205. 6 => 'ЛОНГРИД',
  206. 7 => 'ВИДЕО',
  207. */?>
  208. <select class="form-control" name="News[type]">
  209. <option value="0" <?=($news->type == 0)?'selected':''?>>НОВОСТЬ</option>
  210. <option value="5" <?=($news->type == 5)?'selected':''?>>Подкаст</option>
  211. <option value="7" <?=($news->type == 7)?'selected':''?>>Видео</option>
  212. <option value="6" <?=($news->type == 6)?'selected':''?>>Лонгрид</option>
  213. <option value="2" <?=($news->type == 2)?'selected':''?>>Разворот</option>
  214. <option value="4" <?=($news->type == 4)?'selected':''?>>Ссылка</option>
  215. </select>
  216. </div>
  217. </div>
  218. <?
  219. /*
  220. echo $form->field($news, 'title')->textInput([
  221. 'maxlength' => true,
  222. 'class' => 'form-control js-word-count-input',
  223. 'placeholder' => 'Заголовок новости'
  224. ])->label('Заголовок');
  225. _errors:yii\base\Model:private
  226. print_a($model->errors);
  227. */
  228. ?>
  229. <div class="form-group field-news-title required">
  230. <label class="control-label col-form-label" for="news-title">Заголовок</label>
  231. <div class="row">
  232. <input type="text" maxlength="<?=$tcount?>" id="news-title" class="form-control js-word-count-input col-sm-10 ml-2" name="News[title]" placeholder="Заголовок новости" aria-required="true" value='<?=str_replace("'", '&apos;', $news->title)?>'>
  233. <div class="help-block px-lg-2"><div class="news__input-word-count"><span class="badge badge-info" id="title_count"></span></div></div>
  234. <a class="btn btn-primary px-lg-2" data-toggle="collapse" href="#collapseSEOTitle" role="button" aria-expanded="false" aria-controls="collapseSEOTitle">SEO title</a>
  235. <div class="help-block"></div>
  236. </div>
  237. </div>
  238. <div class="collapse show" id="collapseSEOTitle">
  239. <div class="card card-body py-1">
  240. <input type="text" name="News[meta_title]" maxlength="<?=$tcount?>" value="<?=htmlentities($news->meta_title)?>" placeholder="SEO Title" class="form-control js-word-count-input col-sm-10 ml-1 py-0">
  241. <div class="help-block">Поле для альтернативного SEO Title заголовка, если не заполнять совпадёт с основным заголовком</div>
  242. </div>
  243. </div>
  244. <div class="form-group field-news-lid required">
  245. <label class="control-label" for="news-lid">Новость кратко</label> <span class="badge badge-info" id="lid_count"></span>
  246. <textarea id="news-lid" class="form-control js-word-count-input" name="News[lid]" placeholder="Лид" aria-required="true"><?=$news->lid?></textarea>
  247. <div class="help-block">Краткое содержание статьи</div>
  248. </div>
  249. <div class="form-group">
  250. <label class="control-label" for="news-link">Прямой переход на URL</label>
  251. <div class="row">
  252. <input type="text" class="form-control" name="News[link]" id="news-link" value="<?=$news->link?>">
  253. <div class="help-block"></div>
  254. </div>
  255. </div>
  256. <div class="form-group">
  257. <label class="control-label" for="news-embed">вставка медиа URL</label>
  258. <div class="row">
  259. <input type="text" class="form-control" name="News[embed_url]" id="news-embed" value="<?=$news->embed_url?>">
  260. <div class="help-block"></div>
  261. </div>
  262. </div>
  263. <div class="form-group">
  264. <div class="card-primary" id="galleriesContainer" style="border: 1px solid gray;">
  265. <div class="card-header">
  266. <h3 class="card-title">Галлереи</h3>
  267. </div>
  268. <div class="card-body">
  269. <?php if($news->isNewRecord):?>
  270. Чтобы добавить галлерею сохраните набросок новости
  271. <?php else:?>
  272. <div class="galleries-list">
  273. <?php foreach ($news->galleries as $gallery){ echo $this->render('@manager/views/news/form/galleryItem',["model"=>$gallery]);} ?>
  274. </div>
  275. <div class="form-group">
  276. <button type="button" class="btn btn-success" data-toggle="modal" data-target="#addGalleryModal"><i class="fas fa-plus"></i> Добавить галлерею</button>
  277. </div>
  278. <?php endif;?>
  279. </div>
  280. </div>
  281. </div>
  282. <div class="form-group field-js_news_content required">
  283. <label class="control-label" for="js_news_content">Контент</label>
  284. <textarea id="js_news_content" class="form-control" name="News[text]" rows="12" aria-required="true"><?=htmlentities($news->text)?></textarea>
  285. </div>
  286. <blockquote class="quote-info mt-0">
  287. <h5 id="tip">Новость подготовили</h5>
  288. <p><?=str_replace(',', ', ', $news->editors)?></p>
  289. </blockquote>
  290. <div class="input-group">
  291. <label class="control-label col-form-label mr-3" >Автор</label>
  292. <select class="custom-select custom-select-sm" name="News[author]" id="news-author">
  293. <option value="0" disabled selected hidden>Выберете основного автора</option>
  294. <?
  295. foreach( $authors as $item ){
  296. ?>
  297. <option value="<?=$item->id?>" <?=($item->id == $author->id)?'selected':''?>><?=$item->name?></option>
  298. <?
  299. }
  300. ?>
  301. </select>
  302. <label class="input-group-append btn btn-primary" title="показывать автора" for="news-author">
  303. <input type="checkbox" autocomplete="off" name="News[show_author]"<?=($news->show_author == 'Y')?' checked':''?> value="Y"><i class="fa fa-eye ml-2"></i>
  304. </label>
  305. </div>
  306. <div class="card card-outline card-primary">
  307. <div class="card-body">
  308. <div class="custom-control custom-checkbox custom-control-inline">
  309. <input type="checkbox" id="customRadioInline1" name="News[verifed]" class="custom-control-input"<?=($news->verifed == 'Y')?' checked':''?> value="Y">
  310. <label class="custom-control-label" for="customRadioInline1"><i class="fas fa-spell-check"></i>Корректор</label>
  311. </div>
  312. <div class="custom-control custom-checkbox custom-control-inline">
  313. <input type="checkbox" id="customRadioInline2" name="News[noindex]" class="custom-control-input"<?=($news->noindex == 'Y')?' checked':''?> value="Y">
  314. <label class="custom-control-label" for="customRadioInline2"><s><i class="fas fa-search"></i></s>Не отдавать в поиск</label>
  315. </div>
  316. <div class="custom-control custom-checkbox custom-control-inline">
  317. <input type="checkbox" id="customRadioInline4" name="News[fdzen]" class="custom-control-input"<?=($news->fdzen == 'Y')?' checked':''?> value="Y">
  318. <label class="custom-control-label" for="customRadioInline4"><i class="fas fa-yin-yang"></i>Не отдавать в <strong class="text-indigo">DZEN</strong> <span class="text-danger">новости</span></label>
  319. </div>
  320. <div class="custom-control custom-checkbox custom-control-inline">
  321. <input type="checkbox" id="customRadioInline4m" name="News[fmail]" class="custom-control-input"<?=($news->fmail == 'Y')?' checked':''?> value="Y">
  322. <label class="custom-control-label" for="customRadioInline4m"><i class="fas fa-yin-yang"></i>В <strong class="text-indigo">DZEN</strong> <span class="text-danger">канал</span> как черновик</label>
  323. </div>
  324. <div class="custom-control custom-checkbox custom-control-inline">
  325. <input type="checkbox" id="customRadioInline3" name="News[comments]" class="custom-control-input"<?=($news->comments == 'N')?' checked':''?> value="N">
  326. <label class="custom-control-label" for="customRadioInline3"><i class="fas fa-comment-slash"></i>Без коментариев</label>
  327. </div>
  328. <div class="custom-control custom-checkbox custom-control-inline">
  329. <input type="checkbox" id="nofirst" name="News[nofirst]" class="custom-control-input"<?=($nofirst)?' checked':''?> value="Y">
  330. <label class="custom-control-label" for="nofirst"><svg xmlns="http://www.w3.org/2000/svg" width="14px" height="14px" viewBox="0 0 512 512"><path d="M245.8 220.9c-14.5-17.6-21.8-39.2-21.8-60.8C224 80 320 0 416 0c53 0 96 43 96 96c0 96-80 192-160.2 192c-21.6 0-43.2-7.3-60.8-21.8L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L245.8 220.9z"/></svg>Спрятать на главной</label>
  331. </div>
  332. </div>
  333. </div>
  334. <div class="card card-outline card-teal">
  335. <div class="card-body">
  336. <div class="custom-control custom-checkbox custom-control-inline">
  337. <input type="checkbox" name="News[photo]" id="fcont1" class="custom-control-input"<?=($news->photo == 'Y')?' checked':''?> value="Y">
  338. <label class="custom-control-label" for="fcont1"><i class="fa fa-camera"></i> C фото материалом</label>
  339. </div>
  340. <div class="custom-control custom-checkbox custom-control-inline">
  341. <input type="checkbox" name="News[video]" id="fcont2" class="custom-control-input"<?=($news->video == 'Y')?' checked':''?> value="Y">
  342. <label class="custom-control-label" for="fcont2"><i class="fa fa-video"></i> C видео материалом</label>
  343. </div>
  344. <div class="custom-control custom-checkbox custom-control-inline">
  345. <input type="checkbox" name="News[audio]" id="fcont3" class="custom-control-input"<?=($news->audio == 'Y')?' checked':''?> value="Y">
  346. <label class="custom-control-label" for="fcont3"><i class="fa fa-headphones"></i> C аудио материалом</label>
  347. </div>
  348. </div>
  349. </div>
  350. <div class="card card-outline card-olive">
  351. <div class="card-body">
  352. <div class="custom-control custom-radio custom-control-inline">
  353. <input type="radio" name="News[commerc]" id="fcont44" class="custom-control-input"<?=($news->commerc == 'N' && $news->mcommerc == 'N')?' checked':''?> value="0">
  354. <label class="custom-control-label" for="fcont44"><i class="fas fa-comment-dollar"></i> Не коммерческая</label>
  355. </div>
  356. <div class="custom-control custom-radio custom-control-inline">
  357. <input type="radio" name="News[commerc]" id="fcont4" class="custom-control-input"<?=($news->commerc == 'Y')?' checked':''?> value="2">
  358. <label class="custom-control-label" for="fcont4"><i class="fas fa-comment-dollar"></i> Простая коммерческая</label>
  359. </div>
  360. <div class="custom-control custom-radio custom-control-inline">
  361. <input type="radio" name="News[commerc]" id="fcont5" class="custom-control-input"<?=($news->mcommerc == 'Y')?' checked':''?> value="1">
  362. <label class="custom-control-label" for="fcont5"><i class="fas fa-comment-dollar"></i> Медицинская коммерческая</label>
  363. </div>
  364. <div class="custom-control custom-radio custom-control-inline">
  365. <input type="radio" name="News[commerc]" id="fcont15" class="custom-control-input"<?=($news->pcommerc == 'Y')?' checked':''?> value="3">
  366. <label class="custom-control-label" for="fcont15"><i class="fas fa-comment-dollar"></i> Партнёр</label>
  367. </div>
  368. <div class="custom-control custom-control-inline p-0">
  369. <button type="button" class="btn btn-secondary btn-sm" onClick="javascript:$('#modalcsl').modal('show');" title="rocket boost"><i class="fas fa-space-shuttle"></i></button>
  370. </div>
  371. <div class="custom-control custom-control-inline pl-1">
  372. <label class="control-label my-0 mr-2" for="news-mark">Метка <small class="form-text text-muted my-0">(токен)</small></label>
  373. <input type="text" class="form-control" name="News[mark]" id="news-mark" value="<?=$news->mark?>">
  374. </div>
  375. </div>
  376. </div>
  377. <div class="card card-outline card-maroon">
  378. <div class="card-body">
  379. <div class="custom-control custom-checkbox custom-control-inline">
  380. <input type="checkbox" name="News[top]" id="fcont6" class="custom-control-input"<?=($news->top == 'Y')?' checked':''?> value="Y">
  381. <label class="custom-control-label" for="fcont6"><i class="fas fa-bomb"></i> В КД</label>
  382. </div>
  383. <div id="grpnh" class="custom-control-inline">
  384. <div class="custom-control custom-checkbox custom-control-inline">
  385. <input type="checkbox" name="News[NH]" id="fcont7" class="custom-control-input"<?=($news->NH == 'Y')?' checked':''?> value="Y">
  386. <label class="custom-control-label" for="fcont7"><i class="fas fa-rocket"></i> В НЧ</label>
  387. </div>
  388. <div class="custom-control custom-checkbox custom-control-inline">
  389. <input type="checkbox" name="News[NH]" id="fcont77" class="custom-control-input"<?=($news->NH == 'F')?' checked':''?> value="F">
  390. <label class="custom-control-label" for="fcont77"><i class="fas fa-thumbtack"></i> В НЧ (закрепить)</label>
  391. </div>
  392. </div>
  393. </div>
  394. </div>
  395. <?
  396. if(!$news->isNewRecord)
  397. {
  398. $Tagitems = $tmodel->getForNews($news->id);
  399. }else{
  400. $Tagitems = [];
  401. }
  402. ?>
  403. <div class="card card-outline card-warning">
  404. <div class="card-body">
  405. <label for="tags"><i class="fas fa-tags"></i>Тэги </label>
  406. <div class="tags-input" id="myTags">
  407. <span class="data">
  408. <?
  409. foreach($Tagitems as $item){
  410. ?>
  411. <span class="btn btn-sm btn-primary tag"><span class="text" _value="<?=$item->id?>"><?=$item->title?></span><span class="close">&times;</span></span>
  412. <?
  413. }
  414. ?>
  415. </span>
  416. <span class="autocomplete">
  417. <input type="text">
  418. <div class="autocomplete-items">
  419. </div>
  420. </span>
  421. </div>
  422. </div>
  423. </div>
  424. <div class="btn-group">
  425. <label class="btn btn-primary active">
  426. <input type="checkbox" name="News[active]" id="active" style="width:3vw;height:3vh;top: 3px;position: relative;" class="active"<?=($news->active == 'Y')?' checked':''?> value="Y"><i class="far fa-play-circle"></i> Опубликовать</label>
  427. </label>
  428. </div>
  429. <div class="custom-control"><br>
  430. <button type="submit" class="btn btn-success mx-1" name="send" onClick="window.onbeforeunload = null;">Сохранить и выйти</button>
  431. <button type="submit" class="btn btn-success mx-1" name="save" onClick="window.onbeforeunload = null;">Сохранить</button>
  432. <?
  433. if(!$news->isNewRecord){
  434. ?>
  435. <a href="/news/preview/<?=$uuid?>" class="btn btn-info" target="_blank"><i class="fas fa-cat"></i> Предпросмотр</a>
  436. <div class="card card-info my-3">
  437. <div class="card-header">
  438. <h3 class="card-title">Локальные копии автосохранение</h3>
  439. </div>
  440. <div class="card-body text-right">
  441. <button class="btn btn-primary" type="button" onClick="SaveLocal()">Сохранить</button>
  442. <button class="btn btn-primary" type="button" onClick="LoadLocal()">Востановить</button>
  443. </div>
  444. <div class="card-footer">
  445. Копии сохраняются каждые 60сек. Для лучшего эффекта заполните заголовок
  446. </div>
  447. </div>
  448. <?
  449. }else{
  450. ?>
  451. <div class="alert alert-success m-4 bg-olive" role="alert">
  452. <h4 class="alert-heading">Для не сохранённых статей!</h4>
  453. <p>Вы ещё ни разу не сохранили документ, по этому нет возможности сделать его предпросмотр.</p>
  454. <hr>
  455. <p class="mb-0">Когда вы сохраните документ, станут доступны дополнительные функсии, в том числе авто сохранение локальной копии.</p>
  456. </div>
  457. <?
  458. }
  459. ?>
  460. </div>
  461. </div>
  462. <!-- правая колонка --->
  463. <div class="col-3">
  464. <div class="card card-primary">
  465. <div class="card-header">
  466. <h3 class="card-title">Фото</h3>
  467. </div>
  468. <div class="card-body">
  469. <style>
  470. #image {
  471. width: 100%;
  472. height: 56%;
  473. background: URL(/img/image.svg) no-repeat 50% 50%;
  474. background-size: contain;
  475. background-color: #fff;
  476. cursor: pointer;
  477. padding: 0px 0px 8px 0px;
  478. }
  479. #myTags {
  480. box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  481. padding: 3px 0px 3px 3px;
  482. margin: 5px 1px 3px 0px;
  483. border: 1px solid rgba(81, 203, 238, 1);
  484. }
  485. </style>
  486. <?
  487. if($news->id){
  488. $imageSrc = $news->getImage()->geturl(Image::SIZE_1040x586);
  489. /*
  490. $imageSrc = "/images/news/news/".$news->id."_sizehd.jpg";
  491. if( file_exists( \Yii::getAlias('@webroot').$imageSrc ) === false ){
  492. if( $news->photo_name != '' ){
  493. $imageSrc = $news->photo_name;
  494. }else{
  495. $imageSrc = '/img/e.gif';
  496. }
  497. }
  498. */
  499. $imageSrc .= "?r=".rand();
  500. }else{
  501. $imageSrc = '/img/e.gif';
  502. }
  503. ?>
  504. <img id="image" src="<?=$imageSrc?>" onClick="$('#modal').modal('show');document.getElementById('inputImage').click();" >
  505. <?
  506. echo CropperjsWidget::widget(['image' => 'image', 'file' => 'News[photo]', 'post' => 'cropping', 'aspectRatio' => '16/9']);
  507. ?><script>
  508. $('#container_image').attr('src', '<?=$imageSrc?>');
  509. </script>
  510. <label class="control-label" for="status-photo">Статусы для фото</label>
  511. <div class="btn-group" data-toggle="buttons" id="status-photo">
  512. <label class="btn btn-primary active btn-sm px-3" title="показывать фото">
  513. <input type="checkbox" autocomplete="off" name="News[photo_include]"<?=($news->photo_include == 'Y')?' checked':''?> value="Y"><i class="fa fa-eye ml-2"></i>
  514. </label>
  515. <label class="btn btn-info active btn-sm px-3" title="фото в пр. ленте">
  516. <input type="checkbox" autocomplete="off" name="News[photo_rcol]"<?=($news->photo_rcol == 'Y')?' checked':''?> value="Y"><i class="fa fa-list-alt ml-2"></i>
  517. </label>
  518. <label class="btn btn-info active btn-sm px-3" title="фото фильтр" onClick="javascript:$('#fphoto').modal('show');">
  519. <i class="fa fa-adjust"></i>
  520. </label>
  521. <label class="btn btn-dark active btn-sm px-3" title="удалить фото">
  522. <input type="checkbox" autocomplete="off" name="News[del_photo]" value="Y"><i class="fa fa-trash ml-2"></i>
  523. </label>
  524. </div>
  525. <div class="form-group field-title-photo required">
  526. <label class="control-label" for="title-photo">Подпись фото</label>
  527. <textarea id="title-photo" class="form-control" name="News[photo_title]" rows="1" aria-required="true"><?=$news->photo_title?></textarea>
  528. </div>
  529. <button type="button" class="btn btn-primary btn-block" onClick="javascript:$('#sphoto').modal('show');">Поискать</button>
  530. </div>
  531. </div>
  532. <!-- test -->
  533. <div class="card card-primary">
  534. <div class="ribbon-wrapper">
  535. <div class="ribbon bg-lightblue">
  536. SuperTag
  537. </div>
  538. </div>
  539. <div class="card-body bg-gradient-olive">
  540. <?
  541. $tagscheck = [];
  542. foreach( $Tagitems as $setmenuitem ){
  543. $tagscheck[$setmenuitem->id] = true;
  544. }
  545. foreach( $tagsmenu as $menuitem ){
  546. ?>
  547. <div class="custom-control custom-switch">
  548. <input class="custom-control-input" type="checkbox" value="<?=$menuitem->id?>" id="tflexCheck<?=$menuitem->id?>" name="ExtTag[<?=$menuitem->id?>]"<?=isset($tagscheck[$menuitem->id])?' checked':''?>>
  549. <label class="custom-control-label" for="tflexCheck<?=$menuitem->id?>"><?=$menuitem->title?></label>
  550. </div>
  551. <?
  552. }
  553. ?>
  554. </div>
  555. </div>
  556. <!-- /test -->
  557. <div class="card card-primary">
  558. <div class="ribbon-wrapper">
  559. <div class="ribbon bg-primary">
  560. Рубрики
  561. </div>
  562. </div>
  563. <div class="card-body">
  564. <?
  565. $atopic = array();
  566. if(!$news->isNewRecord)
  567. {
  568. $model = new NewsTopic();
  569. $Titems = $model->getForNews($news->id);
  570. foreach( $Titems as $item ){
  571. $atopic[$item->id] = $item->id;
  572. }
  573. }
  574. ?>
  575. <div class="accordion" id="TopicsSel">
  576. <div class="card">
  577. <div class="card-header" id="headingOne">
  578. <h2 class="mb-0">
  579. <button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#collapse1" aria-expanded="true" aria-controls="collapse1">
  580. Общий рубрикатор
  581. </button>
  582. </h2>
  583. </div>
  584. <div id="collapse1" class="collapse show" aria-labelledby="heading1" data-parent="#TopicsSel">
  585. <div class="card-body">
  586. <?
  587. foreach( NewsTopic::findActive()->getModels() as $item ){
  588. if( in_array( $item->id, [127,128]) ) continue; // пропустить разделы видео/подкасты
  589. if( $item->url == '----' ){
  590. ?>
  591. <div class="checkbox_title_hr">
  592. <span><?=$item->title?></span>
  593. </div>
  594. <?
  595. }else{
  596. ?>
  597. <div class="custom-control <?=($item->show == 'Y')?'custom-checkbox':'custom-switch bg-purple'?>">
  598. <input class="custom-control-input" type="checkbox" value="<?=$item->id?>" id="flexCheck<?=$item->id?>" name="Topics[<?=$item->id?>]"<?=(in_array($item->id, $atopic, true))?' checked':''?>>
  599. <label class="custom-control-label" for="flexCheck<?=$item->id?>">
  600. <?=$item->title?>
  601. </label>
  602. </div>
  603. <?
  604. }
  605. }
  606. ?>
  607. </div>
  608. </div>
  609. </div>
  610. <div class="card">
  611. <div class="card-header" id="heading2">
  612. <h2 class="mb-0">
  613. <button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#collapse2" aria-expanded="true" aria-controls="collapse2">
  614. Слушать
  615. </button>
  616. </h2>
  617. </div>
  618. <div id="collapse2" class="collapse" aria-labelledby="heading2" data-parent="#TopicsSel">
  619. <div class="card-body">
  620. <?
  621. foreach( NewsTopic::findActive(127)->getModels() as $item ){
  622. ?>
  623. <div class="custom-control <?=($item->show == 'Y')?'custom-checkbox':'custom-switch bg-purple'?>">
  624. <input class="custom-control-input" type="checkbox" value="<?=$item->id?>" id="flexCheck<?=$item->id?>" name="Topics[<?=$item->id?>]"<?=(in_array($item->id, $atopic, true))?' checked':''?>>
  625. <label class="custom-control-label" for="flexCheck<?=$item->id?>">
  626. <?=$item->title?>
  627. </label>
  628. </div>
  629. <?
  630. }
  631. ?>
  632. </div>
  633. </div>
  634. </div>
  635. <div class="card">
  636. <div class="card-header" id="heading3">
  637. <h2 class="mb-0">
  638. <button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#collapse3" aria-expanded="true" aria-controls="collapse3">
  639. Смотреть
  640. </button>
  641. </h2>
  642. </div>
  643. <div id="collapse3" class="collapse" aria-labelledby="heading3" data-parent="#TopicsSel">
  644. <div class="card-body">
  645. <?
  646. foreach( NewsTopic::findActive(128)->getModels() as $item ){
  647. ?>
  648. <div class="custom-control <?=($item->show == 'Y')?'custom-checkbox':'custom-switch bg-purple'?>">
  649. <input class="custom-control-input" type="checkbox" value="<?=$item->id?>" id="flexCheck<?=$item->id?>" name="Topics[<?=$item->id?>]"<?=(in_array($item->id, $atopic, true))?' checked':''?>>
  650. <label class="custom-control-label" for="flexCheck<?=$item->id?>">
  651. <?=$item->title?>
  652. </label>
  653. </div>
  654. <?
  655. }
  656. ?>
  657. </div>
  658. </div>
  659. </div>
  660. </div>
  661. </div>
  662. </div>
  663. <div class="card card-primary">
  664. <div class="ribbon-wrapper">
  665. <div class="ribbon bg-primary">
  666. сюжеты
  667. </div>
  668. </div>
  669. <div class="card-body">
  670. <div class="input-group">
  671. <div class="input-group-prepend">
  672. <span class="btn btn-primary" id="validatedInputGroupPrepend"><i class="fas fa-search"></i></span>
  673. </div>
  674. <input type="text" class="form-control" aria-describedby="validatedInputGroupPrepend" id="story">
  675. </div>
  676. <?
  677. $model = new Story();
  678. if(!$news->isNewRecord)
  679. {
  680. $Sitems = $model->getForNews($news->id);
  681. }else{
  682. $Sitems = [];
  683. }
  684. ?>
  685. <div class="custom-control custom-checkbox">
  686. <?
  687. foreach($Sitems as $item){
  688. ?>
  689. <div class="custom-control custom-checkbox">
  690. <input class="custom-control-input" type="checkbox" value="<?=$item->id?>" id="Story<?=$item->id?>" name="Story[<?=$item->id?>]" checked>
  691. <label class="custom-control-label" for="Story<?=$item->id?>">
  692. <?=$item->title?>
  693. </label>
  694. </div>
  695. <?
  696. }
  697. ?>
  698. <div id="story_items"></div>
  699. </div>
  700. </div>
  701. </div>
  702. <!-- end col r-->
  703. </div></div>
  704. <?
  705. echo $this->render('modalPhotoFilter', ['imageSrc'=>$imageSrc, 'news'=>$news]);
  706. ActiveForm::end();
  707. if(!$news->isNewRecord){
  708. ?>
  709. <!-- Modal -->
  710. <div class="modal fade" id="addGalleryModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  711. <div class="modal-dialog" role="document">
  712. <div class="modal-content">
  713. <form action="" class="gallery-form" id="galleryForm">
  714. <div class="modal-header">
  715. <h5 class="modal-title" id="exampleModalLabel">Добавление галлереи</h5>
  716. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  717. <span aria-hidden="true">&times;</span>
  718. </button>
  719. </div>
  720. <div class="modal-body">
  721. <input type="hidden" value="<?=$news->id?>" name="post_id">
  722. <div class="form-group">
  723. <label for="name">Название</label>
  724. <input type="text" class="form-control" name="name">
  725. </div>
  726. <div class="form-group">
  727. <label for="description">Описание</label>
  728. <input type="text" class="form-control" name="description">
  729. </div>
  730. </div>
  731. <div class="modal-footer">
  732. <button type="button" class="btn btn-secondary" data-dismiss="modal">Отмена</button>
  733. <button type="submit" class="btn btn-primary save">Сохранить</button>
  734. </div>
  735. </form>
  736. </div>
  737. </div>
  738. </div>
  739. <script>
  740. $(document).ready(function () {
  741. $("#galleryForm").submit(function (e) {
  742. e.preventDefault()
  743. $.get(
  744. '<?=\yii\helpers\Url::to(["/manager/news/add-gallery"])?>',
  745. $(this).serialize(),
  746. function (data){
  747. $("#addGalleryModal").modal('hide')
  748. $("#galleryForm")[0].reset()
  749. $("#galleriesContainer .card-body .galleries-list").append(data)
  750. }
  751. )
  752. })
  753. })
  754. let galleryRemove = function (id)
  755. {
  756. $.get(
  757. '<?=\yii\helpers\Url::to(["/manager/news/remove-gallery"])?>',
  758. {id:id},
  759. function (data){
  760. $("#gallery-" + id).remove();
  761. }
  762. )
  763. }
  764. </script>
  765. <script src="/components/admin/js/ls.js"></script>
  766. <?
  767. }
  768. ?>
  769. <script>
  770. $(function() {
  771. var cache = {};
  772. $( "#story" ).autocomplete({
  773. source: function( request, response ) {
  774. var term = request.term;
  775. if ( term in cache ) {
  776. response( cache[ term ] );
  777. return;
  778. }
  779. $.getJSON( "ajaxstory", {'q':request.term}, function( data, status, xhr ) {
  780. if( data.status == 'ok' ){
  781. cache[ term ] = data.item;
  782. response( data.item );
  783. }
  784. });
  785. },
  786. minLength: 3,
  787. select: function( event, ui ) {
  788. if( $( "#story_items :input[value='"+ui.item.id+"']" ).val() != ui.item.id ){
  789. $( "#story_items" ).append('<div class="custom-control custom-checkbox"><input class="custom-control-input" type="checkbox" name="Story[]" value="'+ui.item.id+'" checked id="storyi'+ui.item.id+'"><label class="custom-control-label" for="storyi'+ui.item.id+'">'+ ui.item.label +"</label></div>");
  790. }
  791. },
  792. /* open: function() {
  793. $( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
  794. },
  795. close: function() {
  796. $( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
  797. }*/
  798. });
  799. });
  800. window.datetimepicker_conf = {"bootcssVer":4,"icontype":"glyphicon","fontAwesome":true,"icons":{"leftArrow":"glyphicon-arrow-left","rightArrow":"glyphicon-arrow-right"},"format":"dd-mm-yyyy hh:ii","type":3,"startDate":"11-Oct-2000 04:35","todayHighlight":true,"language":"ru","autoclose":true,"timezone":"UTC"};
  801. jQuery(function ($) {
  802. if (jQuery('#dt_pub').data('datetimepicker')) { jQuery('#dt_pub').datetimepicker('destroy'); }
  803. $('#dt_pub').datetimepicker(datetimepicker_conf);
  804. });
  805. $(function() {
  806. window.varsubmit = false;
  807. $("input[id='news-title']").keyup(function count(){
  808. number = $("input[id='news-title']").val().length;
  809. $("#title_count").html(number);
  810. });
  811. $('#news-lid').keyup(function(){
  812. number = $(this).val().length;
  813. $("#lid_count").html(number);
  814. });
  815. $('#grpnh input:checkbox').click(function(){
  816. if ($(this).is(':checked')) {
  817. $('#grpnh input:checkbox').not(this).prop('checked', false);
  818. }
  819. });
  820. setInterval( function (){ sendping( '<?=$news->id?>' ) }, 10000 );
  821. function sendping( newsid ){
  822. $.get( "newsping", { id: newsid }, function(data){
  823. data = JSON.parse(data);
  824. if( data.status == 'warn' ) alert( 'В новости появился '+data['author'] );
  825. } );
  826. }
  827. $('#news-form').submit(function( event ) {
  828. console.log(window.varsubmit);
  829. val = $(document.activeElement).attr('name')
  830. if( (val == 'save' || val == 'send') && !window.varsubmit ){
  831. window.varsubmit = true; //запрет повторного вызова
  832. // отправка тэгов
  833. tags = $('#myTags').tagsValues();
  834. nform = $('#news-form');
  835. $.each(tags,function (key,value) {
  836. tpl = $('<input type="hidden" value="'+value+'" name="Tags[]">');
  837. nform.append(tpl);
  838. });
  839. }
  840. if( (val == 'save' || val == 'send') ) return true;
  841. });
  842. $("input[type=text]").keydown(function(event){
  843. if(event.keyCode == 13){
  844. event.preventDefault();
  845. return false;
  846. }
  847. });
  848. });
  849. function runSuggestions(element,query) {
  850. let sug_area=$(element).parents().eq(2).find('.autocomplete .autocomplete-items');
  851. if( query.length > 1 ){
  852. $.getJSON("/manager/tags/search", {'q':query}, function( data ) {
  853. _tag_input_suggestions_data = data;
  854. $.each(data,function (key,value) {
  855. let template = $("<div>"+value.name+"</div>").hide()
  856. sug_area.append(template)
  857. template.show()
  858. })
  859. });
  860. }
  861. }
  862. // CKEditor
  863. $(function () {
  864. if($('#js_news_content').length != 0){
  865. CKEDITOR.replace('js_news_content', {
  866. 'filebrowserBrowseUrl': '/components/admin/ckeditor/kcfinder/browse.php?type=files&uid=<?=$uuid?>',
  867. 'filebrowserImageBrowseUrl': '/components/admin/ckeditor/kcfinder/browse.php?type=images&uid=<?=$uuid?>',
  868. 'filebrowserFlashBrowseUrl': '/components/admin/ckeditor/kcfinder/browse.php?type=flash&uid=<?=$uuid?>',
  869. 'filebrowserUploadUrl': '/components/admin/ckeditor/kcfinder/upload.php?type=files&uid=<?=$uuid?>',
  870. 'filebrowserImageUploadUrl': '/components/admin/ckeditor/kcfinder/upload.php?type=images&uid=<?=$uuid?>',
  871. 'filebrowserFlashUploadUrl': '/components/admin/ckeditor/kcfinder/upload.php?type=flash&uid=<?=$uuid?>',
  872. 'filebrowserAudioBrowseUrl': '/components/admin/ckeditor/kcfinder/browse.php?type=files&uid=<?=$uuid?>',
  873. 'filebrowserlightboxUploadUrl': '/components/admin/ckeditor/kcfinder/browse.php?type=files&uid=<?=$uuid?>',
  874. 'height': 400
  875. });
  876. CKEDITOR.on('instanceReady', function(ev) {
  877. ev.editor.on('paste', function(evt) {
  878. evt.data.dataValue = evt.data.dataValue.replace(/[«»]/g,'"');
  879. console.log(evt.data.dataValue);
  880. }, null, null, 9);
  881. });
  882. }
  883. });
  884. window.onbeforeunload = function(e) {
  885. return "Вы уверены, что покидаете страницу?";
  886. };
  887. </script>
  888. <?
  889. // редактор end
  890. ?>
  891. </div>
  892. <div class="tab-pane fade" id="comments">
  893. <?
  894. // коменты
  895. echo $this->render('../comments/newsindex', [
  896. 'model' => $news,
  897. ]);
  898. ?>
  899. </div>
  900. </div>
  901. <?
  902. echo $this->render('formSP', [
  903. 'model' => $news,
  904. ]);
  905. echo $this->render('../top-slider/modalform', ['news'=>$news]);
  906. ?>