Halo 2.0 的相册管理插件, 支持在 Console 进行管理以及为主题端提供 /photos
页面路由。
/photos
,需要注意的是,此插件需要主题提供模板(photos.html)才能访问 /photos
。git clone git@github.com:halo-sigs/plugin-photos.git
# 或者当你 fork 之后
git clone git@github.com:{your_github_id}/plugin-photos.git
cd path/to/plugin-photos
# macOS / Linux
./gradlew pnpmInstall
# Windows
./gradlew.bat pnpmInstall
# macOS / Linux
./gradlew build
# Windows
./gradlew.bat build
修改 Halo 配置文件:
halo:
plugin:
runtime-mode: development
classes-directories:
- "build/classes"
- "build/resources"
lib-directories:
- "libs"
fixedPluginPath:
- "/path/to/plugin-photos"
目前此插件为主题端提供了 /photos
路由,模板为 photos.html
,也提供了 Finder API,可以将图库列表渲染到任何地方。
group: 图片分组名称, 对应 #PhotoGroupVo.metadata.name
示例:/photos?group=photo-group-UEcvi | /photos/page/1?group=photo-group-UEcvi
groups
List<#PhotoGroupVo>
<th:block th:each="group : ${groups}">
<h2 th:text="${group.spec.displayName}"></h2>
<ul>
<li th:each="photo : ${group.photos}">
<img th:src="https://github.com/halo-sigs/plugin-photos/raw/main/${photo.spec.url}" th:alt="${photo.spec.displayName}" width="280">
</li>
</ul>
</th:block>
photos
<ul>
<li th:each="photo : ${photos.items}">
<img th:src="https://github.com/halo-sigs/plugin-photos/raw/main/${photo.spec.url}" th:alt="${photo.spec.displayName}" width="280">
</li>
</ul>
<div th:if="${photos.hasPrevious() || photos.hasNext()}">
<a th:href="https://github.com/halo-sigs/plugin-photos/blob/main/@{${photos.prevUrl}}">
<span>上一页</span>
</a>
<span th:text="${photos.page}"></span>
<a th:href="https://github.com/halo-sigs/plugin-photos/blob/main/@{${photos.nextUrl}}">
<span>下一页</span>
</a>
</div>
获取全部分组内容。
无
List<#PhotoGroupVo>
<th:block th:each="group : ${photoFinder.groupBy()}">
<h2 th:text="${group.spec.displayName}"></h2>
<ul>
<li th:each="photo : ${group.photos}">
<img th:src="https://github.com/halo-sigs/plugin-photos/raw/main/${photo.spec.url}" th:alt="${photo.spec.displayName}" width="280">
</li>
</ul>
</th:block>
获取全部图库内容。
无
List<#PhotoVo>
<ul>
<li th:each="photo : ${photoFinder.listAll()}" style="display: inline;">
<img th:src="https://github.com/halo-sigs/plugin-photos/raw/main/${photo.spec.url}" th:alt="${photo.spec.displayName}" width="280">
</li>
</ul>
根据分组获取图片列表。
group: string
- 图片分组名称, 对应 PhotoGroupVo.metadata.nameList<#PhotoVo>
<ul>
<li th:each="photo : ${photoFinder.listBy('photo-group-UEcvi')}" style="display: inline;">
<img th:src="https://github.com/halo-sigs/plugin-photos/raw/main/${photo.spec.url}" th:alt="${photo.spec.displayName}" width="280">
</li>
</ul>
根据分页参数获取图片列表。
page: int
- 分页页码,从 1 开始size: int
- 分页条数<th:block th:with="photos = ${photoFinder.list(1, 10)}">
<ul>
<li th:each="photo : ${photos.items}">
<img th:src="https://github.com/halo-sigs/plugin-photos/raw/main/${photo.spec.url}" th:alt="${photo.spec.displayName}" width="280">
</li>
</ul>
<div>
<span th:text="${photos.page}"></span>
</div>
</th:block>
根据分页参数及图片所在组获取图片列表。
page: int
- 分页页码,从 1 开始size: int
- 分页条数group: string
- 图片分组名称, 对应 PhotoGroupVo.metadata.name<th:block th:with="photos = ${photoFinder.list(1, 10, 'photo-group-UEcvi')}">
<ul>
<li th:each="photo : ${photos.items}">
<img th:src="https://github.com/halo-sigs/plugin-photos/raw/main/${photo.spec.url}" th:alt="${photo.spec.displayName}" width="280">
</li>
</ul>
<div>
<span th:text="${photos.page}"></span>
</div>
</th:block>
{
"metadata": {
"name": "string", // 唯一标识
"labels": {
"additionalProp1": "string"
},
"annotations": {
"additionalProp1": "string"
},
"creationTimestamp": "2022-11-20T13:06:38.512Z", // 创建时间
},
"spec": {
"displayName": "string", // 图片名称
"description": "string", // 图片描述
"url": "string", // 图片链接
"cover": "string", // 封面链接
"priority": 0, // 优先级
"groupName": "string", // 分组名称,对应分组 metadata.name
},
}
{
"metadata": {
"name": "string", // 唯一标识
"labels": {
"additionalProp1": "string"
},
"annotations": {
"additionalProp1": "string"
},
"creationTimestamp": "2022-11-20T13:06:38.512Z", // 创建时间
},
"spec": {
"displayName": "string", // 分组名称
"priority": 0, // 分组优先级
},
"status": {
"photoCount": 0, // 分组下图片数量
},
"photos": "List<#PhotoVo>", // 分组下所有图片列表
}
{
"page": 0, // 当前页码
"size": 0, // 每页条数
"total": 0, // 总条数
"items": "List<#PhotoVo>", // 图片列表数据
"first": true, // 是否为第一页
"last": true, // 是否为最后一页
"hasNext": true, // 是否有下一页
"hasPrevious": true, // 是否有上一页
"totalPages": 0 // 总页数
}
{
"page": 0, // 当前页码
"size": 0, // 每页条数
"total": 0, // 总条数
"items": "List<#PhotoVo>", // 图片列表数据
"first": true, // 是否为第一页
"last": true, // 是否为最后一页
"hasNext": true, // 是否有下一页
"hasPrevious": true, // 是否有上一页
"totalPages": 0, // 总页数
"prevUrl": "string", // 上一页链接
"nextUrl": "string" // 下一页链接
}
根据 Halo 的元数据表单定义文档和模型元数据文档,Halo 支持为部分模型的表单添加元数据表单,此插件同样适配了此功能,如果你作为主题开发者,需要为链接或者链接分组添加额外的字段,可以参考上述文档并结合下面的 TargetRef 列表进行适配。
对应模型 | group | kind |
---|---|---|
图库 | core.halo.run | Photo |
图库分组 | core.halo.run | PhotoGroup |