Skip to content
Snippets Groups Projects
Commit 2a36f49d authored by apple502j's avatar apple502j
Browse files

Export costumes and sounds

parent ef59643c
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,8 @@ import errorBoundaryHOC from '../lib/error-boundary-hoc.jsx'; ...@@ -13,6 +13,8 @@ import errorBoundaryHOC from '../lib/error-boundary-hoc.jsx';
import DragConstants from '../lib/drag-constants'; import DragConstants from '../lib/drag-constants';
import {emptyCostume} from '../lib/empty-assets'; import {emptyCostume} from '../lib/empty-assets';
import sharedMessages from '../lib/shared-messages'; import sharedMessages from '../lib/shared-messages';
import download from '../lib/download-url';
import getCostumeUrl from '../lib/get-costume-url';
import { import {
closeCameraCapture, closeCameraCapture,
...@@ -86,6 +88,7 @@ class CostumeTab extends React.Component { ...@@ -86,6 +88,7 @@ class CostumeTab extends React.Component {
'handleSelectCostume', 'handleSelectCostume',
'handleDeleteCostume', 'handleDeleteCostume',
'handleDuplicateCostume', 'handleDuplicateCostume',
'handleExportCostume',
'handleNewCostume', 'handleNewCostume',
'handleNewBlankCostume', 'handleNewBlankCostume',
'handleSurpriseCostume', 'handleSurpriseCostume',
...@@ -136,6 +139,12 @@ class CostumeTab extends React.Component { ...@@ -136,6 +139,12 @@ class CostumeTab extends React.Component {
this.setState({selectedCostumeIndex: target.currentCostume}); this.setState({selectedCostumeIndex: target.currentCostume});
} }
} }
getCostumeData (costumeItem) {
if (costumeItem.url) return costumeItem.url;
if (!costumeItem.asset) return null;
return getCostumeUrl(costumeItem.asset);
}
handleSelectCostume (costumeIndex) { handleSelectCostume (costumeIndex) {
this.props.vm.editingTarget.setCostume(costumeIndex); this.props.vm.editingTarget.setCostume(costumeIndex);
this.setState({selectedCostumeIndex: costumeIndex}); this.setState({selectedCostumeIndex: costumeIndex});
...@@ -150,6 +159,10 @@ class CostumeTab extends React.Component { ...@@ -150,6 +159,10 @@ class CostumeTab extends React.Component {
handleDuplicateCostume (costumeIndex) { handleDuplicateCostume (costumeIndex) {
this.props.vm.duplicateCostume(costumeIndex); this.props.vm.duplicateCostume(costumeIndex);
} }
handleExportCostume (costumeIndex) {
const item = this.props.vm.editingTarget.sprite.costumes[costumeIndex];
download(`${item.name}.${item.asset.dataFormat}`, this.getCostumeData(item));
}
handleNewCostume (costume, fromCostumeLibrary) { handleNewCostume (costume, fromCostumeLibrary) {
if (fromCostumeLibrary) { if (fromCostumeLibrary) {
this.props.vm.addCostumeFromLibrary(costume.md5, costume); this.props.vm.addCostumeFromLibrary(costume.md5, costume);
...@@ -312,6 +325,7 @@ class CostumeTab extends React.Component { ...@@ -312,6 +325,7 @@ class CostumeTab extends React.Component {
this.handleDeleteCostume : null} this.handleDeleteCostume : null}
onDrop={this.handleDrop} onDrop={this.handleDrop}
onDuplicateClick={this.handleDuplicateCostume} onDuplicateClick={this.handleDuplicateCostume}
onExportClick={this.handleExportCostume}
onItemClick={this.handleSelectCostume} onItemClick={this.handleSelectCostume}
> >
{target.costumes ? {target.costumes ?
......
...@@ -21,6 +21,7 @@ import soundLibraryContent from '../lib/libraries/sounds.json'; ...@@ -21,6 +21,7 @@ import soundLibraryContent from '../lib/libraries/sounds.json';
import {handleFileUpload, soundUpload} from '../lib/file-uploader.js'; import {handleFileUpload, soundUpload} from '../lib/file-uploader.js';
import errorBoundaryHOC from '../lib/error-boundary-hoc.jsx'; import errorBoundaryHOC from '../lib/error-boundary-hoc.jsx';
import DragConstants from '../lib/drag-constants'; import DragConstants from '../lib/drag-constants';
import download from '../lib/download-url';
import {connect} from 'react-redux'; import {connect} from 'react-redux';
...@@ -44,6 +45,7 @@ class SoundTab extends React.Component { ...@@ -44,6 +45,7 @@ class SoundTab extends React.Component {
'handleSelectSound', 'handleSelectSound',
'handleDeleteSound', 'handleDeleteSound',
'handleDuplicateSound', 'handleDuplicateSound',
'handleExportSound',
'handleNewSound', 'handleNewSound',
'handleSurpriseSound', 'handleSurpriseSound',
'handleFileUploadClick', 'handleFileUploadClick',
...@@ -86,6 +88,12 @@ class SoundTab extends React.Component { ...@@ -86,6 +88,12 @@ class SoundTab extends React.Component {
this.props.dispatchUpdateRestore({restoreFun, deletedItem: 'Sound'}); this.props.dispatchUpdateRestore({restoreFun, deletedItem: 'Sound'});
} }
handleExportSound (soundIndex) {
const item = this.props.vm.editingTarget.sprite.sounds[soundIndex];
const soundDataURL = item.asset.encodeDataURI();
download(`${item.name}.${item.asset.dataFormat}`, soundDataURL);
}
handleDuplicateSound (soundIndex) { handleDuplicateSound (soundIndex) {
this.props.vm.duplicateSound(soundIndex).then(() => { this.props.vm.duplicateSound(soundIndex).then(() => {
this.setState({selectedSoundIndex: soundIndex + 1}); this.setState({selectedSoundIndex: soundIndex + 1});
...@@ -236,6 +244,7 @@ class SoundTab extends React.Component { ...@@ -236,6 +244,7 @@ class SoundTab extends React.Component {
onDeleteClick={this.handleDeleteSound} onDeleteClick={this.handleDeleteSound}
onDrop={this.handleDrop} onDrop={this.handleDrop}
onDuplicateClick={this.handleDuplicateSound} onDuplicateClick={this.handleDuplicateSound}
onExportClick={this.handleExportSound}
onItemClick={this.handleSelectSound} onItemClick={this.handleSelectSound}
> >
{sprite.sounds && sprite.sounds[this.state.selectedSoundIndex] ? ( {sprite.sounds && sprite.sounds[this.state.selectedSoundIndex] ? (
......
export default (filename, url) => {
const pom = document.createElement('a');
pom.setAttribute('href', url);
pom.setAttribute('download', filename);
if (document.createEvent) {
const event = document.createEvent('MouseEvents');
event.initEvent('click', true, true);
pom.dispatchEvent(event);
} else {
pom.click();
}
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment