mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-16 03:06:27 +00:00
add delete snippet modal & fix deletion behavior
This commit is contained in:
@@ -38,9 +38,7 @@ angular.module('codexen')
|
|||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
mySnippets: function (Snippet) {
|
mySnippets: function (Snippet) {
|
||||||
return Snippet.findMine({
|
return Snippet.findMine().then(function (res) {
|
||||||
'include': ['Tag']
|
|
||||||
}).then(function (res) {
|
|
||||||
return res.data
|
return res.data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
16
src/controllers/modals/DeleteSnippetModalController.js
Normal file
16
src/controllers/modals/DeleteSnippetModalController.js
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
/* global angular */
|
||||||
|
angular.module('codexen')
|
||||||
|
.controller('DeleteSnippetModalController', function ($modalInstance, Snippet, snippet) {
|
||||||
|
var vm = this
|
||||||
|
|
||||||
|
vm.submit = function () {
|
||||||
|
Snippet.delete(snippet.id)
|
||||||
|
.success(function (snippet) {
|
||||||
|
$modalInstance.close(snippet)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
vm.cancel = function () {
|
||||||
|
$modalInstance.dismiss()
|
||||||
|
}
|
||||||
|
})
|
||||||
@@ -47,21 +47,28 @@ angular.module('codexen')
|
|||||||
|
|
||||||
$scope.$on('snippetDeleted', function () {
|
$scope.$on('snippetDeleted', function () {
|
||||||
if ($state.is('snippets.detail')) {
|
if ($state.is('snippets.detail')) {
|
||||||
var currentSnippetId = $state.params.id
|
var currentSnippetId = parseInt($state.params.id)
|
||||||
|
// Delete snippet from snippet list
|
||||||
for (var i = 0; i < vm.snippets.length; i++) {
|
for (var i = 0; i < vm.snippets.length; i++) {
|
||||||
if (vm.snippets[i]._id === currentSnippetId) {
|
if (vm.snippets[i].id === currentSnippetId) {
|
||||||
var targetSnippet = null
|
vm.snippets.splice(i, 1)
|
||||||
|
|
||||||
if (i === 0) targetSnippet = vm.snippets[i + 1]
|
|
||||||
else targetSnippet = vm.snippets[i - 1]
|
|
||||||
|
|
||||||
console.log('target', targetSnippet)
|
|
||||||
$state.go('snippets.detail', {id: targetSnippet._id})
|
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Delete snippet from `filtered list`
|
||||||
|
// And redirect `next filtered snippet`
|
||||||
|
for (var i = 0; i < vm.filtered.length; i++) {
|
||||||
|
if (vm.filtered[i].id === currentSnippetId) {
|
||||||
|
if (vm.filtered[i+1] != null) $state.go('snippets.detail', {id: vm.filtered[i+1].id})
|
||||||
|
else if (vm.filtered[i-1] != null) $state.go('snippets.detail', {id: vm.filtered[i-1].id})
|
||||||
|
else $state.go('snippets')
|
||||||
|
|
||||||
|
vm.filtered.splice(i, 1)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
loadSnippets()
|
|
||||||
})
|
})
|
||||||
|
|
||||||
$scope.$on('tagSelected', function (e, tag) {
|
$scope.$on('tagSelected', function (e, tag) {
|
||||||
|
|||||||
19
src/directives/btn-delete-snippet.js
Normal file
19
src/directives/btn-delete-snippet.js
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
/* global angular */
|
||||||
|
angular.module('codexen')
|
||||||
|
.directive('btnDeleteSnippet', function (Modal, $rootScope) {
|
||||||
|
return {
|
||||||
|
scope: {
|
||||||
|
snippet: '=btnDeleteSnippet'
|
||||||
|
},
|
||||||
|
link: function (scope, el) {
|
||||||
|
el.on('click', function () {
|
||||||
|
Modal.deleteSnippet(scope.snippet)
|
||||||
|
.result.then(function (snippet) {
|
||||||
|
$rootScope.$broadcast('snippetDeleted', snippet)
|
||||||
|
}, function () {
|
||||||
|
console.log('delete snippet modal dismissed')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
angular.module('codexen')
|
angular.module('codexen')
|
||||||
.filter('searchSnippets', function ($filter) {
|
.filter('searchSnippets', function ($filter) {
|
||||||
return function (input, needle) {
|
return function (input, needle) {
|
||||||
if (!angular.isString(needle) || !angular.isArray(input)) return input
|
if (!angular.isString(needle) || !angular.isArray(input)) return angular.copy(input)
|
||||||
if (needle.match(/#(.+)|tag:(.+)/)) {
|
if (needle.match(/#(.+)|tag:(.+)/)) {
|
||||||
var name = needle.match(/#(.+)/) ? needle.match(/#(.+)/)[1] : needle.match(/tag:(.+)/)[1]
|
var name = needle.match(/#(.+)/) ? needle.match(/#(.+)/)[1] : needle.match(/tag:(.+)/)[1]
|
||||||
|
|
||||||
|
|||||||
@@ -20,8 +20,21 @@ angular.module('codexen')
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var deleteSnippet = function (snippet) {
|
||||||
|
return $modal.open({
|
||||||
|
resolve: {
|
||||||
|
snippet: function () {
|
||||||
|
return snippet
|
||||||
|
}
|
||||||
|
},
|
||||||
|
templateUrl: 'tpls/modals/delete-snippet-modal.tpl.html',
|
||||||
|
controller: 'DeleteSnippetModalController as vm'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
newSnippet: newSnippet,
|
newSnippet: newSnippet,
|
||||||
editSnippet: editSnippet
|
editSnippet: editSnippet,
|
||||||
|
deleteSnippet: deleteSnippet
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
16
src/tpls/modals/delete-snippet-modal.tpl.html
Normal file
16
src/tpls/modals/delete-snippet-modal.tpl.html
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<div class="new-snippet-modal">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h4>Delete Snippet</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="modal-body">
|
||||||
|
<p>
|
||||||
|
Are you sure to delete it?
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button ng-click="vm.submit()" type="button" name="button" class="btn btn-danger">Delete It</button>
|
||||||
|
<button ng-click="vm.cancel()" type="button" name="button" class="btn btn-default">Cancel</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
<span class="detail-header-control pull-right">
|
<span class="detail-header-control pull-right">
|
||||||
<button type="button" name="button" class="btn btn-default"><i class="fa fa-share"></i></button>
|
<button type="button" name="button" class="btn btn-default"><i class="fa fa-share"></i></button>
|
||||||
<button btn-edit-snippet="vm.snippet" type="button" name="button" class="btn btn-default"><i class="fa fa-edit"></i></button>
|
<button btn-edit-snippet="vm.snippet" type="button" name="button" class="btn btn-default"><i class="fa fa-edit"></i></button>
|
||||||
<button ng-click="vm.delete()" type="button" name="button" class="btn btn-danger"><i class="fa fa-trash"></i></button>
|
<button btn-delete-snippet="vm.snippet" type="button" name="button" class="btn btn-danger"><i class="fa fa-trash"></i></button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user