Move user RSS icon (WIP)
Signed-off-by: Minecon724 <minecon724@noreply.git.m724.eu>
This commit is contained in:
parent
a94e53c017
commit
c17f373837
5 changed files with 26 additions and 6 deletions
|
@ -22,10 +22,7 @@
|
|||
</a>
|
||||
{{end}}</span>
|
||||
<div class="tw-mt-2">
|
||||
<a class="muted" href="{{.ContextUser.HomeLink}}?tab=followers">{{svg "octicon-people" 18 "tw-mr-1"}}{{ctx.Locale.TrN .NumFollowers "user.followers_one" "user.followers_few" .NumFollowers}}</a> · <a class="muted" href="{{.ContextUser.HomeLink}}?tab=following">{{ctx.Locale.TrN .NumFollowing "user.following_one" "user.following_few" .NumFollowing}}</a>
|
||||
{{if and .EnableFeed (or .IsAdmin (eq .SignedUserID .ContextUser.ID) (not .ContextUser.KeepActivityPrivate))}}
|
||||
<a href="{{.ContextUser.HomeLink}}.rss"><i class="ui text grey tw-ml-2" data-tooltip-content="{{ctx.Locale.Tr "rss_feed"}}">{{svg "octicon-rss" 18}}</i></a>
|
||||
{{end}}
|
||||
<a class="muted" href="{{.ContextUser.HomeLink}}?tab=followers">{{svg "octicon-people" 20 "tw-mr-2"}}{{ctx.Locale.TrN .NumFollowers "user.followers_one" "user.followers_few" .NumFollowers}}</a> · <a class="muted" href="{{.ContextUser.HomeLink}}?tab=following">{{ctx.Locale.TrN .NumFollowing "user.following_one" "user.following_few" .NumFollowing}}</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="extra content tw-break-anywhere">
|
||||
|
|
|
@ -8,6 +8,11 @@
|
|||
data-locale-contributions-few="{{ctx.Locale.Tr "heatmap.contributions_few"}}"
|
||||
data-locale-more="{{ctx.Locale.Tr "heatmap.more"}}"
|
||||
data-locale-less="{{ctx.Locale.Tr "heatmap.less"}}"
|
||||
data-locale-rss-feed="{{ctx.Locale.Tr "rss_feed"}}"
|
||||
{{if and .EnableFeed (or .IsAdmin (eq .SignedUserID .ContextUser.ID) (not .ContextUser.KeepActivityPrivate))}}
|
||||
data-rss-target="{{.ContextUser.HomeLink}}.rss"
|
||||
{{end}}
|
||||
></div>
|
||||
<div class="divider"></div>
|
||||
<div id="rss-icon-src" style="display: none;">{{ svg "octicon-rss" 16 }}</div>
|
||||
{{end}}
|
||||
|
|
|
@ -56,3 +56,7 @@
|
|||
bottom: -4px;
|
||||
}
|
||||
}
|
||||
|
||||
.vch__legend-right {
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
|
|
@ -12,6 +12,10 @@ export default {
|
|||
type: Object,
|
||||
default: () => {},
|
||||
},
|
||||
extra: {
|
||||
type: Object,
|
||||
default: () => {},
|
||||
},
|
||||
},
|
||||
data: () => ({
|
||||
colorRange: [
|
||||
|
@ -54,7 +58,11 @@ export default {
|
|||
};
|
||||
</script>
|
||||
<template>
|
||||
<div class="total-contributions">
|
||||
<div class="total-contributions tw-ml-2">
|
||||
<a v-if="extra.rss_target" :href="extra.rss_target">
|
||||
<i class="ui text grey tw-mr-1" :data-tooltip-content="locale.rss_feed" v-html="extra.rss_icon"/>
|
||||
</a>
|
||||
|
||||
{{ locale.contributions_in_the_last_12_months }}
|
||||
</div>
|
||||
<calendar-heatmap
|
||||
|
|
|
@ -28,9 +28,15 @@ export function initHeatmap() {
|
|||
contributions_few: el.getAttribute('data-locale-contributions-few'),
|
||||
more: el.getAttribute('data-locale-more'),
|
||||
less: el.getAttribute('data-locale-less'),
|
||||
rss_feed: el.getAttribute('data-locale-rss-feed'),
|
||||
};
|
||||
|
||||
const View = createApp(ActivityHeatmap, {values, locale});
|
||||
const extra = {
|
||||
rss_target: el.getAttribute('data-rss-target'),
|
||||
rss_icon: document.getElementById('rss-icon-src').innerHTML,
|
||||
};
|
||||
|
||||
const View = createApp(ActivityHeatmap, {values, locale, extra});
|
||||
View.mount(el);
|
||||
el.classList.remove('is-loading');
|
||||
} catch (err) {
|
||||
|
|
Loading…
Add table
Reference in a new issue