formNews.php 37 KB

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