Skip to content

Commit 9d40cb1

Browse files
authored
Fixed duplicated Elderberry Inn Icons source (open5e#726)
* fixed duplicated elderberry inn icons source * added ImageSummarySerializer
1 parent ade6ad1 commit 9d40cb1

File tree

5 files changed

+32
-44
lines changed

5 files changed

+32
-44
lines changed

api_v2/serializers/condition.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
from .abstracts import GameContentSerializer
88
from .document import DocumentSummarySerializer
9-
from .image import ImageSerializer
9+
from .image import ImageSummarySerializer
1010

1111
class ConditionSerializer(GameContentSerializer):
1212
key = serializers.ReadOnlyField()
1313
document = DocumentSummarySerializer()
14-
icon = ImageSerializer()
14+
icon = ImageSummarySerializer()
1515

1616
class Meta:
1717
model = models.Condition

api_v2/serializers/image.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,20 @@
22

33
from rest_framework import serializers
44
from .abstracts import GameContentSerializer
5+
from .document import DocumentSummarySerializer
56

67
from api_v2 import models
78

9+
class ImageSummarySerializer(GameContentSerializer):
10+
class Meta:
11+
model = models.Image
12+
fields = ['name', 'key', 'url', 'file_url', 'alt_text', 'attribution']
13+
814
class ImageSerializer(GameContentSerializer):
915
key = serializers.ReadOnlyField()
1016
file_url = serializers.ReadOnlyField()
17+
document = DocumentSummarySerializer()
1118

1219
class Meta:
1320
model = models.Image
14-
fields = ['name', 'key', 'file_url', 'alt_text', 'attribution']
21+
fields = ['name', 'key', 'file_url', 'alt_text', 'attribution', 'document']

api_v2/tests/responses/TestObjects.test_condition_example.approved.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
2121
"file_url": "/static/img/object_icons/elderberry-inn-icons/conditions/stunned.svg",
2222
"key": "elderberry_stunned",
23-
"name": "Stunned"
23+
"name": "Stunned",
24+
"url": "http://localhost:8000/v2/images/elderberry_stunned/"
2425
},
2526
"key": "stunned",
2627
"name": "Stunned",

