@instructure/quiz-interactions
Version:
A React UI component Library for quiz interaction types.
41 lines • 1.8 kB
JavaScript
var lorem = "Scurvy loaded to the gunwalls wherry Nelsons folly marooned cackle fruit gally topmast jury mast pirate. Landlubber or just lubber Arr fluke snow gun bilge rat hogshead Buccaneer lanyard me. Sloop bowsprit Buccaneer Barbary Coast marooned grog blossom jack hogshead jib clipper.\n\nTender tackle Sail ho landlubber or just lubber execution dock loaded to the gunwalls swing the lead lateen sail grog scurvy. Carouser fire ship Jack Tar long clothes spirits sheet take a caulk grog Arr yardarm. Grog blossom spirits lee hang the jib landlubber or just lubber hogshead parley brig black spot chase guns.\n\nMeasured fer yer chains port Plate Fleet schooner wherry ho ye grapple case shot Yellow Jack. Wench black jack furl mutiny heave down spanker crack Jennys tea cup chandler swab sloop. Loaded to the gunwalls strike colors Privateer bounty wench quarterdeck plunder pillage tackle spike.";
export default {
propValues: {
interactionData: [{
rce: false,
spellCheck: true,
wordCount: false,
wordLimitEnabled: true,
wordLimitMin: 5,
wordLimitMax: 10,
notes: 'Blah blah'
}, {
rce: false,
spellCheck: false,
wordCount: true,
wordLimitEnabled: false,
wordLimitMin: '',
wordLimitMax: '',
notes: ''
}],
userResponse: [{
value: 'The rain in spain stays mainly on the plain'
}, {
value: ''
}, {
value: '<b>What?</b>'
}, {
value: 'This has more than ten words because that will make it have an error'
}, {
value: lorem
}],
readOnly: [true, false]
},
getComponentProps: function getComponentProps(props) {
return {
itemId: 'fakeItemId',
itemBody: 'Essay Take',
openImportModal: Function.prototype
};
}
};