Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f07cead

Browse files
author
Gerald Iakobinyi-Pich
committedMay 17, 2022
- proper handling of quill editor content for custom bounty description
- using quill editor for acceptance criteria and resources
1 parent 88bcac2 commit f07cead

12 files changed

+160
-44
lines changed
 

‎app/assets/v2/js/pages/bounty_details2.js

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ const loadingState = {
1010

1111
document.result = bounty;
1212

13+
Vue.use(VueQuillEditor);
14+
Vue.component('v-select', VueSelect.VueSelect);
15+
1316
Vue.mixin({
1417
methods: {
1518
fetchBounty: function(newData) {

‎app/assets/v2/js/pages/change_bounty.js

+47-9
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,26 @@ const bountyTypes = [
2323

2424
Vue.use(VueQuillEditor);
2525
Vue.component('v-select', VueSelect.VueSelect);
26+
Vue.component('quill-editor-ext', {
27+
props: [ 'initial', 'options' ],
28+
template: '#quill-editor-ext',
29+
data() {
30+
return {
31+
};
32+
},
33+
methods: {
34+
onUpdate: function(event) {
35+
this.$emit('change', {
36+
text: event.text,
37+
delta: event.quill.getContents()
38+
});
39+
}
40+
},
41+
mounted() {
42+
this.$refs.quillEditor.quill.setContents(this.initial);
43+
}
44+
});
45+
2646
Vue.mixin({
2747
data() {
2848
return {
@@ -401,7 +421,7 @@ Vue.mixin({
401421
ret['title'] = 'Please input bounty title';
402422
}
403423

404-
if (!vm.form.description.trim()) {
424+
if (!vm.form.richDescriptionText.trim()) {
405425
ret['description'] = 'Please input bounty description';
406426
}
407427

@@ -803,13 +823,14 @@ Vue.mixin({
803823
'web3_type': vm.web3Type(),
804824
'activity': metadata.activity,
805825
'bounty_owner_address': vm.form.funderAddress,
806-
'acceptance_criteria': vm.form.acceptanceCriteria,
807-
'resources': vm.form.resources,
826+
'acceptance_criteria': JSON.stringify(vm.form.richAcceptanceCriteria),
827+
'resources': JSON.stringify(vm.form.richResources),
808828
'contact_details': vm.nonEmptyContactDetails,
809829
'bounty_source': vm.form.bountyInformationSource,
810830
'peg_to_usd': vm.form.peg_to_usd,
811831
'amount_usd': vm.form.amountusd,
812-
'owners': vm.form.bounty_owners.map(owner => owner.id)
832+
'owners': vm.form.bounty_owners.map(owner => owner.id),
833+
'custom_issue_description': JSON.stringify(vm.form.richDescriptionContent)
813834
};
814835

815836
vm.sendBounty(JSON.stringify(params));
@@ -891,8 +912,19 @@ Vue.mixin({
891912
});
892913
},
893914

894-
quilUpdated({ quill, text }) {
895-
this.form.description = text;
915+
updateCustomDescription({text, delta}) {
916+
this.form.richDescriptionText = text;
917+
this.form.richDescriptionContent = delta;
918+
},
919+
920+
updateAcceptanceCriteria({ text, delta }) {
921+
this.form.richAcceptanceCriteria = delta;
922+
this.form.richAcceptanceCriteriaText = text;
923+
},
924+
925+
updateResources({ text, delta }) {
926+
this.form.richResources = delta;
927+
this.form.richResourcesText = text;
896928
},
897929

898930
popover(elementId) {
@@ -1119,6 +1151,8 @@ Vue.mixin({
11191151
if (document.getElementById('gc-hackathon-new-bounty')) {
11201152
let bounty = document.result;
11211153

1154+
console.log('geri bounty.custom_issue_description', bounty.custom_issue_description);
1155+
11221156

11231157
appFormBounty = new Vue({
11241158
delimiters: [ '[[', ']]' ],
@@ -1192,8 +1226,10 @@ if (document.getElementById('gc-hackathon-new-bounty')) {
11921226
type: 'Discord',
11931227
value: ''
11941228
}],
1195-
resources: bounty.resources,
1196-
acceptanceCriteria: bounty.acceptance_criteria,
1229+
richResources: bounty.resources ? JSON.parse(bounty.resources) : null,
1230+
richResourcesText: bounty.resources ? bounty.resources : null,
1231+
richAcceptanceCriteria: bounty.acceptance_criteria ? JSON.parse(bounty.acceptance_criteria) : null,
1232+
richAcceptanceCriteriaText: bounty.acceptance_criteria ? bounty.acceptance_criteria : null,
11971233
organisationUrl: bounty.funding_organisation ? 'https://github.com/' + bounty.funding_organisation : '',
11981234
title: bounty.title,
11991235
description: bounty.issue_description,
@@ -1205,7 +1241,9 @@ if (document.getElementById('gc-hackathon-new-bounty')) {
12051241
reserved_for_user: {
12061242
text: bounty.bounty_reserved_for_user.handle,
12071243
avatar_url: bounty.bounty_reserved_for_user.avatar_url
1208-
}
1244+
},
1245+
richDescriptionContent: bounty.custom_issue_description ? JSON.parse(bounty.custom_issue_description) : null,
1246+
richDescriptionText: bounty.custom_issue_description ? bounty.custom_issue_description : ''
12091247
},
12101248
editorOptionPrio: {
12111249
modules: {

‎app/assets/v2/js/pages/new_bounty.js

+46-8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,27 @@ const bountyTypes = [
2323

2424
Vue.use(VueQuillEditor);
2525
Vue.component('v-select', VueSelect.VueSelect);
26+
27+
Vue.component('quill-editor-ext', {
28+
props: [ 'initial', 'options' ],
29+
template: '#quill-editor-ext',
30+
data() {
31+
return {
32+
};
33+
},
34+
methods: {
35+
onUpdate: function(event) {
36+
this.$emit('change', {
37+
text: event.text,
38+
delta: event.quill.getContents()
39+
});
40+
}
41+
},
42+
mounted() {
43+
this.$refs.quillEditor.quill.setContents(this.initial);
44+
}
45+
});
46+
2647
Vue.mixin({
2748
data() {
2849
return {
@@ -401,7 +422,7 @@ Vue.mixin({
401422
ret['title'] = 'Please input bounty title';
402423
}
403424

404-
if (!vm.form.description.trim()) {
425+
if (!vm.form.richDescriptionText.trim()) {
405426
ret['description'] = 'Please input bounty description';
406427
}
407428

@@ -878,6 +899,7 @@ Vue.mixin({
878899
'raw_data': {}, // ETC-TODO REMOVE ?
879900
'network': vm.network,
880901
'issue_description': metadata.issueDescription,
902+
'custom_issue_description': JSON.stringify(vm.form.richDescriptionContent),
881903
'funding_organisation': metadata.fundingOrganisation,
882904
'balance': vm.form.amount * 10 ** vm.form.token.decimals, // ETC-TODO REMOVE ?
883905
'project_type': vm.form.project_type,
@@ -898,8 +920,8 @@ Vue.mixin({
898920
'web3_type': vm.web3Type(),
899921
'activity': metadata.activity,
900922
'bounty_owner_address': vm.form.funderAddress,
901-
'acceptance_criteria': vm.form.acceptanceCriteria,
902-
'resources': vm.form.resources,
923+
'acceptance_criteria': JSON.stringify(vm.form.richAcceptanceCriteria),
924+
'resources': JSON.stringify(vm.form.richResources),
903925
'contact_details': JSON.stringify(vm.nonEmptyContactDetails),
904926
'bounty_source': vm.form.bountyInformationSource,
905927
'peg_to_usd': vm.form.peg_to_usd,
@@ -985,8 +1007,19 @@ Vue.mixin({
9851007
});
9861008
},
9871009

988-
quilUpdated({ quill, text }) {
989-
this.form.description = text;
1010+
updateCustomDescription({text, delta}) {
1011+
this.form.richDescriptionText = text;
1012+
this.form.richDescriptionContent = delta;
1013+
},
1014+
1015+
updateAcceptanceCriteria({ text, delta }) {
1016+
this.form.richAcceptanceCriteria = delta;
1017+
this.form.richAcceptanceCriteriaText = text;
1018+
},
1019+
1020+
updateResources({ text, delta }) {
1021+
this.form.richResources = delta;
1022+
this.form.richResourcesText = text;
9901023
},
9911024

9921025
popover(elementId) {
@@ -1190,6 +1223,7 @@ Vue.mixin({
11901223
deep: true,
11911224
handler(newVal, oldVal) {
11921225
this.dirty = true;
1226+
console.log('geri model richDescriptionContent', newVal.richDescriptionContent);
11931227
}
11941228

11951229
},
@@ -1282,14 +1316,18 @@ if (document.getElementById('gc-hackathon-new-bounty')) {
12821316
type: 'Discord',
12831317
value: ''
12841318
}],
1285-
resources: '',
1286-
acceptanceCriteria: '',
1319+
richResources: '',
1320+
richResourcesText: '',
1321+
richAcceptanceCriteria: '',
1322+
richAcceptanceCriteriaText: '',
12871323
organisationUrl: '',
12881324
title: '',
12891325
description: '',
12901326
richDescription: '',
12911327
bounty_owners: [],
1292-
never_expires: false
1328+
never_expires: false,
1329+
richDescriptionContent: null,
1330+
richDescriptionText: ''
12931331
},
12941332
editorOptionPrio: {
12951333
modules: {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Django 2.2.24 on 2022-05-17 07:45
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('dashboard', '0204_merge_20220510_1917'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='bounty',
15+
name='custom_issue_description',
16+
field=models.TextField(blank=True, default=''),
17+
),
18+
migrations.AlterField(
19+
model_name='bounty',
20+
name='owners',
21+
field=models.ManyToManyField(blank=True, to='dashboard.Profile'),
22+
),
23+
migrations.AlterField(
24+
model_name='bounty',
25+
name='project_type',
26+
field=models.CharField(choices=[('traditional', 'traditional'), ('contest', 'contest - deprecated'), ('cooperative', 'cooperative - deprecated'), ('multiple', 'multiple')], db_index=True, default='traditional', max_length=50),
27+
),
28+
]

‎app/dashboard/models.py

+3
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,9 @@ class Bounty(SuperModel):
440440
# This contains a list of IDs to dashboard.Profile
441441
owners = models.ManyToManyField("Profile", blank=True)
442442

443+
# Issue description for custom bounties, not related to a GitHUB issue
444+
custom_issue_description = models.TextField(default='', blank=True)
445+
443446
class Meta:
444447
"""Define metadata associated with Bounty."""
445448

‎app/dashboard/router.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ class Meta:
191191
'featuring_date', 'repo_type', 'funder_last_messaged_on', 'can_remarket', 'is_reserved',
192192
'contact_details', 'usd_pegged_value_in_token_now', 'usd_pegged_value_in_token',
193193
'value_true_usd', 'peg_to_usd', 'owners', 'payout_date', 'acceptance_criteria', 'resources',
194-
'bounty_source', 'bounty_owner_profile', 'never_expires'
194+
'bounty_source', 'bounty_owner_profile', 'never_expires', 'custom_issue_description'
195195
)
196196

197197
def create(self, validated_data):

‎app/dashboard/templates/bounty/change.html

+3
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@
6868
<input class="form__input" type="text" v-model="pickDate" placeholder="04/01/2022" :disabled="disabled"/>
6969
</div>
7070
</script>
71+
<script type="text/x-template" id="quill-editor-ext">
72+
<quill-editor ref="quillEditor" id="new-bounty-custom-editor" @change="onUpdate($event)" :options="options"></quill-editor>
73+
</script>
7174

7275
{% include 'shared/footer.html' %}
7376
{% include 'shared/footer_scripts.html' with slim=1 %}

‎app/dashboard/templates/bounty/details2.html

+7-3
Original file line numberDiff line numberDiff line change
@@ -290,15 +290,16 @@ <h4 id="title" class="font-title p-0 text-center text-lg-left">[[ bounty.title ]
290290
<div class="row">
291291
<div class="col-12 mt-2">
292292
<h5 class="bounty-heading mt-0 pt-4" id="description">{% trans "Description" %}</h5>
293-
<div class="issue_description" :inner-html.prop="bounty.issue_description | markdownit"></div>
293+
<div v-if="bounty.bounty_source === 'github'" class="issue_description" :inner-html.prop="bounty.issue_description | markdownit"></div>
294+
<render-quill v-else class="issue_description" :delta="bounty.custom_issue_description"></render-quill>
294295
</div>
295296
</div>
296297

297298
<div v-if="bounty.acceptance_criteria" class="row">
298299
<div class="col-12 mt-2">
299300
<h5 class="bounty-heading mt-0 pt-4">{% trans "Acceptance Criteria" %}</h5>
300301
<div class="acceptance_criteria">
301-
<pre>[[ bounty.acceptance_criteria ]]</pre>
302+
<render-quill :delta="bounty.acceptance_criteria"></render-quill>
302303
</div>
303304
</div>
304305
</div>
@@ -307,7 +308,7 @@ <h5 class="bounty-heading mt-0 pt-4">{% trans "Acceptance Criteria" %}</h5>
307308
<div class="col-12 mt-2">
308309
<h5 class="bounty-heading mt-0 pt-4">{% trans "Resources" %}</h5>
309310
<div class="resources">
310-
<pre>[[ bounty.resources ]]</pre>
311+
<render-quill :delta="bounty.resources"></render-quill>
311312
</div>
312313
</div>
313314
</div>
@@ -1214,6 +1215,9 @@ <h3>{{ noscript.keywords }}</h3>
12141215
{% include 'shared/current_profile.html' %}
12151216
</div>
12161217

1218+
<script src='https://cdn.jsdelivr.net/npm/quill@1.3.6/dist/quill.min.js'></script>
1219+
<script src='https://cdn.jsdelivr.net/npm/vue-quill-editor@3.0.6/dist/vue-quill-editor.js'></script>
1220+
12171221
{% bundle merge_js file bounty_details2_libs %}
12181222
<script src="highlight.min.js" base-dir="/node_modules/@highlightjs/cdn-assets/"></script>
12191223
<script src="markdown-it.min.js" base-dir="/node_modules/markdown-it/dist/"></script>

‎app/dashboard/templates/bounty/new_bounty.html

+3
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@
100100
<input class="form__input" type="text" v-model="pickDate" placeholder="04/01/2022" :disabled="disabled"/>
101101
</div>
102102
</script>
103+
<script type="text/x-template" id="quill-editor-ext">
104+
<quill-editor ref="quillEditor" id="new-bounty-custom-editor" @change="onUpdate($event)" :options="options"></quill-editor>
105+
</script>
103106

104107
{% include 'shared/footer.html' %}
105108
{% include 'shared/footer_scripts.html' with vue=True %}

‎app/dashboard/templates/bounty/new_bounty_step_2.html

+9-15
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ <h4>Bounty Details</h4>
108108
<div class="row ml-0" v-if="form.bountyInformationSource === 'custom'">
109109
<!-- Custom Bounty Details Editor -->
110110
<div class="new-border-mid col-12 col-md-9">
111-
<quill-editor id="new-bounty-custom-editor" @change="quilUpdated($event)"
112-
:class="`editor ${step2Errors.description && !(form.richDescription && form.richDescription.length) ? 'invalid' : ''}`"
113-
:options="editorOptionPrio" v-model="form.richDescription"></quill-editor>
111+
<quill-editor-ext id="new-bounty-custom-editor-ext" :options="editorOptionPrio" @change="updateCustomDescription($event)" :initial="form.richDescriptionContent"
112+
:class="`editor ${step2Errors.description && !(form.richDescription && form.richDescription.length) ? 'invalid' : ''}`"
113+
></quill-editor-ext>
114114
<div class="text-danger" v-if="step2Errors.description && !form.richDescription.trim()">
115115
[[step2Errors.description]]
116116
</div>
@@ -145,9 +145,9 @@ <h4>Bounty Details</h4>
145145
<div class="row ml-0" v-if="form.bountyInformationSource !== null">
146146
<div class="new-border-mid col-12 col-md-9">
147147
<!-- Acceptance Criteria -->
148-
<textarea id="new-bounty-acceptace-criteria" class="form-control" name='acceptanceCriteria'
149-
v-model="form.acceptanceCriteria" placeholder="What is the deliverable and acceptance criteria for this bounty?"
150-
rows="5" required></textarea>
148+
<quill-editor-ext id="new-bounty-acceptace-criteria-editor-ext" :options="editorOptionPrio" @change="updateAcceptanceCriteria($event)" :initial="form.richAcceptanceCriteria"
149+
:class="`editor`"
150+
></quill-editor-ext>
151151
</div>
152152

153153

@@ -157,22 +157,16 @@ <h4>Bounty Details</h4>
157157
</div>
158158
</div>
159159

160-
<div class="d-none d-md-block col-md-3">
161-
<div class="bounty-creation-help p-3">
162-
Check out <a href="https://support.gitcoin.co/gitcoin-bounties/bounty-guidelines">great examples</a> of acceptance criteria from some of our past successful bounties!
163-
</div>
164-
</div>
165-
166160
<div class="new-border-mid col-12 col-md-9 pb-4"></div>
167161
</div>
168162

169163
<div class="row ml-0" v-if="form.bountyInformationSource !== null">
170164
<!-- Resources -->
171165
<div class="new-border-mid col-12 col-md-9 pb-4">
172166
<label class="mb-1 font-subheader font-weight-normal letter-spacing">Resources</label>
173-
<textarea id="new-bounty-resources" class="form-control" name='resources' v-model="form.resources"
174-
placeholder="Useful resources for working on this bounty (documentations, tutorials, etc.)" rows="5"
175-
required></textarea>
167+
<quill-editor-ext id="new-bounty-resources-editor-ext" :options="editorOptionPrio" @change="updateResources($event)" :initial="form.richResources"
168+
:class="`editor`"
169+
></quill-editor-ext>
176170
</div>
177171
</div>
178172

0 commit comments

Comments
 (0)
Please sign in to comment.