From cf33e483f7e6f40e8cbbbc0118a7df70bdaf651f Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 29 Mar 2018 20:32:18 +0900 Subject: 整理した MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/app/auth/assets/logo.svg | 7 ++ src/client/app/auth/script.ts | 25 ++++++ src/client/app/auth/style.styl | 15 ++++ src/client/app/auth/views/form.vue | 141 ++++++++++++++++++++++++++++++++++ src/client/app/auth/views/index.vue | 149 ++++++++++++++++++++++++++++++++++++ 5 files changed, 337 insertions(+) create mode 100644 src/client/app/auth/assets/logo.svg create mode 100644 src/client/app/auth/script.ts create mode 100644 src/client/app/auth/style.styl create mode 100644 src/client/app/auth/views/form.vue create mode 100644 src/client/app/auth/views/index.vue (limited to 'src/client/app/auth') diff --git a/src/client/app/auth/assets/logo.svg b/src/client/app/auth/assets/logo.svg new file mode 100644 index 0000000000..19b8a2737e --- /dev/null +++ b/src/client/app/auth/assets/logo.svg @@ -0,0 +1,7 @@ + + + + + diff --git a/src/client/app/auth/script.ts b/src/client/app/auth/script.ts new file mode 100644 index 0000000000..31c758ebc2 --- /dev/null +++ b/src/client/app/auth/script.ts @@ -0,0 +1,25 @@ +/** + * Authorize Form + */ + +// Style +import './style.styl'; + +import init from '../init'; + +import Index from './views/index.vue'; + +/** + * init + */ +init(async (launch) => { + document.title = 'Misskey | アプリの連携'; + + // Launch the app + const [app] = launch(); + + // Routing + app.$router.addRoutes([ + { path: '/:token', component: Index }, + ]); +}); diff --git a/src/client/app/auth/style.styl b/src/client/app/auth/style.styl new file mode 100644 index 0000000000..bd25e1b572 --- /dev/null +++ b/src/client/app/auth/style.styl @@ -0,0 +1,15 @@ +@import "../app" +@import "../reset" + +html + background #eee + + @media (max-width 600px) + background #fff + +body + margin 0 + padding 32px 0 + + @media (max-width 600px) + padding 0 diff --git a/src/client/app/auth/views/form.vue b/src/client/app/auth/views/form.vue new file mode 100644 index 0000000000..9d9e8cdb1b --- /dev/null +++ b/src/client/app/auth/views/form.vue @@ -0,0 +1,141 @@ + + + + + diff --git a/src/client/app/auth/views/index.vue b/src/client/app/auth/views/index.vue new file mode 100644 index 0000000000..e1e1b265e1 --- /dev/null +++ b/src/client/app/auth/views/index.vue @@ -0,0 +1,149 @@ + + + + + -- cgit v1.2.3-freya