summaryrefslogtreecommitdiff
path: root/src/client/app/common/define-widget.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-29 20:32:18 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-29 20:32:18 +0900
commitcf33e483f7e6f40e8cbbbc0118a7df70bdaf651f (patch)
tree318279530d3392ee40d91968477fc0e78d5cf0f7 /src/client/app/common/define-widget.ts
parentUpdate .travis.yml (diff)
downloadsharkey-cf33e483f7e6f40e8cbbbc0118a7df70bdaf651f.tar.gz
sharkey-cf33e483f7e6f40e8cbbbc0118a7df70bdaf651f.tar.bz2
sharkey-cf33e483f7e6f40e8cbbbc0118a7df70bdaf651f.zip
整理した
Diffstat (limited to 'src/client/app/common/define-widget.ts')
-rw-r--r--src/client/app/common/define-widget.ts79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/client/app/common/define-widget.ts b/src/client/app/common/define-widget.ts
new file mode 100644
index 0000000000..27db59b5ee
--- /dev/null
+++ b/src/client/app/common/define-widget.ts
@@ -0,0 +1,79 @@
+import Vue from 'vue';
+
+export default function<T extends object>(data: {
+ name: string;
+ props?: () => T;
+}) {
+ return Vue.extend({
+ props: {
+ widget: {
+ type: Object
+ },
+ isMobile: {
+ type: Boolean,
+ default: false
+ },
+ isCustomizeMode: {
+ type: Boolean,
+ default: false
+ }
+ },
+ computed: {
+ id(): string {
+ return this.widget.id;
+ }
+ },
+ data() {
+ return {
+ props: data.props ? data.props() : {} as T,
+ bakedOldProps: null,
+ preventSave: false
+ };
+ },
+ created() {
+ if (this.props) {
+ Object.keys(this.props).forEach(prop => {
+ if (this.widget.data.hasOwnProperty(prop)) {
+ this.props[prop] = this.widget.data[prop];
+ }
+ });
+ }
+
+ this.bakeProps();
+
+ this.$watch('props', newProps => {
+ if (this.preventSave) {
+ this.preventSave = false;
+ this.bakeProps();
+ return;
+ }
+ if (this.bakedOldProps == JSON.stringify(newProps)) return;
+
+ this.bakeProps();
+
+ if (this.isMobile) {
+ (this as any).api('i/update_mobile_home', {
+ id: this.id,
+ data: newProps
+ }).then(() => {
+ (this as any).os.i.account.clientSettings.mobile_home.find(w => w.id == this.id).data = newProps;
+ });
+ } else {
+ (this as any).api('i/update_home', {
+ id: this.id,
+ data: newProps
+ }).then(() => {
+ (this as any).os.i.account.clientSettings.home.find(w => w.id == this.id).data = newProps;
+ });
+ }
+ }, {
+ deep: true
+ });
+ },
+ methods: {
+ bakeProps() {
+ this.bakedOldProps = JSON.stringify(this.props);
+ }
+ }
+ });
+}