Skip to content

Commit 58757f5

Browse files
authored
chore: merge pull request #82 from Questionable-Content-Extensions/hotfix/1.2.1
Hotfix version 1.2.1
2 parents 6e33c00 + 819e6d6 commit 58757f5

File tree

7 files changed

+97
-20
lines changed

7 files changed

+97
-20
lines changed
+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: 'Draft new hotfix'
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: 'The version you want to hotfix.'
8+
required: true
9+
10+
jobs:
11+
draft-new-hotfix:
12+
name: 'Draft a new hotfix'
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
17+
- name: Create hotfix branch
18+
run: git checkout -b hotfix/${{ github.event.inputs.version }}
19+
20+
- name: Update changelog
21+
uses: thomaseizinger/[email protected]
22+
with:
23+
version: ${{ github.event.inputs.version }}
24+
25+
# In order to make a commit, we need to initialize a user.
26+
- name: Initialize mandatory git config
27+
run: |
28+
git config user.name "GitHub Actions"
29+
git config user.email [email protected]
30+
31+
# This step will differ depending on your project setup
32+
# Fortunately, yarn has a built-in command for doing this!
33+
- name: Bump version in package.json
34+
run: npm version ${{ github.event.inputs.version }} --no-git-tag-version
35+
36+
- name: Commit changelog and manifest files
37+
id: make-commit
38+
run: |
39+
git add CHANGELOG.md package.json
40+
git commit --message "chore: prepare hotfix ${{ github.event.inputs.version }}"
41+
42+
echo "::set-output name=commit::$(git rev-parse HEAD)"
43+
44+
- name: Push new branch
45+
run: git push origin hotfix/${{ github.event.inputs.version }}
46+
47+
- name: Create pull request
48+
uses: thomaseizinger/[email protected]
49+
env:
50+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51+
with:
52+
head: hotfix/${{ github.event.inputs.version }}
53+
base: main
54+
title: Hotfix version ${{ github.event.inputs.version }}
55+
reviewers: ${{ github.actor }}
56+
body: |
57+
Hi @${{ github.actor }}!
58+
59+
This PR was created in response to a manual trigger of the hotfix workflow here: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}.
60+
I've updated the changelog and bumped the versions in the manifest files in this commit: ${{ steps.make-commit.outputs.commit }}.
61+
62+
Merging this PR will create a GitHub release and upload any assets that are created as part of the release build.

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.2.1] - 2023-09-22
11+
12+
### Fixed 🐛
13+
14+
- Use the current edit values to render the item details so they update live when they're changed
15+
- Fix broken Redux thunks during earlier refactoring that prevented editors from being able to update and save comic values
16+
1017
## [1.2.0] - 2023-09-20
1118

