iceshrimp-legacy/packages/client/src/components/sample.vue

117 lines
2.8 KiB
Vue
Raw Normal View History

2020-10-17 17:49:02 +02:00
<template>
<div class="_card">
<div class="_content">
2021-08-06 15:29:19 +02:00
<MkInput v-model="text">
<template #label>Text</template>
2020-10-17 17:49:02 +02:00
</MkInput>
2021-08-06 15:29:19 +02:00
<MkSwitch v-model="flag">
2020-10-17 17:49:02 +02:00
<span>Switch is now {{ flag ? 'on' : 'off' }}</span>
</MkSwitch>
<div style="margin: 32px 0;">
2022-07-19 04:00:45 +02:00
<MkRadio v-model="radio" value="misskey">Calckey</MkRadio>
2020-10-17 17:49:02 +02:00
<MkRadio v-model="radio" value="mastodon">Mastodon</MkRadio>
<MkRadio v-model="radio" value="pleroma">Pleroma</MkRadio>
</div>
<MkButton inline>This is</MkButton>
<MkButton inline primary>the button</MkButton>
</div>
2021-01-09 09:18:45 +01:00
<div class="_content" style="pointer-events: none;">
2020-10-17 17:49:02 +02:00
<Mfm :text="mfm"/>
</div>
<div class="_content">
<MkButton inline primary @click="openMenu">Open menu</MkButton>
<MkButton inline primary @click="openDialog">Open dialog</MkButton>
<MkButton inline primary @click="openForm">Open form</MkButton>
<MkButton inline primary @click="openDrive">Open drive</MkButton>
</div>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
2021-11-11 18:02:25 +01:00
import MkButton from '@/components/ui/button.vue';
import MkInput from '@/components/form/input.vue';
import MkSwitch from '@/components/form/switch.vue';
import MkTextarea from '@/components/form/textarea.vue';
import MkRadio from '@/components/form/radio.vue';
import * as os from '@/os';
import * as config from '@/config';
2020-10-17 17:49:02 +02:00
export default defineComponent({
components: {
MkButton,
MkInput,
MkSwitch,
MkTextarea,
MkRadio,
},
data() {
return {
text: '',
2021-01-09 09:18:45 +01:00
flag: true,
2022-07-19 19:49:43 +02:00
radio: 'calckey',
mfm: `Hello world! This is an @example mention. BTW, you are @${this.$i ? this.$i.username : 'guest'}.\nAlso, here is ${config.url} and [example link](${config.url}). for more details, see https://example.com.\nAs you know #misskey is open-source software.`
};
2020-10-17 17:49:02 +02:00
},
methods: {
async openDialog() {
os.alert({
2020-10-17 17:49:02 +02:00
type: 'warning',
2022-08-08 23:58:27 +02:00
title: 'Oh my Calc',
2020-10-17 17:49:02 +02:00
text: 'Lorem ipsum dolor sit amet, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',
});
},
async openForm() {
os.form('Example form', {
foo: {
type: 'boolean',
default: true,
label: 'This is a boolean property'
},
bar: {
type: 'number',
default: 300,
label: 'This is a number property'
},
baz: {
type: 'string',
2022-07-19 04:00:45 +02:00
default: 'Calckey makes you happy.',
2020-10-17 17:49:02 +02:00
label: 'This is a string property'
},
});
},
async openDrive() {
os.selectDriveFile();
},
async selectUser() {
os.selectUser();
},
async openMenu(ev) {
2021-08-08 05:19:10 +02:00
os.popupMenu([{
2020-10-17 17:49:02 +02:00
type: 'label',
text: 'Fruits'
}, {
text: 'Create some apples',
action: () => {},
}, {
text: 'Read some oranges',
action: () => {},
}, {
text: 'Update some melons',
action: () => {},
}, null, {
text: 'Delete some bananas',
danger: true,
action: () => {},
2022-01-28 03:53:12 +01:00
}], ev.currentTarget ?? ev.target);
2020-10-17 17:49:02 +02:00
},
}
});
</script>