Skip to content

Commit cc6c55c

Browse files
committed
first commit
1 parent 792c801 commit cc6c55c

File tree

12 files changed

+207
-2
lines changed

12 files changed

+207
-2
lines changed

assets/.gitkeep

Whitespace-only changes.

common/common.scss

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.normalized-user-fields {
2+
display: flex;
3+
flex-direction: column;
4+
a {
5+
margin-right: 5px;
6+
}
7+
.fa {
8+
font-size: 1.2em;
9+
}
10+
.fa.d-icon.svg-icon.svg-string {
11+
margin-left: 0px;
12+
}
13+
}

desktop/desktop.scss

Whitespace-only changes.

javascripts/.gitkeep

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { apiInitializer } from "discourse/lib/api";
2+
import NormalizedProfileLinks from "../components/normalized-profile-links";
3+
4+
export default apiInitializer("1.8.0", (api) => {
5+
// console.log("hello world from api initializer!");
6+
api.renderInOutlet("user-post-names", NormalizedProfileLinks);
7+
api.renderInOutlet("user-card-post-names", NormalizedProfileLinks);
8+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
import Component from "@glimmer/component";
2+
import { service } from "@ember/service";
3+
import icon from "discourse-common/helpers/d-icon"; // Assuming this helper is valid.
4+
5+
export default class NormalizedProfileLinks extends Component {
6+
@service linksSettings;
7+
8+
get userModel() {
9+
// Safely fetch the user model from the outlet arguments.
10+
return this.args.outletArgs?.user || this.args.outletArgs?.model;
11+
}
12+
13+
get list() {
14+
// Get field options and fallback to an empty array if null or undefined.
15+
return this.linksSettings.fieldOptions(this.userModel) || [];
16+
}
17+
18+
<template>
19+
<div class="normalized-user-fields">
20+
{{#each this.list as |field|}}
21+
{{#if field.href}}
22+
<div>
23+
{{#unless field.icon}}{{field.name}}:{{/unless}}
24+
<a
25+
href={{field.href}}
26+
rel="noopener noreferrer"
27+
target="_blank"
28+
title={{field.handle}}
29+
>
30+
{{#if field.icon}}
31+
{{icon field.icon}}
32+
{{/if}}
33+
{{field.handle}}
34+
</a>
35+
</div>
36+
{{/if}}
37+
{{/each}}
38+
</div>
39+
</template>
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
import Service from "@ember/service";
2+
3+
export default class NormalizedProfileLinks extends Service {
4+
normalizeUsername(input) {
5+
if (!input) {
6+
return null;
7+
}
8+
9+
// Get the last segment after / or @
10+
const match = input.match(/[/@]([^/@\s]+)$/);
11+
return match ? match[1] : input.trim();
12+
}
13+
14+
normalizeUserLink(input, baseUrl) {
15+
const username = this.normalizeUsername(input);
16+
if (!username || !baseUrl) {
17+
return null;
18+
}
19+
20+
const normalizedBase = baseUrl.endsWith("/") ? baseUrl : baseUrl + "/";
21+
return `${normalizedBase}${username}`;
22+
}
23+
24+
fieldOptions(model) {
25+
const userFields = model?.user_fields;
26+
const profileLinks = settings.profile_links;
27+
const siteUserFields = model.site?.user_fields;
28+
if (userFields === undefined) {
29+
return null;
30+
}
31+
32+
return profileLinks
33+
.map((field) => {
34+
// console.log("doing this userField icon", field.icon);
35+
const fieldName = field.custom_field_name;
36+
const url = field.url;
37+
// console.log("fieldName/url", fieldName, url);
38+
39+
// const siteUserField = model.site?.user_fields.filterBy(
40+
// "custom_field_name",
41+
// field.link.value
42+
// )[0];
43+
44+
const fieldId = siteUserFields.filterBy("name", fieldName)[0]?.id;
45+
const handle = userFields[fieldId];
46+
47+
// console.log("field", field, handle);
48+
49+
if (fieldName) {
50+
field.name = fieldName;
51+
}
52+
53+
if (handle) {
54+
field.href = this.normalizeUserLink(handle, url);
55+
field.handle = this.normalizeUsername(handle);
56+
} else {
57+
return null;
58+
}
59+
60+
// if (siteUserField && userFields[siteUserField.id]) {
61+
// const socialLinkValue = userFields[siteUserField.id];
62+
// field.href =
63+
// (RegExp(baseregex).test(socialLinkValue)
64+
// ? socialLinkValue
65+
// : base + socialLinkValue) || "";
66+
// } else {
67+
// return null;
68+
// }
69+
70+
return field;
71+
})
72+
.compact();
73+
}
74+
}

mobile/mobile.scss

Whitespace-only changes.

scss/.gitkeep

Whitespace-only changes.

settings.yml

+72-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,72 @@
1-
example_setting:
2-
default: true
1+
svg_icons:
2+
type: "list"
3+
default: "question-circle|wallet|fab-x-twitter|fab-twitter|square-x-twitter|cloud|fab-github|fab-linkedin|fab-youtube|fab-vimeo|fab-instagram|fab-tiktok|fab-facebook|fab-threads|fab-mastodon|fab-strava"
4+
list_type: "compact"
5+
6+
profile_links:
7+
type: objects
8+
default:
9+
- custom_field_name: X
10+
icon: fab-x-twitter
11+
url: https://x.com/
12+
title: X
13+
- custom_field_name: X (Twitter)
14+
icon: x-twitter
15+
url: https://x.com/
16+
title: X
17+
- custom_field_name: BlueSky
18+
icon: cloud
19+
url: https://bsky.app/profile
20+
title: BlueSky
21+
- custom_field_name: GitHub
22+
icon: fab-github
23+
url: https://github.com
24+
title: GitHub
25+
- custom_field_name: LinkedIn
26+
icon: fab-linkedin
27+
url: https://linkedin.com
28+
title: LinkedIn
29+
- custom_field_name: youtube
30+
icon: fab-youtube
31+
url: https://youtube.com
32+
title: YouTube
33+
- custom_field_name: Vimeo
34+
icon: fab-vimeo
35+
url: https://vimeo.com
36+
title: Vimeo
37+
- custom_field_name: Instagram
38+
icon: fab-instagram
39+
url: https://instagram.com
40+
title: Instagram
41+
- custom_field_name: TikTok
42+
icon: fab-tiktok
43+
url: https://tiktok.com
44+
title: TikTok
45+
- custom_field_name: Facebook
46+
icon: fab-facebook
47+
url: https://facebook.com
48+
title: Facebook
49+
- custom_field_name: Threads
50+
icon: fab-threads
51+
url: https://threads.net
52+
title: Threads
53+
- custom_field_name: Mastodon
54+
icon: fab-mastodon
55+
url: https://mastodon.social
56+
title: Mastodon
57+
- custom_field_name: Strava
58+
icon: fab-strava
59+
url: https://strava.com/athletes/
60+
title: Strava
61+
62+
schema:
63+
name: site
64+
properties:
65+
custom_field_name:
66+
type: string
67+
icon:
68+
type: string
69+
url:
70+
type: string
71+
title:
72+
type: string

spec/system/.gitkeep

Whitespace-only changes.

test/acceptance/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)