We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FeelUOwn 目前支持许多资源提供方,每个资源提供方其实也有自己的”主页内容“。FeelUOwn 的主页该展示什么内容呢?
有几种思路
个人觉得方案 3 是个不错的选项。
在 feeluown 中定义好一个组件的接口,并且在 feeluown 中预实现好若干种组件(比如排行榜组件、播放列表组件、日推组件),用户可以在 .fuorc 中指定主页应该展示哪几种组件。
.fuorc
举个例子,用户可以在 .fuorc 中这样配置
homepage = [ '推荐歌单', [ '私人FM按钮', '每日推荐按钮', ] 'KTV排行榜TOP10', ]
每个 id 都对应一个预实现好的组件,比如 '推荐歌单' 对应一个特定组件。
'推荐歌单'
为了更极致的拓展性,用户也可以在 .fuorc 中自己实现组件,FeelUOwn 可以定义一个类似的接口
class Widget: async def render(self): ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
简介与背景
FeelUOwn 目前支持许多资源提供方,每个资源提供方其实也有自己的”主页内容“。FeelUOwn 的主页该展示什么内容呢?
有几种思路
个人觉得方案 3 是个不错的选项。
方案概述
在 feeluown 中定义好一个组件的接口,并且在 feeluown 中预实现好若干种组件(比如排行榜组件、播放列表组件、日推组件),用户可以在
.fuorc
中指定主页应该展示哪几种组件。举个例子,用户可以在
.fuorc
中这样配置每个 id 都对应一个预实现好的组件,比如
'推荐歌单'
对应一个特定组件。为了更极致的拓展性,用户也可以在
.fuorc
中自己实现组件,FeelUOwn 可以定义一个类似的接口The text was updated successfully, but these errors were encountered: