moves bio to settings
This commit is contained in:
@@ -12,7 +12,7 @@ import (
|
||||
|
||||
func init() {
|
||||
m.Register(func(db dbx.Builder) error {
|
||||
dao := daos.New(db);
|
||||
dao := daos.New(db)
|
||||
|
||||
collection, err := dao.FindCollectionByNameOrId("xku110v5a5xbufa")
|
||||
if err != nil {
|
||||
@@ -48,7 +48,7 @@ func init() {
|
||||
|
||||
return dao.SaveCollection(collection)
|
||||
}, func(db dbx.Builder) error {
|
||||
dao := daos.New(db);
|
||||
dao := daos.New(db)
|
||||
|
||||
collection, err := dao.FindCollectionByNameOrId("xku110v5a5xbufa")
|
||||
if err != nil {
|
||||
|
||||
185
db/migrations/1737205652_move_bio_to_settings.go
Normal file
185
db/migrations/1737205652_move_bio_to_settings.go
Normal file
@@ -0,0 +1,185 @@
|
||||
package migrations
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
|
||||
"github.com/pocketbase/dbx"
|
||||
"github.com/pocketbase/pocketbase/daos"
|
||||
m "github.com/pocketbase/pocketbase/migrations"
|
||||
"github.com/pocketbase/pocketbase/models/schema"
|
||||
)
|
||||
|
||||
func init() {
|
||||
m.Register(func(db dbx.Builder) error {
|
||||
dao := daos.New(db)
|
||||
|
||||
// remove bio from users_anonymous to prevent ambiguity
|
||||
uaCollection, err := dao.FindCollectionByNameOrId("xku110v5a5xbufa")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
options := map[string]any{}
|
||||
if err := json.Unmarshal([]byte(`{
|
||||
"query": "SELECT users.id, username, avatar, users.created, CAST(COALESCE(json_extract(privacy, '$.account') = 'private', false) as BOOL) as private FROM users LEFT JOIN settings ON settings.user = users.id"
|
||||
}`), &options); err != nil {
|
||||
return err
|
||||
}
|
||||
uaCollection.SetOptions(options)
|
||||
|
||||
err = dao.SaveCollection(uaCollection)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// add bio field to settings
|
||||
collection, err := dao.FindCollectionByNameOrId("settings")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
new_bio := &schema.SchemaField{}
|
||||
if err := json.Unmarshal([]byte(`{
|
||||
"system": false,
|
||||
"id": "pd2cq8sq",
|
||||
"name": "bio",
|
||||
"type": "text",
|
||||
"required": false,
|
||||
"presentable": false,
|
||||
"unique": false,
|
||||
"options": {
|
||||
"min": null,
|
||||
"max": 10000,
|
||||
"pattern": ""
|
||||
}
|
||||
}`), new_bio); err != nil {
|
||||
return err
|
||||
}
|
||||
collection.Schema.AddField(new_bio)
|
||||
|
||||
err = dao.SaveCollection(collection)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// migrate existing bios
|
||||
users, err := dao.FindRecordsByFilter("_pb_users_auth_", "bio != null", "", -1, 0)
|
||||
if err != nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
for _, user := range users {
|
||||
bio := user.GetString(("bio"))
|
||||
userSettings, err := dao.FindRecordsByFilter("settings", "user = {:userId}", "", 1, 0, dbx.Params{"userId": user.Id})
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
userSettings[0].Set("bio", bio)
|
||||
|
||||
if err := dao.SaveRecord(userSettings[0]); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
// remove bio from users
|
||||
uCollection, err := dao.FindCollectionByNameOrId("_pb_users_auth_")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
uCollection.Schema.RemoveField("pd2cq8sq")
|
||||
err = dao.SaveCollection(uCollection)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// add bio back to users_anaonymous
|
||||
if err := json.Unmarshal([]byte(`{
|
||||
"query": "SELECT users.id, username, avatar, bio, users.created, CAST(COALESCE(json_extract(privacy, '$.account') = 'private', false) as BOOL) as private FROM users LEFT JOIN settings ON settings.user = users.id"
|
||||
}`), &options); err != nil {
|
||||
return err
|
||||
}
|
||||
uaCollection.SetOptions(options)
|
||||
|
||||
err = dao.SaveCollection(uaCollection)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}, func(db dbx.Builder) error {
|
||||
dao := daos.New(db)
|
||||
|
||||
uaCollection, err := dao.FindCollectionByNameOrId("xku110v5a5xbufa")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
options := map[string]any{}
|
||||
if err := json.Unmarshal([]byte(`{
|
||||
"query": "SELECT users.id, username, avatar, users.created, CAST(COALESCE(json_extract(privacy, '$.account') = 'private', false) as BOOL) as private FROM users LEFT JOIN settings ON settings.user = users.id"
|
||||
}`), &options); err != nil {
|
||||
return err
|
||||
}
|
||||
uaCollection.SetOptions(options)
|
||||
|
||||
err = dao.SaveCollection(uaCollection)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
collection, err := dao.FindCollectionByNameOrId("settings")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// remove
|
||||
collection.Schema.RemoveField("pd2cq8sq")
|
||||
|
||||
err = dao.SaveCollection(collection)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
uCollection, err := dao.FindCollectionByNameOrId("_pb_users_auth_")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// add
|
||||
new_bio := &schema.SchemaField{}
|
||||
if err := json.Unmarshal([]byte(`{
|
||||
"system": false,
|
||||
"id": "pd2cq8sq",
|
||||
"name": "bio",
|
||||
"type": "text",
|
||||
"required": false,
|
||||
"presentable": false,
|
||||
"unique": false,
|
||||
"options": {
|
||||
"min": null,
|
||||
"max": 10000,
|
||||
"pattern": ""
|
||||
}
|
||||
}`), new_bio); err != nil {
|
||||
return err
|
||||
}
|
||||
uCollection.Schema.AddField(new_bio)
|
||||
|
||||
err = dao.SaveCollection(uCollection)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if err := json.Unmarshal([]byte(`{
|
||||
"query": "SELECT users.id, username, avatar, bio, users.created, CAST(COALESCE(json_extract(privacy, '$.account') = 'private', false) as BOOL) as private FROM users LEFT JOIN settings ON settings.user = users.id"
|
||||
}`), &options); err != nil {
|
||||
return err
|
||||
}
|
||||
uaCollection.SetOptions(options)
|
||||
|
||||
return dao.SaveCollection(uaCollection)
|
||||
|
||||
})
|
||||
}
|
||||
55
db/migrations/1737387062_updated_settings.go
Normal file
55
db/migrations/1737387062_updated_settings.go
Normal file
@@ -0,0 +1,55 @@
|
||||
package migrations
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
|
||||
"github.com/pocketbase/dbx"
|
||||
"github.com/pocketbase/pocketbase/daos"
|
||||
m "github.com/pocketbase/pocketbase/migrations"
|
||||
"github.com/pocketbase/pocketbase/models/schema"
|
||||
)
|
||||
|
||||
func init() {
|
||||
m.Register(func(db dbx.Builder) error {
|
||||
dao := daos.New(db);
|
||||
|
||||
collection, err := dao.FindCollectionByNameOrId("uavt73rsqcn1n13")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// add
|
||||
new_bio := &schema.SchemaField{}
|
||||
if err := json.Unmarshal([]byte(`{
|
||||
"system": false,
|
||||
"id": "pd2cq8sq",
|
||||
"name": "bio",
|
||||
"type": "text",
|
||||
"required": false,
|
||||
"presentable": false,
|
||||
"unique": false,
|
||||
"options": {
|
||||
"min": null,
|
||||
"max": 10000,
|
||||
"pattern": ""
|
||||
}
|
||||
}`), new_bio); err != nil {
|
||||
return err
|
||||
}
|
||||
collection.Schema.AddField(new_bio)
|
||||
|
||||
return dao.SaveCollection(collection)
|
||||
}, func(db dbx.Builder) error {
|
||||
dao := daos.New(db);
|
||||
|
||||
collection, err := dao.FindCollectionByNameOrId("uavt73rsqcn1n13")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// remove
|
||||
collection.Schema.RemoveField("pd2cq8sq")
|
||||
|
||||
return dao.SaveCollection(collection)
|
||||
})
|
||||
}
|
||||
@@ -5,6 +5,7 @@ import type { Settings } from "../settings";
|
||||
const SettingsCreateSchema = z.object({
|
||||
unit: z.enum(["metric", "imperial"]).optional(),
|
||||
language: z.enum(["en", "de", "es", "fr", "hu", "it", "nl", "pl", "pt", "zh"]).optional(),
|
||||
bio: z.string().optional(),
|
||||
mapFocus: z.enum(["trails", "location"]).optional(),
|
||||
location: z.object({
|
||||
name: z.string(),
|
||||
|
||||
@@ -18,7 +18,6 @@ const UserUpdateSchema = (z.object({
|
||||
password: z.string().min(8, "must-be-at-least-n-characters-long").optional(),
|
||||
oldPassword: z.string().min(8, "must-be-at-least-n-characters-long").optional(),
|
||||
passwordConfirm: z.string().min(8, "must-be-at-least-n-characters-long").optional(),
|
||||
bio: z.string().optional()
|
||||
}) satisfies ZodType<Partial<User>>).refine((data) => data.password === data.passwordConfirm, {
|
||||
message: "passwords-must-match",
|
||||
path: ["passwordConfirm"],
|
||||
|
||||
@@ -4,6 +4,7 @@ class Settings {
|
||||
id?: string;
|
||||
unit?: "metric" | "imperial";
|
||||
language?: "en" | "de" | "es" | "fr" | "hu" | "it" | "nl" | "pl" | "pt" | "zh";
|
||||
bio?: string;
|
||||
mapFocus?: "trails" | "location";
|
||||
location?: { name: string, lat: number, lon: number };
|
||||
category?: string;
|
||||
|
||||
@@ -14,7 +14,6 @@ export type UserAnonymous = {
|
||||
id: string,
|
||||
username?: string,
|
||||
avatar?: string;
|
||||
bio?: string;
|
||||
created?: string;
|
||||
private: boolean;
|
||||
}
|
||||
@@ -46,14 +46,14 @@
|
||||
<h4 class="text-xl font-semibold">
|
||||
{$_("about")}
|
||||
{data.user.username}
|
||||
{#if data.isOwnProfile && data.user.bio?.length}
|
||||
{#if data.isOwnProfile && data.settings.bio?.length}
|
||||
<a class="ml-4" href="/settings/profile"
|
||||
><i class="fa fa-pen text-base"></i></a
|
||||
>
|
||||
{/if}
|
||||
</h4>
|
||||
{#if data.user.bio?.length}
|
||||
<p class="whitespace-pre-wrap text-sm">{data.user.bio}</p>
|
||||
{#if data.settings.bio?.length}
|
||||
<p class="whitespace-pre-wrap text-sm">{data.settings.bio}</p>
|
||||
{:else if data.isOwnProfile}
|
||||
<a class="btn-primary inline-block" href="/settings/profile"
|
||||
>+ {$_("add-bio")}</a
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
let selectedCategory =
|
||||
$page.data.settings?.category || data.categories[0].id;
|
||||
|
||||
let bio = $currentUser?.bio ?? "";
|
||||
let bio = data.settings?.bio ?? "";
|
||||
|
||||
const categoryItems: SelectItem[] = data.categories.map((c: Category) => ({
|
||||
text: $_(c.name),
|
||||
@@ -43,12 +43,12 @@
|
||||
}
|
||||
|
||||
async function handleBioSave() {
|
||||
if (!$currentUser) {
|
||||
if (!data.settings) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
$currentUser.bio = bio;
|
||||
await users_update($currentUser);
|
||||
data.settings.bio = bio;
|
||||
await settings_update(data.settings);
|
||||
} catch (e) {
|
||||
show_toast({
|
||||
type: "error",
|
||||
@@ -111,7 +111,7 @@
|
||||
<Button
|
||||
on:click={() => handleBioSave()}
|
||||
primary
|
||||
disabled={$currentUser.bio === bio}>{$_("save")}</Button
|
||||
disabled={data.settings.bio === bio}>{$_("save")}</Button
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user