Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
336
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
68f9341e
Unverified
Commit
68f9341e
authored
2 years ago
by
Johann150
Browse files
Options
Downloads
Patches
Plain Diff
hotfix: uniform color migration fix
parent
be1d02a7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/backend/migration/1652859567549-uniform-themecolor.js
+6
-8
6 additions, 8 deletions
...ges/backend/migration/1652859567549-uniform-themecolor.js
with
6 additions
and
8 deletions
packages/backend/migration/1652859567549-uniform-themecolor.js
+
6
−
8
View file @
68f9341e
...
...
@@ -6,27 +6,25 @@ export class uniformThemecolor1652859567549 {
async
up
(
queryRunner
)
{
const
formatColor
=
(
color
)
=>
{
let
tc
=
new
tinycolor
(
color
);
if
(
c
olor
.
isValid
())
{
return
c
olor
.
toHexString
();
if
(
t
c
.
isValid
())
{
return
t
c
.
toHexString
();
}
else
{
return
null
;
}
};
await
Promise
.
all
(
queryRunner
.
query
(
'
SELECT "id", "themeColor" FROM "instance" WHERE "themeColor" IS NOT NULL
'
)
.
then
(
instances
=>
instances
.
map
(
instance
=>
{
await
queryRunner
.
query
(
'
SELECT "id", "themeColor" FROM "instance" WHERE "themeColor" IS NOT NULL
'
)
.
then
(
instances
=>
Promise
.
all
(
instances
.
map
(
instance
=>
{
// update theme color to uniform format, e.g. #00ff00
// invalid theme colors get set to null
instance
.
color
=
formatColor
(
instance
.
color
);
return
queryRunner
.
query
(
'
UPDATE "instance" SET "themeColor" = :themeColor WHERE "id" = :id
'
,
instance
);
return
queryRunner
.
query
(
'
UPDATE "instance" SET "themeColor" = $1 WHERE "id" = $2
'
,
[
formatColor
(
instance
.
themeColor
),
instance
.
id
]);
})));
// also fix own theme color
await
queryRunner
.
query
(
'
SELECT "themeColor" FROM "meta" WHERE "themeColor" IS NOT NULL LIMIT 1
'
)
.
then
(
metas
=>
{
if
(
metas
.
length
>
0
)
{
return
queryRunner
.
query
(
'
UPDATE "meta" SET "themeColor" =
:color
'
,
{
color
:
formatColor
(
metas
[
0
].
c
olor
)
}
);
return
queryRunner
.
query
(
'
UPDATE "meta" SET "themeColor" =
$1
'
,
[
formatColor
(
metas
[
0
].
themeC
olor
)
]
);
}
});
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment