formNews.php 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954
  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. <?
  437. }
  438. ?>
  439. <div class="card card-info my-3">
  440. <div class="card-header">
  441. <h3 class="card-title">Локальные копии автосохранение</h3>
  442. </div>
  443. <div class="card-body text-right">
  444. <button class="btn btn-primary" type="button" onClick="SaveLocal()">Сохранить</button>
  445. <button class="btn btn-primary" type="button" onClick="LoadLocal()">Востановить</button>
  446. </div>
  447. <div class="card-footer">
  448. Копии сохраняются каждые 60сек. Для лучшего эффекта заполните заголовок
  449. </div>
  450. </div>
  451. <?
  452. if($news->isNewRecord){
  453. ?>
  454. <div class="alert alert-success m-4 bg-olive" role="alert">
  455. <h4 class="alert-heading">Для не сохранённых статей!</h4>
  456. <p>Вы ещё ни разу не сохранили документ, по этому нет возможности сделать его предпросмотр.</p>
  457. <hr>
  458. <p class="mb-0">Когда вы сохраните документ, станут доступны дополнительные функсии, в том числе авто сохранение локальной копии.</p>
  459. </div>
  460. <?
  461. }
  462. ?>
  463. </div>
  464. </div>
  465. <!-- правая колонка --->
  466. <div class="col-3">
  467. <div class="card card-primary">
  468. <div class="card-header">
  469. <h3 class="card-title">Фото</h3>
  470. </div>
  471. <div class="card-body">
  472. <style>
  473. #image {
  474. width: 100%;
  475. height: 56%;
  476. background: URL(/img/image.svg) no-repeat 50% 50%;
  477. background-size: contain;
  478. background-color: #fff;
  479. cursor: pointer;
  480. padding: 0px 0px 8px 0px;
  481. }
  482. #myTags {
  483. box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  484. padding: 3px 0px 3px 3px;
  485. margin: 5px 1px 3px 0px;
  486. border: 1px solid rgba(81, 203, 238, 1);
  487. }
  488. </style>
  489. <?
  490. if($news->id){
  491. $imageSrc = $news->getImage()->geturl(Image::SIZE_1040x586);
  492. /*
  493. $imageSrc = "/images/news/news/".$news->id."_sizehd.jpg";
  494. if( file_exists( \Yii::getAlias('@webroot').$imageSrc ) === false ){
  495. if( $news->photo_name != '' ){
  496. $imageSrc = $news->photo_name;
  497. }else{
  498. $imageSrc = '/img/e.gif';
  499. }
  500. }
  501. */
  502. $imageSrc .= "?r=".rand();
  503. }else{
  504. $imageSrc = '/img/e.gif';
  505. }
  506. ?>
  507. <img id="image" src="<?=$imageSrc?>" onClick="$('#modal').modal('show');document.getElementById('inputImage').click();" >
  508. <?
  509. echo CropperjsWidget::widget(['image' => 'image', 'file' => 'News[photo]', 'post' => 'cropping', 'aspectRatio' => '16/9']);
  510. ?><script>
  511. $('#container_image').attr('src', '<?=$imageSrc?>');
  512. </script>
  513. <label class="control-label" for="status-photo">Статусы для фото</label>
  514. <div class="btn-group" data-toggle="buttons" id="status-photo">
  515. <label class="btn btn-primary active btn-sm px-3" title="показывать фото">
  516. <input type="checkbox" autocomplete="off" name="News[photo_include]"<?=($news->photo_include == 'Y')?' checked':''?> value="Y"><i class="fa fa-eye ml-2"></i>
  517. </label>
  518. <label class="btn btn-info active btn-sm px-3" title="фото в пр. ленте">
  519. <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>
  520. </label>
  521. <label class="btn btn-info active btn-sm px-3" title="фото фильтр" onClick="javascript:$('#fphoto').modal('show');">
  522. <i class="fa fa-adjust"></i>
  523. </label>
  524. <label class="btn btn-dark active btn-sm px-3" title="удалить фото">
  525. <input type="checkbox" autocomplete="off" name="News[del_photo]" value="Y"><i class="fa fa-trash ml-2"></i>
  526. </label>
  527. </div>
  528. <div class="form-group field-title-photo required">
  529. <label class="control-label" for="title-photo">Подпись фото</label>
  530. <textarea id="title-photo" class="form-control" name="News[photo_title]" rows="1" aria-required="true"><?=$news->photo_title?></textarea>
  531. </div>
  532. <button type="button" class="btn btn-primary btn-block" onClick="javascript:$('#sphoto').modal('show');">Поискать</button>
  533. </div>
  534. </div>
  535. <!-- test -->
  536. <div class="card card-primary">
  537. <div class="ribbon-wrapper">
  538. <div class="ribbon bg-lightblue">
  539. SuperTag
  540. </div>
  541. </div>
  542. <div class="card-body bg-gradient-olive">
  543. <?
  544. $tagscheck = [];
  545. foreach( $Tagitems as $setmenuitem ){
  546. $tagscheck[$setmenuitem->id] = true;
  547. }
  548. foreach( $tagsmenu as $menuitem ){
  549. ?>
  550. <div class="custom-control custom-switch">
  551. <input class="custom-control-input" type="checkbox" value="<?=$menuitem->id?>" id="tflexCheck<?=$menuitem->id?>" name="ExtTag[<?=$menuitem->id?>]"<?=isset($tagscheck[$menuitem->id])?' checked':''?>>
  552. <label class="custom-control-label" for="tflexCheck<?=$menuitem->id?>"><?=$menuitem->title?></label>
  553. </div>
  554. <?
  555. }
  556. ?>
  557. </div>
  558. </div>
  559. <!-- /test -->
  560. <div class="card card-primary">
  561. <div class="ribbon-wrapper">
  562. <div class="ribbon bg-primary">
  563. Рубрики
  564. </div>
  565. </div>
  566. <div class="card-body">
  567. <?
  568. $atopic = array();
  569. if(!$news->isNewRecord)
  570. {
  571. $model = new NewsTopic();
  572. $Titems = $model->getForNews($news->id);
  573. foreach( $Titems as $item ){
  574. $atopic[$item->id] = $item->id;
  575. }
  576. }
  577. ?>
  578. <div class="accordion" id="TopicsSel">
  579. <div class="card">
  580. <div class="card-header" id="headingOne">
  581. <h2 class="mb-0">
  582. <button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#collapse1" aria-expanded="true" aria-controls="collapse1">
  583. Общий рубрикатор
  584. </button>
  585. </h2>
  586. </div>
  587. <div id="collapse1" class="collapse show" aria-labelledby="heading1" data-parent="#TopicsSel">
  588. <div class="card-body">
  589. <?
  590. foreach( NewsTopic::findActive()->getModels() as $item ){
  591. if( in_array( $item->id, [127,128]) ) continue; // пропустить разделы видео/подкасты
  592. if( $item->url == '----' ){
  593. ?>
  594. <div class="checkbox_title_hr">
  595. <span><?=$item->title?></span>
  596. </div>
  597. <?
  598. }else{
  599. ?>
  600. <div class="custom-control <?=($item->show == 'Y')?'custom-checkbox':'custom-switch bg-purple'?>">
  601. <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':''?>>
  602. <label class="custom-control-label" for="flexCheck<?=$item->id?>">
  603. <?=$item->title?>
  604. </label>
  605. </div>
  606. <?
  607. }
  608. }
  609. ?>
  610. </div>
  611. </div>
  612. </div>
  613. <div class="card">
  614. <div class="card-header" id="heading2">
  615. <h2 class="mb-0">
  616. <button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#collapse2" aria-expanded="true" aria-controls="collapse2">
  617. Слушать
  618. </button>
  619. </h2>
  620. </div>
  621. <div id="collapse2" class="collapse" aria-labelledby="heading2" data-parent="#TopicsSel">
  622. <div class="card-body">
  623. <?
  624. foreach( NewsTopic::findActive(127)->getModels() as $item ){
  625. ?>
  626. <div class="custom-control <?=($item->show == 'Y')?'custom-checkbox':'custom-switch bg-purple'?>">
  627. <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':''?>>
  628. <label class="custom-control-label" for="flexCheck<?=$item->id?>">
  629. <?=$item->title?>
  630. </label>
  631. </div>
  632. <?
  633. }
  634. ?>
  635. </div>
  636. </div>
  637. </div>
  638. <div class="card">
  639. <div class="card-header" id="heading3">
  640. <h2 class="mb-0">
  641. <button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#collapse3" aria-expanded="true" aria-controls="collapse3">
  642. Смотреть
  643. </button>
  644. </h2>
  645. </div>
  646. <div id="collapse3" class="collapse" aria-labelledby="heading3" data-parent="#TopicsSel">
  647. <div class="card-body">
  648. <?
  649. foreach( NewsTopic::findActive(128)->getModels() as $item ){
  650. ?>
  651. <div class="custom-control <?=($item->show == 'Y')?'custom-checkbox':'custom-switch bg-purple'?>">
  652. <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':''?>>
  653. <label class="custom-control-label" for="flexCheck<?=$item->id?>">
  654. <?=$item->title?>
  655. </label>
  656. </div>
  657. <?
  658. }
  659. ?>
  660. </div>
  661. </div>
  662. </div>
  663. </div>
  664. </div>
  665. </div>
  666. <div class="card card-primary">
  667. <div class="ribbon-wrapper">
  668. <div class="ribbon bg-primary">
  669. сюжеты
  670. </div>
  671. </div>
  672. <div class="card-body">
  673. <div class="input-group">
  674. <div class="input-group-prepend">
  675. <span class="btn btn-primary" id="validatedInputGroupPrepend"><i class="fas fa-search"></i></span>
  676. </div>
  677. <input type="text" class="form-control" aria-describedby="validatedInputGroupPrepend" id="story">
  678. </div>
  679. <?
  680. $model = new Story();
  681. if(!$news->isNewRecord)
  682. {
  683. $Sitems = $model->getForNews($news->id);
  684. }else{
  685. $Sitems = [];
  686. }
  687. ?>
  688. <div class="custom-control custom-checkbox">
  689. <?
  690. foreach($Sitems as $item){
  691. ?>
  692. <div class="custom-control custom-checkbox">
  693. <input class="custom-control-input" type="checkbox" value="<?=$item->id?>" id="Story<?=$item->id?>" name="Story[<?=$item->id?>]" checked>
  694. <label class="custom-control-label" for="Story<?=$item->id?>">
  695. <?=$item->title?>
  696. </label>
  697. </div>
  698. <?
  699. }
  700. ?>
  701. <div id="story_items"></div>
  702. </div>
  703. </div>
  704. </div>
  705. <!-- end col r-->
  706. </div></div>
  707. <?
  708. echo $this->render('modalPhotoFilter', ['imageSrc'=>$imageSrc, 'news'=>$news]);
  709. ActiveForm::end();
  710. if(!$news->isNewRecord){
  711. ?>
  712. <!-- Modal -->
  713. <div class="modal fade" id="addGalleryModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  714. <div class="modal-dialog" role="document">
  715. <div class="modal-content">
  716. <form action="" class="gallery-form" id="galleryForm">
  717. <div class="modal-header">
  718. <h5 class="modal-title" id="exampleModalLabel">Добавление галлереи</h5>
  719. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  720. <span aria-hidden="true">&times;</span>
  721. </button>
  722. </div>
  723. <div class="modal-body">
  724. <input type="hidden" value="<?=$news->id?>" name="post_id">
  725. <div class="form-group">
  726. <label for="name">Название</label>
  727. <input type="text" class="form-control" name="name">
  728. </div>
  729. <div class="form-group">
  730. <label for="description">Описание</label>
  731. <input type="text" class="form-control" name="description">
  732. </div>
  733. </div>
  734. <div class="modal-footer">
  735. <button type="button" class="btn btn-secondary" data-dismiss="modal">Отмена</button>
  736. <button type="submit" class="btn btn-primary save">Сохранить</button>
  737. </div>
  738. </form>
  739. </div>
  740. </div>
  741. </div>
  742. <script>
  743. $(document).ready(function () {
  744. $("#galleryForm").submit(function (e) {
  745. e.preventDefault()
  746. $.get(
  747. '<?=\yii\helpers\Url::to(["/manager/news/add-gallery"])?>',
  748. $(this).serialize(),
  749. function (data){
  750. $("#addGalleryModal").modal('hide')
  751. $("#galleryForm")[0].reset()
  752. $("#galleriesContainer .card-body .galleries-list").append(data)
  753. }
  754. )
  755. })
  756. })
  757. let galleryRemove = function (id)
  758. {
  759. $.get(
  760. '<?=\yii\helpers\Url::to(["/manager/news/remove-gallery"])?>',
  761. {id:id},
  762. function (data){
  763. $("#gallery-" + id).remove();
  764. }
  765. )
  766. }
  767. </script>
  768. <?
  769. }
  770. ?>
  771. <script src="/components/admin/js/ls.js"></script>
  772. <script>
  773. $(function() {
  774. var cache = {};
  775. $( "#story" ).autocomplete({
  776. source: function( request, response ) {
  777. var term = request.term;
  778. if ( term in cache ) {
  779. response( cache[ term ] );
  780. return;
  781. }
  782. $.getJSON( "ajaxstory", {'q':request.term}, function( data, status, xhr ) {
  783. if( data.status == 'ok' ){
  784. cache[ term ] = data.item;
  785. response( data.item );
  786. }
  787. });
  788. },
  789. minLength: 3,
  790. select: function( event, ui ) {
  791. if( $( "#story_items :input[value='"+ui.item.id+"']" ).val() != ui.item.id ){
  792. $( "#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>");
  793. }
  794. },
  795. /* open: function() {
  796. $( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
  797. },
  798. close: function() {
  799. $( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
  800. }*/
  801. });
  802. });
  803. 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"};
  804. jQuery(function ($) {
  805. if (jQuery('#dt_pub').data('datetimepicker')) { jQuery('#dt_pub').datetimepicker('destroy'); }
  806. $('#dt_pub').datetimepicker(datetimepicker_conf);
  807. });
  808. $(function() {
  809. window.varsubmit = false;
  810. $("input[id='news-title']").keyup(function count(){
  811. number = $("input[id='news-title']").val().length;
  812. $("#title_count").html(number);
  813. });
  814. $('#news-lid').keyup(function(){
  815. number = $(this).val().length;
  816. $("#lid_count").html(number);
  817. });
  818. $('#grpnh input:checkbox').click(function(){
  819. if ($(this).is(':checked')) {
  820. $('#grpnh input:checkbox').not(this).prop('checked', false);
  821. }
  822. });
  823. setInterval( function (){ sendping( '<?=$news->id?>' ) }, 10000 );
  824. function sendping( newsid ){
  825. $.get( "newsping", { id: newsid }, function(data){
  826. data = JSON.parse(data);
  827. if( data.status == 'warn' ) alert( 'В новости появился '+data['author'] );
  828. } );
  829. }
  830. $('#news-form').submit(function( event ) {
  831. console.log(window.varsubmit);
  832. val = $(document.activeElement).attr('name')
  833. if( (val == 'save' || val == 'send') && !window.varsubmit ){
  834. window.varsubmit = true; //запрет повторного вызова
  835. // отправка тэгов
  836. tags = $('#myTags').tagsValues();
  837. nform = $('#news-form');
  838. $.each(tags,function (key,value) {
  839. tpl = $('<input type="hidden" value="'+value+'" name="Tags[]">');
  840. nform.append(tpl);
  841. });
  842. }
  843. if( (val == 'save' || val == 'send') ) return true;
  844. });
  845. $("input[type=text]").keydown(function(event){
  846. if(event.keyCode == 13){
  847. event.preventDefault();
  848. return false;
  849. }
  850. });
  851. });
  852. function runSuggestions(element,query) {
  853. let sug_area=$(element).parents().eq(2).find('.autocomplete .autocomplete-items');
  854. if( query.length > 1 ){
  855. $.getJSON("/manager/tags/search", {'q':query}, function( data ) {
  856. _tag_input_suggestions_data = data;
  857. $.each(data,function (key,value) {
  858. let template = $("<div>"+value.name+"</div>").hide()
  859. sug_area.append(template)
  860. template.show()
  861. })
  862. });
  863. }
  864. }
  865. // CKEditor
  866. $(function () {
  867. if($('#js_news_content').length != 0){
  868. CKEDITOR.replace('js_news_content', {
  869. 'filebrowserBrowseUrl': '/components/admin/ckeditor/kcfinder/browse.php?type=files&uid=<?=$uuid?>',
  870. 'filebrowserImageBrowseUrl': '/components/admin/ckeditor/kcfinder/browse.php?type=images&uid=<?=$uuid?>',
  871. 'filebrowserFlashBrowseUrl': '/components/admin/ckeditor/kcfinder/browse.php?type=flash&uid=<?=$uuid?>',
  872. 'filebrowserUploadUrl': '/components/admin/ckeditor/kcfinder/upload.php?type=files&uid=<?=$uuid?>',
  873. 'filebrowserImageUploadUrl': '/components/admin/ckeditor/kcfinder/upload.php?type=images&uid=<?=$uuid?>',
  874. 'filebrowserFlashUploadUrl': '/components/admin/ckeditor/kcfinder/upload.php?type=flash&uid=<?=$uuid?>',
  875. 'filebrowserAudioBrowseUrl': '/components/admin/ckeditor/kcfinder/browse.php?type=files&uid=<?=$uuid?>',
  876. 'filebrowserlightboxUploadUrl': '/components/admin/ckeditor/kcfinder/browse.php?type=files&uid=<?=$uuid?>',
  877. 'height': 400
  878. });
  879. CKEDITOR.on('instanceReady', function(ev) {
  880. ev.editor.on('paste', function(evt) {
  881. evt.data.dataValue = evt.data.dataValue.replace(/[«»]/g,'"');
  882. console.log(evt.data.dataValue);
  883. }, null, null, 9);
  884. });
  885. }
  886. });
  887. window.onbeforeunload = function(e) {
  888. return "Вы уверены, что покидаете страницу?";
  889. };
  890. </script>
  891. <?
  892. // редактор end
  893. ?>
  894. </div>
  895. <div class="tab-pane fade" id="comments">
  896. <?
  897. // коменты
  898. echo $this->render('../comments/newsindex', [
  899. 'model' => $news,
  900. ]);
  901. ?>
  902. </div>
  903. </div>
  904. <?
  905. echo $this->render('formSP', [
  906. 'model' => $news,
  907. ]);
  908. echo $this->render('../top-slider/modalform', ['news'=>$news]);
  909. ?>