Docs for Toast

pull/12/head
cagataycivici 2019-05-23 14:27:21 +03:00
parent d83ad99e0c
commit 34500e5f6b
1 changed files with 169 additions and 116 deletions

View File

@ -2,14 +2,30 @@
<div class="content-section documentation"> <div class="content-section documentation">
<TabView> <TabView>
<TabPanel header="Documentation"> <TabPanel header="Documentation">
<h3>ToastService</h3>
<p>Toast messages are dynamically created using a <i>ToastService</i> that needs to be installed globally before the application
instance is created.</p>
<CodeHighlight lang="javascript">
import ToastService from 'primevue/toastservice';
Vue.use(ToastService);
//example application instance
new Vue({
router,
render: h => h(App)
}).$mount('#app');
</CodeHighlight>
<h3>Import</h3> <h3>Import</h3>
<CodeHighlight lang="javascript"> <CodeHighlight lang="javascript">
import Toast from 'primevue/toast'; import Toast from 'primevue/toast';
</CodeHighlight> </CodeHighlight>
<h3>Getting Started</h3> <h3>Getting Started</h3>
<p>Ideal location of a Toast is the main application template so that it can be used by any component within the application.</p>
<p>A single message is represented by the Message interface in PrimeVue that defines various properties such as severity, <p>A single message is represented by the Message interface in PrimeVue that defines various properties such as severity,
summary and detail. Messages are displayed by using the <i>add</i> method on the ref of the Toast instance.</p> summary and detail. Messages are displayed by using the <i>add</i> method of the <b>$toast</b> property of the application.</p>
<CodeHighlight lang="js"> <CodeHighlight lang="js">
this.$toast.add({severity:'success', summary: 'Success Message', detail:'Order submitted', life: 3000}); this.$toast.add({severity:'success', summary: 'Success Message', detail:'Order submitted', life: 3000});
</CodeHighlight> </CodeHighlight>
@ -61,13 +77,50 @@ this.$toast.add({severity:'success', summary: 'Success Message', detail:'Order s
<td>number</td> <td>number</td>
<td>3000</td> <td>3000</td>
<td>Delay in milliseconds to close the message automatically.</td> <td>Delay in milliseconds to close the message automatically.</td>
</tr>
<tr>
<td>group</td>
<td>string</td>
<td>null</td>
<td>Key of the Toast to display the message.</td>
</tr>
</tbody>
</table>
</div>
<h3>MessageService API</h3>
<div class="doc-tablewrapper">
<table class="doc-table">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>add</td>
<td>message: Message instance</td>
<td>Displays the message in a suitable Toast component.</td>
</tr>
<tr>
<td>removeGroup</td>
<td>group: Name of the message group</td>
<td>Clears the messages that belongs to the group.</td>
</tr>
<tr>
<td>removeAllGroup</td>
<td>-</td>
<td>Clears all the messages.</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div> </div>
<h3>Severities</h3> <h3>Severities</h3>
<p>There are four possible values for the severity of a message.</p> <p>There are four possible values for the severity of a message. Info is the default.</p>
<ul> <ul>
<li>success</li> <li>success</li>
@ -76,34 +129,34 @@ this.$toast.add({severity:'success', summary: 'Success Message', detail:'Order s
<li>error</li> <li>error</li>
</ul> </ul>
<h3>Showing Messages</h3>
<p>Show method accepts either a single message or an array of messages.</p>
<CodeHighlight>
&lt;Button label="Success" class="p-button-success" @click="showSuccess" /&gt;
&lt;Button @click="showMultiple" label="Multiple" class="p-button-warning" /&gt;
</CodeHighlight>
<CodeHighlight lang="js">
showSuccess() {
this.$toast.add({severity:'success', summary: 'Success Message', detail:'Order submitted', life: 3000});
},
showMultiple() {
this.$toast.add({severity:'info', summary:'Message 1', detail:'PrimeVue rocks', life: 3000});
this.$toast.add({severity:'info', summary:'Message 1', detail:'PrimeVue rocks', life: 3000});
this.$toast.add({severity:'info', summary:'Message 1', detail:'PrimeVue rocks', life: 3000});
}
</CodeHighlight>
<h3>Position</h3> <h3>Position</h3>
<p>There are four positions available for the toast container defined by the <i>position</i> property that defaults to "topright". Other <p>There are four positions available for the toast container defined by the <i>position</i> property that defaults to "topright". Other
valid values are "topleft", "bottomleft" and "bottomright" valid values are "topleft", "bottomleft" and "bottomright"
</p> </p>
<CodeHighlight> <CodeHighlight>
??? &lt;Toast /&gt;
</CodeHighlight> &lt;Toast position="topleft" /&gt;
&lt;Toast position="bottomleft" /&gt;
&lt;Toast position="bottomright" /&gt;
</CodeHighlight>
<h3>Groups</h3>
<p>A message can be targeted to a specific Toast component if their group properties match. Messages without a group
are forwarded to the default Toast component that does not have a group defined.
</p>
<CodeHighlight>
&lt;Toast /&gt;
&lt;Toast position="mykey" /&gt;
</CodeHighlight>
<CodeHighlight lang="js">
this.$toast.add({severity:'success', summary: 'Default Message'});
this.$toast.add({severity:'success', summary: 'Specific Message', group: 'mykey'});
</CodeHighlight>
<h3>Clearing Messages</h3> <h3>Clearing Messages</h3>
<p><i>removeAllGroups()</i> method removes all messages from Toast.</p> <p><i>removeGroup(group)</i> clears the messages for a specific Toast whereas <i>removeAllGroups()</i> method clears all messages.</p>
<CodeHighlight lang="js"> <CodeHighlight lang="js">
this.$toast.removeAllGroups(); this.$toast.removeAllGroups();
</CodeHighlight> </CodeHighlight>
@ -124,7 +177,7 @@ this.$toast.removeAllGroups();
<td>group</td> <td>group</td>
<td>string</td> <td>string</td>
<td>null</td> <td>null</td>
<td>???</td> <td>Unique identifier of a message group.</td>
</tr> </tr>
<tr> <tr>
<td>position</td> <td>position</td>