123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?php
- declare(strict_types=1);
- namespace catcher;
- use catcher\library\excel\Excel;
- use catcher\library\excel\ExcelContract;
- use think\facade\Cache;
- use think\model\Collection;
- class CatchModelCollection extends Collection
- {
- /**
- * tree 结构
- *
- * @time 2020年10月21日
- * @param int $pid
- * @param string $pidField
- * @param string $children
- * @return array
- */
- public function toTree($pid = 0, $pidField = 'parent_id', $children = 'children')
- {
- return Tree::done($this->items, $pid, $pidField, $children);
- }
- /**
- * 导出数据
- *
- * @time 2020年10月21日
- * @param $header
- * @param string $path
- * @param string $disk
- * @throws \PhpOffice\PhpSpreadsheet\Exception
- * @return mixed|string[]
- */
- public function export($header, $path = '', $disk = 'local')
- {
- $excel = new Class($header, $this->items) implements ExcelContract
- {
- protected $headers;
- protected $sheets;
- public function __construct($headers, $sheets)
- {
- $this->headers = $headers;
- $this->sheets = $sheets;
- }
- public function headers(): array
- {
- // TODO: Implement headers() method.
- return $this->headers;
- }
- public function sheets()
- {
- // TODO: Implement sheets() method.
- return $this->sheets;
- }
- };
- if (!$path) {
- $path = Utils::publicPath('exports');
- }
- return (new Excel)->save($excel, $path, $disk);
- }
- /**
- * 缓存 collection
- *
- * @time 2020年10月21日
- * @param $key
- * @param int $ttl
- * @param string $store
- * @return bool
- * @throws \Psr\SimpleCache\InvalidArgumentException
- */
- public function cache($key, int $ttl = 0, string $store = 'redis')
- {
- return Cache::store($store)->set($key, $this->items, $ttl);
- }
- /**
- * 获取当前级别下的所有子级
- *
- * @time 2020年11月04日
- * @param array $ids
- * @param string $parentFields
- * @param string $column
- * @return array
- */
- public function getAllChildrenIds(array $ids, $parentFields = 'parent_id', $column = 'id')
- {
- array_walk($ids, function (&$item){
- $item = intval($item);
- });
- $childDepartmentIds = $this->whereIn($parentFields, $ids)->column($column);
- if (!empty($childDepartmentIds)) {
- $childDepartmentIds = array_merge($childDepartmentIds, $this->getAllChildrenIds($childDepartmentIds));
- }
- return $childDepartmentIds;
- }
- }
|