data/v2/open5e/elderberry/Image.json renamed to data/v2/open5e/elderberry-inn-icons/Image.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"pk": "elderberry_blinded",
55
"fields": {
66
"name": "Blinded",
7-
"document": "elderberry",
7+
"document": "elderberry-inn-icons",
88
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/blinded.svg",
99
"alt_text": "An icon representing the blinded condition in an RPG. A simple, abstract black-and-white icon of an eye with a line crossed through it.",
1010
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -16,7 +16,7 @@
1616
"pk": "elderberry_charmed",
1717
"fields": {
1818
"name": "Charmed",
19-
"document": "elderberry",
19+
"document": "elderberry-inn-icons",
2020
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/charmed.svg",
2121
"alt_text": "An icon representing the charmed condition in an RPG. A simple black-and-white silhouette of a humanoid facing the viewer. There is a heart where their face should be.",
2222
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -28,7 +28,7 @@
2828
"pk": "elderberry_deaftened",
2929
"fields": {
3030
"name": "Deaftened",
31-
"document": "elderberry",
31+
"document": "elderberry-inn-icons",
3232
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/deaftened.svg",
3333
"alt_text": "An icon representing the deafened condition in an RPG. A simple black-and-white outline of an ear with a diagonal line passing through it, as if it were crossed out.",
3434
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -40,7 +40,7 @@
4040
"pk": "elderberry_exhaustion1",
4141
"fields": {
4242
"name": "Exhaustion1",
43-
"document": "elderberry",
43+
"document": "elderberry-inn-icons",
4444
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/exhaustion1.svg",
4545
"alt_text": "An icon representing the Exhaustion (one level) condition. A simple black-and-white diagram of a standing figure hunched over in exhaustion with a large numeral '1'.",
4646
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -52,7 +52,7 @@
5252
"pk": "elderberry_exhaustion2",
5353
"fields": {
5454
"name": "Exhaustion2",
55-
"document": "elderberry",
55+
"document": "elderberry-inn-icons",
5656
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/exhaustion2.svg",
5757
"alt_text": "An icon representing the Exhaustion (two levels) condition. A simple black-and-white diagram of a standing figure hunched over in exhaustion with a large numeral '2'.",
5858
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -64,7 +64,7 @@
6464
"pk": "elderberry_exhaustion3",
6565
"fields": {
6666
"name": "Exhaustion3",
67-
"document": "elderberry",
67+
"document": "elderberry-inn-icons",
6868
"file_path": "/img/object_icons/elderberry-inn-icons/exhaustion3.svg",
6969
"alt_text": "An icon representing the Exhaustion (three levels) condition. A simple black-and-white diagram of a standing figure hunched over in exhaustion with a large numeral '3'.",
7070
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -76,7 +76,7 @@
7676
"pk": "elderberry_exhaustion4",
7777
"fields": {
7878
"name": "Exhaustion4",
79-
"document": "elderberry",
79+
"document": "elderberry-inn-icons",
8080
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/exhaustion4.svg",
8181
"alt_text": "An icon representing the Exhaustion (four levels) condition. A simple black-and-white diagram of a standing figure hunched over in exhaustion with a large numeral '4'.",
8282
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -88,7 +88,7 @@
8888
"pk": "elderberry_exhaustion5",
8989
"fields": {
9090
"name": "Exhaustion5",
91-
"document": "elderberry",
91+
"document": "elderberry-inn-icons",
9292
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/exhaustion5.svg",
9393
"alt_text": "An icon representing the Exhaustion (five levels) condition. A simple black-and-white diagram of a standing figure hunched over in exhaustion with a large numeral '5'.",
9494
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -100,7 +100,7 @@
100100
"pk": "elderberry_exhaustion6",
101101
"fields": {
102102
"name": "Exhaustion6",
103-
"document": "elderberry",
103+
"document": "elderberry-inn-icons",
104104
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/exhaustion6.svg",
105105
"alt_text": "An icon representing the Exhaustion (six levels) condition. A simple black-and-white diagram of a standing figure hunched over in exhaustion with a large numeral '6'.",
106106
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -112,7 +112,7 @@
112112
"pk": "elderberry_frightened",
113113
"fields": {
114114
"name": "Frightened",
115-
"document": "elderberry",
115+
"document": "elderberry-inn-icons",
116116
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/frightened.svg",
117117
"alt_text": "An icon representing the Frightened condition. A simple black-and-white silhouette figure from the shoulders up facing the viewer. Their hands are raised to their head and they are screaming.",
118118
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -124,7 +124,7 @@
124124
"pk": "elderberry_grappled",
125125
"fields": {
126126
"name": "Grappled",
127-
"document": "elderberry",
127+
"document": "elderberry-inn-icons",
128128
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/grappled.svg",
129129
"alt_text": "An icon representing the Grappled condition. A simple black-and-white image of an arm staining against a chain and shackle attached to the wrist.",
130130
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -136,7 +136,7 @@
136136
"pk": "elderberry_incapacitated",
137137
"fields": {
138138
"name": "Incapacitated",
139-
"document": "elderberry",
139+
"document": "elderberry-inn-icons",
140140
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/incapacitated.svg",
141141
"alt_text": "An icon representing the Incapacitated condition. A black-and-white silhouetted figure visible from the shoulders up faces the viewer. There is an X where thier face should be, and a shirling figure over thier head.",
142142
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -148,7 +148,7 @@
148148
"pk": "elderberry_inconscious",
149149
"fields": {
150150
"name": "Inconscious",
151-
"document": "elderberry",
151+
"document": "elderberry-inn-icons",
152152
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/inconscious.svg",
153153
"alt_text": "An icon representing the Inconscious condition. A black-and-white silhouetted figure visible from the shoulders up faces the viewer. Where its eyes should be are swirls",
154154
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -160,7 +160,7 @@
160160
"pk": "elderberry_invisible",
161161
"fields": {
162162
"name": "Invisible",
163-
"document": "elderberry",
163+
"document": "elderberry-inn-icons",
164164
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/invisible.svg",
165165
"alt_text": "An icon representing the Invisible condition. A black-and-white silhouette of a figure visible from the shoulders up faces the viewer. They are drawn with a dashed outline to indicate that they are invisible.",
166166
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -172,7 +172,7 @@
172172
"pk": "elderberry_paralyzed",
173173
"fields": {
174174
"name": "Paralyzed",
175-
"document": "elderberry",
175+
"document": "elderberry-inn-icons",
176176
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/paralyzed.svg",
177177
"alt_text": "An icon representing the Paralyzed condition. A black-and-white silhouette of a figure visible from the shoulders up faces the viewer. They are surrounded by a chain.",
178178
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -184,7 +184,7 @@
184184
"pk": "elderberry_petrified",
185185
"fields": {
186186
"name": "Petrified",
187-
"document": "elderberry",
187+
"document": "elderberry-inn-icons",
188188
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/petrified.svg",
189189
"alt_text": "An icon representing the Petrified condition. A black-and-white silhouette of a figure visible from the shoulders up faces the viewer. They are covered in numerous broad cracks as if they were an old, crumbling statue.",
190190
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -196,7 +196,7 @@
196196
"pk": "elderberry_poisoned",
197197
"fields": {
198198
"name": "Poisoned",
199-
"document": "elderberry",
199+
"document": "elderberry-inn-icons",
200200
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/poisoned.svg",
201201
"alt_text": "An icon representing the Poisoned condition. A simple black-and-white drawing of a bottle with a stopper and a skull on its front.",
202202
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -208,7 +208,7 @@
208208
"pk": "elderberry_prone",
209209
"fields": {
210210
"name": "Prone",
211-
"document": "elderberry",
211+
"document": "elderberry-inn-icons",
212212
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/prone.svg",
213213
"alt_text": "An icon representing the Prone condition.",
214214
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -220,7 +220,7 @@
220220
"pk": "elderberry_restrained",
221221
"fields": {
222222
"name": "Restrained",
223-
"document": "elderberry",
223+
"document": "elderberry-inn-icons",
224224
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/restrained.svg",
225225
"alt_text": "An icon representing the Restrained condition. A simple black-and-white silouetted figure is on all fours, as if crawling. Three large arrows above the figure point downward.",
226226
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",
@@ -232,7 +232,7 @@
232232
"pk": "elderberry_stunned",
233233
"fields": {
234234
"name": "Stunned",
235-
"document": "elderberry",
235+
"document": "elderberry-inn-icons",
236236
"file_path": "/img/object_icons/elderberry-inn-icons/conditions/stunned.svg",
237237
"alt_text": "An icon representing the Stunned condition. A black-and-white silhouette of a figure visible from the shoulders up faces the viewer. They are surrounded by stars that sit on rings which suggest orbits.",
238238
"attribution": "Designed with love by Anaislalovi (@anaislalovi) for Elderberry Inn.",

data/v2/open5e/elderberry/Document.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)