@@ -23,6 +23,26 @@ const bountyTypes = [
23
23
24
24
Vue . use ( VueQuillEditor ) ;
25
25
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
+
26
46
Vue . mixin ( {
27
47
data ( ) {
28
48
return {
@@ -401,7 +421,7 @@ Vue.mixin({
401
421
ret [ 'title' ] = 'Please input bounty title' ;
402
422
}
403
423
404
- if ( ! vm . form . description . trim ( ) ) {
424
+ if ( ! vm . form . richDescriptionText . trim ( ) ) {
405
425
ret [ 'description' ] = 'Please input bounty description' ;
406
426
}
407
427
@@ -803,13 +823,14 @@ Vue.mixin({
803
823
'web3_type' : vm . web3Type ( ) ,
804
824
'activity' : metadata . activity ,
805
825
'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 ) ,
808
828
'contact_details' : vm . nonEmptyContactDetails ,
809
829
'bounty_source' : vm . form . bountyInformationSource ,
810
830
'peg_to_usd' : vm . form . peg_to_usd ,
811
831
'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 )
813
834
} ;
814
835
815
836
vm . sendBounty ( JSON . stringify ( params ) ) ;
@@ -891,8 +912,19 @@ Vue.mixin({
891
912
} ) ;
892
913
} ,
893
914
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 ;
896
928
} ,
897
929
898
930
popover ( elementId ) {
@@ -1119,6 +1151,8 @@ Vue.mixin({
1119
1151
if ( document . getElementById ( 'gc-hackathon-new-bounty' ) ) {
1120
1152
let bounty = document . result ;
1121
1153
1154
+ console . log ( 'geri bounty.custom_issue_description' , bounty . custom_issue_description ) ;
1155
+
1122
1156
1123
1157
appFormBounty = new Vue ( {
1124
1158
delimiters : [ '[[' , ']]' ] ,
@@ -1192,8 +1226,10 @@ if (document.getElementById('gc-hackathon-new-bounty')) {
1192
1226
type : 'Discord' ,
1193
1227
value : ''
1194
1228
} ] ,
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 ,
1197
1233
organisationUrl : bounty . funding_organisation ? 'https://github.com/' + bounty . funding_organisation : '' ,
1198
1234
title : bounty . title ,
1199
1235
description : bounty . issue_description ,
@@ -1205,7 +1241,9 @@ if (document.getElementById('gc-hackathon-new-bounty')) {
1205
1241
reserved_for_user : {
1206
1242
text : bounty . bounty_reserved_for_user . handle ,
1207
1243
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 : ''
1209
1247
} ,
1210
1248
editorOptionPrio : {
1211
1249
modules : {
0 commit comments