summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDessalines <happydooby@gmail.com>2019-06-02 19:46:35 -0700
committerDessalines <happydooby@gmail.com>2019-06-02 19:46:35 -0700
commit0a0c80fbbeac2342bacf68e0cd6c047a369ed742 (patch)
tree2c52cc84554c9d9953085235658f990424627428
parentc337f54a49fcb9dcf96e90f81783ba9817cc01a1 (diff)
parent73e8b3fcd8439d95bb671d67f8f862b4cb82cc74 (diff)
Merge branch 'dev'
-rw-r--r--server/src/api/user.rs22
-rw-r--r--ui/src/components/communities.tsx6
-rw-r--r--ui/src/components/community.tsx2
-rw-r--r--ui/src/components/create-community.tsx3
-rw-r--r--ui/src/components/create-post.tsx3
-rw-r--r--ui/src/components/inbox.tsx2
-rw-r--r--ui/src/components/login.tsx2
-rw-r--r--ui/src/components/main.tsx6
-rw-r--r--ui/src/components/modlog.tsx2
-rw-r--r--ui/src/components/post.tsx2
-rw-r--r--ui/src/components/search.tsx4
-rw-r--r--ui/src/components/sponsors.tsx3
-rw-r--r--ui/src/components/user.tsx2
-rw-r--r--ui/src/index.html1
-rw-r--r--ui/src/services/UserService.ts1
-rw-r--r--ui/src/services/WebSocketService.ts1
-rw-r--r--ui/src/version.ts2
17 files changed, 40 insertions, 24 deletions
diff --git a/server/src/api/user.rs b/server/src/api/user.rs
index 9361ca4d..d6d5962e 100644
--- a/server/src/api/user.rs
+++ b/server/src/api/user.rs
@@ -161,9 +161,27 @@ impl Perform<LoginResponse> for Oper<Register> {
}
};
+ // Create the main community if it doesn't exist
+ let main_community: Community = match Community::read_from_name(&conn, "main".to_string()) {
+ Ok(c) => c,
+ Err(_e) => {
+ let community_form = CommunityForm {
+ name: "main".to_string(),
+ title: "The Default Community".to_string(),
+ description: Some("The Default Community".to_string()),
+ category_id: 1,
+ creator_id: inserted_user.id,
+ removed: None,
+ deleted: None,
+ updated: None,
+ };
+ Community::create(&conn, &community_form).unwrap()
+ }
+ };
+
// Sign them up for main community no matter what
let community_follower_form = CommunityFollowerForm {
- community_id: 1,
+ community_id: main_community.id,
user_id: inserted_user.id,
};
@@ -177,7 +195,7 @@ impl Perform<LoginResponse> for Oper<Register> {
// If its an admin, add them as a mod and follower to main
if data.admin {
let community_moderator_form = CommunityModeratorForm {
- community_id: 1,
+ community_id: main_community.id,
user_id: inserted_user.id,
};
diff --git a/ui/src/components/communities.tsx b/ui/src/components/communities.tsx
index 96864e9a..c4efe1fb 100644
--- a/ui/src/components/communities.tsx
+++ b/ui/src/components/communities.tsx
@@ -46,9 +46,7 @@ export class Communities extends Component<any, CommunitiesState> {
}
componentDidMount() {
- document.title = "Communities - Lemmy";
- let table = document.querySelector('#community_table');
- Sortable.initTable(table);
+ document.title = `Communities - ${WebSocketService.Instance.site.name}`;
}
// Necessary for back button for some reason
@@ -176,6 +174,8 @@ export class Communities extends Component<any, CommunitiesState> {
this.state.loading = false;
window.scrollTo(0,0);
this.setState(this.state);
+ let table = document.querySelector('#community_table');
+ Sortable.initTable(table);
} else if (op == UserOperation.FollowCommunity) {
let res: CommunityResponse = msg;
let found = this.state.communities.find(c => c.id == res.community.id);
diff --git a/ui/src/components/community.tsx b/ui/src/components/community.tsx
index efa908f1..6a1f5da2 100644
--- a/ui/src/components/community.tsx
+++ b/ui/src/components/community.tsx
@@ -200,7 +200,7 @@ export class Community extends Component<any, State> {
this.state.community = res.community;
this.state.moderators = res.moderators;
this.state.admins = res.admins;
- document.title = `/c/${this.state.community.name} - Lemmy`;
+ document.title = `/c/${this.state.community.name} - ${WebSocketService.Instance.site.name}`;
this.setState(this.state);
this.fetchPosts();
} else if (op == UserOperation.EditCommunity) {
diff --git a/ui/src/components/create-community.tsx b/ui/src/components/create-community.tsx
index a9345f72..5e31efc2 100644
--- a/ui/src/components/create-community.tsx
+++ b/ui/src/components/create-community.tsx
@@ -1,6 +1,7 @@
import { Component } from 'inferno';
import { CommunityForm } from './community-form';
import { Community } from '../interfaces';
+import { WebSocketService } from '../services';
export class CreateCommunity extends Component<any, any> {
@@ -10,7 +11,7 @@ export class CreateCommunity extends Component<any, any> {
}
componentDidMount() {
- document.title = "Create Community - Lemmy";
+ document.title = `Create Community - ${WebSocketService.Instance.site.name}`;
}
render() {
diff --git a/ui/src/components/create-post.tsx b/ui/src/components/create-post.tsx
index fdee01f6..0e37ba1d 100644
--- a/ui/src/components/create-post.tsx
+++ b/ui/src/components/create-post.tsx
@@ -1,5 +1,6 @@
import { Component } from 'inferno';
import { PostForm } from './post-form';
+import { WebSocketService } from '../services';
export class CreatePost extends Component<any, any> {
@@ -9,7 +10,7 @@ export class CreatePost extends Component<any, any> {
}
componentDidMount() {
- document.title = "Create Post - Lemmy";
+ document.title = `Create Post - ${WebSocketService.Instance.site.name}`;
}
render() {
diff --git a/ui/src/components/inbox.tsx b/ui/src/components/inbox.tsx
index 69ddc44b..5fb7f874 100644
--- a/ui/src/components/inbox.tsx
+++ b/ui/src/components/inbox.tsx
@@ -49,7 +49,7 @@ export class Inbox extends Component<any, InboxState> {
}
componentDidMount() {
- document.title = `/u/${UserService.Instance.user.username} Inbox - Lemmy`;
+ document.title = `/u/${UserService.Instance.user.username} Inbox - ${WebSocketService.Instance.site.name}`;
}
render() {
diff --git a/ui/src/components/login.tsx b/ui/src/components/login.tsx
index 33cebdd6..6eb88438 100644
--- a/ui/src/components/login.tsx
+++ b/ui/src/components/login.tsx
@@ -50,7 +50,7 @@ export class Login extends Component<any, State> {
}
componentDidMount() {
- document.title = "Login - Lemmy";
+ document.title = `Login - ${WebSocketService.Instance.site.name}`;
}
render() {
diff --git a/ui/src/components/main.tsx b/ui/src/components/main.tsx
index 153c9f72..fe59ac2c 100644
--- a/ui/src/components/main.tsx
+++ b/ui/src/components/main.tsx
@@ -101,10 +101,6 @@ export class Main extends Component<any, MainState> {
this.subscription.unsubscribe();
}
- componentDidMount() {
- document.title = "Lemmy";
- }
-
// Necessary for back button for some reason
componentWillReceiveProps(nextProps: any) {
if (nextProps.history.action == 'POP') {
@@ -377,6 +373,8 @@ export class Main extends Component<any, MainState> {
this.state.site.site = res.site;
this.state.site.banned = res.banned;
this.setState(this.state);
+ document.title = `${WebSocketService.Instance.site.name}`;
+
} else if (op == UserOperation.EditSite) {
let res: SiteResponse = msg;
this.state.site.site = res.site;
diff --git a/ui/src/components/modlog.tsx b/ui/src/components/modlog.tsx
index 894887ae..b8e58461 100644
--- a/ui/src/components/modlog.tsx
+++ b/ui/src/components/modlog.tsx
@@ -45,7 +45,7 @@ export class Modlog extends Component<any, ModlogState> {
}
componentDidMount() {
- document.title = "Modlog - Lemmy";
+ document.title = `Modlog - ${WebSocketService.Instance.site.name}`;
}
setCombined(res: GetModlogResponse) {
diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx
index 3e2e07b3..7152941f 100644
--- a/ui/src/components/post.tsx
+++ b/ui/src/components/post.tsx
@@ -253,7 +253,7 @@ export class Post extends Component<any, PostState> {
this.state.moderators = res.moderators;
this.state.admins = res.admins;
this.state.loading = false;
- document.title = `${this.state.post.name} - Lemmy`;
+ document.title = `${this.state.post.name} - ${WebSocketService.Instance.site.name}`;
this.setState(this.state);
} else if (op == UserOperation.CreateComment) {
let res: CommentResponse = msg;
diff --git a/ui/src/components/search.tsx b/ui/src/components/search.tsx
index 7c72939a..0d3b255d 100644
--- a/ui/src/components/search.tsx
+++ b/ui/src/components/search.tsx
@@ -52,7 +52,7 @@ export class Search extends Component<any, SearchState> {
}
componentDidMount() {
- document.title = "Search - Lemmy";
+ document.title = `Search - ${WebSocketService.Instance.site.name}`;
}
render() {
@@ -250,7 +250,7 @@ export class Search extends Component<any, SearchState> {
let res: SearchResponse = msg;
this.state.searchResponse = res;
this.state.loading = false;
- document.title = `Search - ${this.state.q} - Lemmy`;
+ document.title = `Search - ${this.state.q} - ${WebSocketService.Instance.site.name}`;
window.scrollTo(0,0);
this.setState(this.state);
diff --git a/ui/src/components/sponsors.tsx b/ui/src/components/sponsors.tsx
index 4c9d02ff..c0b36e4c 100644
--- a/ui/src/components/sponsors.tsx
+++ b/ui/src/components/sponsors.tsx
@@ -1,4 +1,5 @@
import { Component } from 'inferno';
+import { WebSocketService } from '../services';
let general =
[
@@ -17,7 +18,7 @@ export class Sponsors extends Component<any, any> {
}
componentDidMount() {
- document.title = "Sponsors - Lemmy";
+ document.title = `Sponsors - ${WebSocketService.Instance.site.name}`;
}
render() {
diff --git a/ui/src/components/user.tsx b/ui/src/components/user.tsx
index 4cd88abc..d7c2bf66 100644
--- a/ui/src/components/user.tsx
+++ b/ui/src/components/user.tsx
@@ -341,7 +341,7 @@ export class User extends Component<any, UserState> {
this.state.moderates = res.moderates;
this.state.posts = res.posts;
this.state.loading = false;
- document.title = `/u/${this.state.user.name} - Lemmy`;
+ document.title = `/u/${this.state.user.name} - ${WebSocketService.Instance.site.name}`;
window.scrollTo(0,0);
this.setState(this.state);
} else if (op == UserOperation.EditComment) {
diff --git a/ui/src/index.html b/ui/src/index.html
index ae511ade..c510291b 100644
--- a/ui/src/index.html
+++ b/ui/src/index.html
@@ -6,7 +6,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" type="image/svg+xml" href="/static/assets/favicon.svg" />
<link rel="apple-touch-icon" href="/static/assets/apple-touch-icon.png" />
- <title>Lemmy</title>
<link rel="stylesheet" href="/static/assets/libs/balloon-css/balloon.min.css">
<script src="/static/assets/libs/sortable/sortable.min.js"></script>
</head>
diff --git a/ui/src/services/UserService.ts b/ui/src/services/UserService.ts
index d3259adb..92315db7 100644
--- a/ui/src/services/UserService.ts
+++ b/ui/src/services/UserService.ts
@@ -16,7 +16,6 @@ export class UserService {
} else {
console.log('No JWT cookie found.');
}
-
}
public login(res: LoginResponse) {
diff --git a/ui/src/services/WebSocketService.ts b/ui/src/services/WebSocketService.ts
index 2b30f7d8..2fa8a485 100644
--- a/ui/src/services/WebSocketService.ts
+++ b/ui/src/services/WebSocketService.ts
@@ -8,7 +8,6 @@ import { UserService } from './';
export class WebSocketService {
private static _instance: WebSocketService;
public subject: Subject<any>;
- public instanceName: string;
public site: Site;
public admins: Array<UserView>;
diff --git a/ui/src/version.ts b/ui/src/version.ts
index 45ea6ab9..0e51e1a5 100644
--- a/ui/src/version.ts
+++ b/ui/src/version.ts
@@ -1 +1 @@
-export let version: string = "v0.0.5-16-gc7d8d5f"; \ No newline at end of file
+export let version: string = "v0.0.6-0-g27b108a"; \ No newline at end of file