From a0b6fad1ada52457c2c5022fcb7685c1fff16abb Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Fri, 23 May 2014 00:44:27 +0200 Subject: add most of the settings except import --- js/directive/NewsReadFile.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 js/directive/NewsReadFile.js (limited to 'js/directive/NewsReadFile.js') diff --git a/js/directive/NewsReadFile.js b/js/directive/NewsReadFile.js new file mode 100644 index 000000000..d3ed5b80e --- /dev/null +++ b/js/directive/NewsReadFile.js @@ -0,0 +1,28 @@ +/** + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Bernhard Posselt + * @copyright Bernhard Posselt 2014 + */ +app.directive('newsReadFile', () => { + 'use strict'; + + return (scope, elm, attr) => { + + let file = elm[0].files[0]; + let reader = new FileReader(); + + reader.onload = (event) => { + elm[0].value = 0; + scope.$fileContent = event.target.result; + scope.$apply(attr.newsReadFile); // FIXME: is there a more flexible + // solution where we dont have to + // bind the file to scope? + }; + + reader.reasAsText(file); + }; +}); \ No newline at end of file -- cgit v1.2.3