diff options
| author | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-02 13:41:25 +0900 |
|---|---|---|
| committer | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-02 13:41:25 +0900 |
| commit | 4ef3d3a6d2865e8bb486d74c8fb3b6fdfde699ff (patch) | |
| tree | a61bdf12f02acd1aaada86fdc95f4c6e21cf5d57 /src/client/app | |
| parent | Introduce publishers directory (diff) | |
| download | sharkey-4ef3d3a6d2865e8bb486d74c8fb3b6fdfde699ff.tar.gz sharkey-4ef3d3a6d2865e8bb486d74c8fb3b6fdfde699ff.tar.bz2 sharkey-4ef3d3a6d2865e8bb486d74c8fb3b6fdfde699ff.zip | |
Introduce renderers directory
Diffstat (limited to 'src/client/app')
8 files changed, 9 insertions, 9 deletions
diff --git a/src/client/app/common/scripts/compose-notification.ts b/src/client/app/common/scripts/compose-notification.ts index 4030d61ac7..ebc15952f6 100644 --- a/src/client/app/common/scripts/compose-notification.ts +++ b/src/client/app/common/scripts/compose-notification.ts @@ -1,5 +1,5 @@ -import getPostSummary from '../../../../get-post-summary'; -import getReactionEmoji from '../../../../get-reaction-emoji'; +import getPostSummary from '../../../../renderers/get-post-summary'; +import getReactionEmoji from '../../../../renderers/get-reaction-emoji'; type Notification = { title: string; diff --git a/src/client/app/desktop/views/components/notifications.vue b/src/client/app/desktop/views/components/notifications.vue index 8c4102494f..9bfe1560ba 100644 --- a/src/client/app/desktop/views/components/notifications.vue +++ b/src/client/app/desktop/views/components/notifications.vue @@ -103,7 +103,7 @@ <script lang="ts"> import Vue from 'vue'; import getAcct from '../../../../../user/get-acct'; -import getPostSummary from '../../../../../get-post-summary'; +import getPostSummary from '../../../../../renderers/get-post-summary'; export default Vue.extend({ data() { diff --git a/src/client/app/desktop/views/pages/home.vue b/src/client/app/desktop/views/pages/home.vue index ad9e2bc9d1..c209af4e43 100644 --- a/src/client/app/desktop/views/pages/home.vue +++ b/src/client/app/desktop/views/pages/home.vue @@ -7,7 +7,7 @@ <script lang="ts"> import Vue from 'vue'; import Progress from '../../../common/scripts/loading'; -import getPostSummary from '../../../../../get-post-summary'; +import getPostSummary from '../../../../../renderers/get-post-summary'; export default Vue.extend({ props: { diff --git a/src/client/app/mobile/api/post.ts b/src/client/app/mobile/api/post.ts index 6580cbf4b1..98309ba8de 100644 --- a/src/client/app/mobile/api/post.ts +++ b/src/client/app/mobile/api/post.ts @@ -1,6 +1,6 @@ import PostForm from '../views/components/post-form.vue'; //import RepostForm from '../views/components/repost-form.vue'; -import getPostSummary from '../../../../get-post-summary'; +import getPostSummary from '../../../../renderers/get-post-summary'; export default (os) => (opts) => { const o = opts || {}; diff --git a/src/client/app/mobile/views/components/notification-preview.vue b/src/client/app/mobile/views/components/notification-preview.vue index e7e1f75a87..77abd3c0ea 100644 --- a/src/client/app/mobile/views/components/notification-preview.vue +++ b/src/client/app/mobile/views/components/notification-preview.vue @@ -59,7 +59,7 @@ <script lang="ts"> import Vue from 'vue'; -import getPostSummary from '../../../../../get-post-summary'; +import getPostSummary from '../../../../../renderers/get-post-summary'; export default Vue.extend({ props: ['notification'], diff --git a/src/client/app/mobile/views/components/notification.vue b/src/client/app/mobile/views/components/notification.vue index d92b019447..d3e313756f 100644 --- a/src/client/app/mobile/views/components/notification.vue +++ b/src/client/app/mobile/views/components/notification.vue @@ -78,7 +78,7 @@ <script lang="ts"> import Vue from 'vue'; -import getPostSummary from '../../../../../get-post-summary'; +import getPostSummary from '../../../../../renderers/get-post-summary'; import getAcct from '../../../../../user/get-acct'; export default Vue.extend({ diff --git a/src/client/app/mobile/views/components/post-card.vue b/src/client/app/mobile/views/components/post-card.vue index 893e4c3071..de42a01f78 100644 --- a/src/client/app/mobile/views/components/post-card.vue +++ b/src/client/app/mobile/views/components/post-card.vue @@ -14,7 +14,7 @@ <script lang="ts"> import Vue from 'vue'; -import summary from '../../../../../get-post-summary'; +import summary from '../../../../../renderers/get-post-summary'; import getAcct from '../../../../../user/get-acct'; export default Vue.extend({ diff --git a/src/client/app/mobile/views/pages/home.vue b/src/client/app/mobile/views/pages/home.vue index b2edf59561..6fb1c6d4fa 100644 --- a/src/client/app/mobile/views/pages/home.vue +++ b/src/client/app/mobile/views/pages/home.vue @@ -64,7 +64,7 @@ import Vue from 'vue'; import * as XDraggable from 'vuedraggable'; import * as uuid from 'uuid'; import Progress from '../../../common/scripts/loading'; -import getPostSummary from '../../../../../get-post-summary'; +import getPostSummary from '../../../../../renderers/get-post-summary'; export default Vue.extend({ components: { |