1219
### Added ✨
@@ -385,6 +392,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
385392
[0.1.0]: https://github.com/Questionable-Content-Extensions/client/releases/tag/0.1.0
386393
[issues]: https://github.com/Questionable-Content-Extensions/client/issues
387394
[1.0.0]: https://github.com/Questionable-Content-Extensions/client/compare/0.6.2...1.0.0
388-
[Unreleased]: https://github.com/Questionable-Content-Extensions/client/compare/1.2.0...HEAD
395+
[Unreleased]: https://github.com/Questionable-Content-Extensions/client/compare/1.2.1...HEAD
396+
[1.2.1]: https://github.com/Questionable-Content-Extensions/client/compare/1.2.0...1.2.1
389397
[1.2.0]: https://github.com/Questionable-Content-Extensions/client/compare/1.1.0...1.2.0
390398
[1.1.0]: https://github.com/Questionable-Content-Extensions/client/compare/1.0.0...1.1.0

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "questionable-content-spa",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Questionable Content Single-Page Application with Extra Features",
55
"private": true,
66
"scripts": {

src/components/EditorModePanel/EditorModePanel.tsx

+12-10
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export default function EditorModePanel() {
213213
}
214214
onSubmit={(e) => {
215215
e.preventDefault()
216-
saveChanges()
216+
dispatch(saveChanges())
217217
}}
218218
>
219219
<div className="flex justify-between border-b border-solid border-b-stone-300 border-l-0 border-t-0 border-r-0 -mx-2 -mt-2 mb-2">
@@ -229,39 +229,39 @@ export default function EditorModePanel() {
229229
navigationData={editorData.missing.cast}
230230
title="Missing cast"
231231
description="Navigate to comics without cast members"
232-
onSetCurrentComic={setCurrentComic}
232+
onSetCurrentComic={(c) => dispatch(setCurrentComic(c))}
233233
id={-1}
234234
useColors={settings.useColors}
235235
/>
236236
<MissingNavElement
237237
navigationData={editorData.missing.location}
238238
title="Missing location"
239239
description="Navigate to comics without locations"
240-
onSetCurrentComic={setCurrentComic}
240+
onSetCurrentComic={(c) => dispatch(setCurrentComic(c))}
241241
id={-2}
242242
useColors={settings.useColors}
243243
/>
244244
<MissingNavElement
245245
navigationData={editorData.missing.storyline}
246246
title="Missing storyline"
247247
description="Navigate to comics without storylines"
248-
onSetCurrentComic={setCurrentComic}
248+
onSetCurrentComic={(c) => dispatch(setCurrentComic(c))}
249249
id={-3}
250250
useColors={settings.useColors}
251251
/>
252252
<MissingNavElement
253253
navigationData={editorData.missing.title}
254254
title="Missing title"
255255
description="Navigate to comics without a title"
256-
onSetCurrentComic={setCurrentComic}
256+
onSetCurrentComic={(c) => dispatch(setCurrentComic(c))}
257257
id={-4}
258258
useColors={settings.useColors}
259259
/>
260260
<MissingNavElement
261261
navigationData={editorData.missing.tagline}
262262
title="Missing tagline"
263263
description="Navigate to comics without a tagline"
264-
onSetCurrentComic={setCurrentComic}
264+
onSetCurrentComic={(c) => dispatch(setCurrentComic(c))}
265265
id={-5}
266266
useColors={settings.useColors}
267267
/>
@@ -280,7 +280,7 @@ export default function EditorModePanel() {
280280
label="Title"
281281
inputId="qcext-comic-title"
282282
value={title}
283-
onValueChange={setTitle}
283+
onValueChange={(t) => dispatch(setTitle(t))}
284284
dirty={isTitleDirty}
285285
/>
286286
</ExpandingEditor>
@@ -295,7 +295,7 @@ export default function EditorModePanel() {
295295
label="Tagline"
296296
inputId="qcext-comic-tagline"
297297
value={tagline}
298-
onValueChange={setTagline}
298+
onValueChange={(t) => dispatch(setTagline(t))}
299299
dirty={isTaglineDirty}
300300
/>
301301
</ExpandingEditor>
@@ -312,9 +312,11 @@ export default function EditorModePanel() {
312312
inputId="qcext-comic-publish-date"
313313
dateValue={publishDate}
314314
isAccurateValue={isAccuratePublishDate}
315-
onDateValueChange={(date) => setPublishDate(date)}
315+
onDateValueChange={(date) => dispatch(setPublishDate(date))}
316316
onIsAccurateValueChange={(isAccuratePublishDate) =>
317-
setIsAccuratePublishDate(isAccuratePublishDate)
317+
dispatch(
318+
setIsAccuratePublishDate(isAccuratePublishDate)
319+
)
318320
}
319321
isDateValueDirty={isPublishDateDirty}
320322
isIsAccurateValueDirty={isIsAccuratePublishDateDirty}

src/components/ItemDetailsDialog/ItemDataPanel/ItemDataPanel.tsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { ItemImageList as ItemImageData } from '@models/ItemImageList'
77
import { ItemType } from '@models/ItemType'
88
import { RelatedItem as ItemRelationData } from '@models/RelatedItem'
99
import { UploadImageArgs } from '@store/api/itemApiSlice'
10+
import { useAppSelector } from '@store/hooks'
1011

1112
import { createTintOrShade } from '~/color'
1213

@@ -44,6 +45,9 @@ export default function ItemDataPanel({
4445
onUploadImage: (args: UploadImageArgs) => Promise<unknown>
4546
isUploadingImage: boolean
4647
}) {
48+
const shortName = useAppSelector((state) => state.itemEditor.shortName)
49+
const color = useAppSelector((state) => state.itemEditor.color)
50+
4751
if (hasError) {
4852
return (
4953
<div className="text-center">
@@ -74,18 +78,18 @@ export default function ItemDataPanel({
7478
)
7579
}
7680

77-
let backgroundColor = itemData.color
81+
let backgroundColor = color
7882
if (!backgroundColor.startsWith('#')) {
7983
backgroundColor = `#${backgroundColor}`
8084
}
81-
const foregroundColor = createTintOrShade(itemData.color)
85+
const foregroundColor = createTintOrShade(color)
8286

8387
return (
8488
<>
8589
<div className="grid grid-cols-2 gap-4">
8690
<ItemImageViewer
8791
itemId={itemData.id}
88-
itemShortName={itemData.shortName}
92+
itemShortName={shortName}
8993
primaryImage={itemData.primaryImage}
9094
itemImageData={itemImageData}
9195
itemDataUrl={itemDataUrl}

src/components/ItemDetailsDialog/ItemDetails/ItemDetails.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -204,10 +204,10 @@ export default function ItemDetails({
204204
<NavElement
205205
item={{
206206
id: item.id,
207-
shortName: item.shortName,
208-
name: item.name,
207+
shortName: shortName,
208+
name: name,
209209
type: item.type,
210-
color: item.color,
210+
color: color,
211211
first: item.first,
212212
previous: item.first,
213213
next: item.last,

src/components/ItemDetailsDialog/ItemDetailsDialog.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export default function ItemDetailsDialog({
4747
const isItemDirty = useAppSelector((state) => isStateDirtySelector(state))
4848
const currentComic = useAppSelector((state) => state.comic.current)
4949
const lockedToItem = useAppSelector((state) => state.comic.lockedToItem)
50+
const itemName = useAppSelector((state) => state.itemEditor.name)
5051

5152
const [previousInitialItemId, setPreviousInitialItemId] = useState<
5253
number | null
@@ -114,8 +115,8 @@ export default function ItemDetailsDialog({
114115
if (isItemDataFetching) {
115116
return 'Loading...'
116117
}
117-
return itemData?.name ?? 'Loading...'
118-
}, [hasAllItemDataError, hasItemDataError, isItemDataFetching, itemData])
118+
return itemName ?? 'Loading...'
119+
}, [hasAllItemDataError, hasItemDataError, isItemDataFetching, itemName])
119120

120121
const {
121122
data: itemLogs,

0 commit comments

Comments
 (0)