在自定义 Telescope 主题中显示域 url
Display domain url in custom Telescope theme
我正在定制 Telescope 主题,我需要的是显示 domain url 来自 post 的地方。它应该显示在 PostsItem 中。
就像它存在于 Sidebar.io 网站上一样,this 部分。
前几天我在 Telescope slack 频道上问过,这是 advice/instructions 我得到:
Check in nova:posts/helpers there maybe a function to do that automatically. Else based on the string you get from the getDomain function, make it an array divided by /, and take the first argument which will be the domain
我想这应该有所帮助,我只是经验不足,无法完成这项工作。所以我仍然需要帮助。
这些链接也可能有帮助:
utils.js and helpers.js
我试图在文件 CustomPostsItem.jsx
中添加 <h3>{post.url}</h3>
,但我得到了完整的 url,而不仅仅是域。
提前致谢!
我在 Telescope slack channel 上得到了答案并且有效。
{post.url ? <span className="post-url-domain">{Telescope.utils.getDomain(post.url)}</span> : null}
我正在定制 Telescope 主题,我需要的是显示 domain url 来自 post 的地方。它应该显示在 PostsItem 中。
就像它存在于 Sidebar.io 网站上一样,this 部分。
前几天我在 Telescope slack 频道上问过,这是 advice/instructions 我得到:
Check in nova:posts/helpers there maybe a function to do that automatically. Else based on the string you get from the getDomain function, make it an array divided by /, and take the first argument which will be the domain
我想这应该有所帮助,我只是经验不足,无法完成这项工作。所以我仍然需要帮助。
这些链接也可能有帮助: utils.js and helpers.js
我试图在文件 CustomPostsItem.jsx
中添加 <h3>{post.url}</h3>
,但我得到了完整的 url,而不仅仅是域。
提前致谢!
我在 Telescope slack channel 上得到了答案并且有效。
{post.url ? <span className="post-url-domain">{Telescope.utils.getDomain(post.url)}</span> : null}