CommonHelper.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. // app/Libraries/CommonHelper.php
  3. namespace App\Libraries;
  4. use Dcat\Admin\Admin;
  5. class CommonHelper
  6. {
  7. /*
  8. * $images 格式:['image.jpg','image2.jpg']
  9. * 返回显示的HTML显示图片
  10. */
  11. public static function displayImage($images,$boxSize=60,$imgSize=1024)
  12. {
  13. if (empty($images) || empty($images[0])) {
  14. $largeUrl = $thumbnailUrl = '/static/images/no-image.jpg';
  15. $html = "<a href='$largeUrl' target='_blank'><img src='$thumbnailUrl' style='height:{$boxSize}px; margin-right:5px; border: 1px solid #ececf1;'></a>";
  16. } else {
  17. // 默认显示 100x100 的图片
  18. $thumbnailImages = array_map(function ($imageUrl) use ($boxSize) {
  19. $imageUrl= CommonHelper::ossUrl($imageUrl);
  20. $extension = pathinfo($imageUrl, PATHINFO_EXTENSION);
  21. if ($extension == 'svg') {
  22. return $imageUrl;
  23. } else {
  24. return $imageUrl . "?x-oss-process=image/resize,m_pad,h_{$boxSize},w_{$boxSize},color_ffffff";
  25. }
  26. }, $images);
  27. // 生成点击查看大图的链接
  28. $largeImages = array_map(function ($imageUrl) use ($imgSize) {
  29. $imageUrl= CommonHelper::ossUrl($imageUrl);
  30. $extension = pathinfo($imageUrl, PATHINFO_EXTENSION);
  31. if ($extension == 'svg') {
  32. return $imageUrl;
  33. } else {
  34. return $imageUrl . "?x-oss-process=image/resize,m_lfit,w_{$imgSize},h_{$imgSize}";
  35. }
  36. }, $images);
  37. // 显示缩略图,并添加点击查看大图的功能
  38. $html = '';
  39. foreach ($thumbnailImages as $index => $thumbnailUrl) {
  40. $largeUrl = $largeImages[$index];
  41. $html .= "<a href='$largeUrl' target='_blank'><img src='$thumbnailUrl' style='height:{$boxSize}px; margin-right:5px; border: 1px solid #ececf1;'></a>";
  42. }
  43. return $html;
  44. //
  45. // //默认用等比例缩放
  46. // $process = "?x-oss-process=image/resize,h_{$imgSize},m_lfit";
  47. // $html = '<div style="display: flex; flex-wrap: wrap; gap: 5px;">';
  48. // foreach ($images as $image) {
  49. // $html .= "<div style='width: {$boxSize}px; height: {$boxSize}px; padding: 3px; border: 1px solid #ddd; border-radius: 3px; background-color: #f9f9f9; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); display: flex; align-items: center; justify-content: center;'>
  50. // <img data-action='preview-img' src='" . self::ossUrl($image).$process . "' style='max-width: 100%; max-height: 100%; object-fit: contain;'>
  51. // </div>";
  52. // }
  53. // $html .= '</div>';
  54. }
  55. return $html;
  56. }
  57. /*
  58. * 返回oss的url
  59. */
  60. public static function ossUrl($imageUrl)
  61. {
  62. if (strpos($imageUrl, 'http:') === 0 || strpos($imageUrl, 'https:') === 0) {
  63. return $imageUrl;
  64. }
  65. if (env('OSS_DOMAIN')) {
  66. return "http://".env('OSS_DOMAIN').'/'.$imageUrl;
  67. }
  68. return "http://".env('OSS_BUCKET').'.'.env('OSS_ENDPOINT').'/'.$imageUrl;
  69. }
  70. /*
  71. * 替换新增与编辑的url,在后边加上指定的参数 (适用于弹出框的新增与编辑)
  72. * $addButton = '.tree-quick-create';
  73. * $editButton = '.tree-quick-edit';
  74. * $paramsUrl = 'location=0';
  75. */
  76. public static function replaceAddEditerUrl($addButton,$editButton,$paramsUrl) {
  77. Admin::script(
  78. <<<JS
  79. var button = $('{$addButton}');
  80. var currentUrl = button.attr('data-url');
  81. if (currentUrl.indexOf('?') === -1) {
  82. button.attr('data-url', currentUrl + '?{$paramsUrl}');
  83. } else {
  84. button.attr('data-url', currentUrl + '&{$paramsUrl}');
  85. }
  86. $('{$editButton}').each(function() {
  87. var currentUrl = $(this).attr('data-url');
  88. if (currentUrl.indexOf('?') === -1) {
  89. $(this).attr('data-url', currentUrl + '?{$paramsUrl}');
  90. } else {
  91. // 如果已经有查询参数,添加 &id=123
  92. $(this).attr('data-url', currentUrl + '&{$paramsUrl}');
  93. }
  94. });
  95. JS
  96. );
  97. }
  98. public static function seoReplace($titleName = 'title',$modelName = 'pages')
  99. {
  100. if ($titleName) {
  101. Admin::script(
  102. <<<JS
  103. $('input[name="{$titleName}"]').on('input', function() {
  104. // 将 title 的值赋给 seo_title
  105. $('input[name="seo_title"]').val($(this).val());
  106. });
  107. JS
  108. );
  109. }
  110. //ajax 生成slug
  111. if ($modelName) {
  112. Admin::script(
  113. <<<JS
  114. $('input[name="{$titleName}"]').on('blur', function() {
  115. //通过ajax请求修改slug
  116. title = $(this).val();
  117. $.ajax({
  118. url: '/dist/api/generate-slug',
  119. type: 'GET',
  120. data: {
  121. model:'{$modelName}',
  122. title: title,
  123. },
  124. success: function(response) {
  125. $('input[name="slug"]').val(response.slug);
  126. }
  127. });
  128. });
  129. JS
  130. );
  131. }
  132. }
  133. }